/* ============================================
   GLOD HONG INTERNATIONAL TRADING LIMITED
   Main Stylesheet
   Design System: Elegant & Minimalist
   ============================================ */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
    /* Brand Colors (Based on Logo) */
    --gh-color-primary: #2d1208;        /* Deep Maroon/Brown */
    --gh-color-secondary: #8B4513;      /* Terracotta */
    --gh-color-accent: #D4A574;         /* Gold/Beige */
    --gh-color-light: #F4E4C1;          /* Light Cream */
    --gh-color-text: #3E2723;           /* Dark Brown Text */
    --gh-color-text-light: #6D4C41;     /* Lighter Brown Text */
    --gh-color-bg: #FAF7F2;             /* Warm Light Background */
    --gh-color-white: #FFFFFF;
    --gh-color-border: #E8E0D5;
    
    /* Typography */
    --gh-font-main: 'Avenir Next', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --gh-spacing-xs: 0.5rem;
    --gh-spacing-sm: 1rem;
    --gh-spacing-md: 1.5rem;
    --gh-spacing-lg: 2rem;
    --gh-spacing-xl: 3rem;
    --gh-spacing-2xl: 4rem;
    --gh-spacing-3xl: 6rem;
    
    /* Border Radius */
    --gh-radius-sm: 4px;
    --gh-radius-md: 8px;
    --gh-radius-lg: 12px;
    --gh-radius-xl: 16px;
    
    /* Shadows */
    --gh-shadow-sm: 0 2px 8px rgba(45, 18, 8, 0.05);
    --gh-shadow-md: 0 4px 16px rgba(45, 18, 8, 0.08);
    --gh-shadow-lg: 0 8px 32px rgba(45, 18, 8, 0.12);
    
    /* Transitions */
    --gh-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --gh-transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gh-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body.gh-body {
    font-family: var(--gh-font-main);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gh-color-text);
    background-color: var(--gh-color-bg);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   3. TYPOGRAPHY & UTILITIES
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gh-color-primary);
    margin-bottom: var(--gh-spacing-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--gh-spacing-sm);
    color: var(--gh-color-text-light);
}

.gh-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--gh-spacing-lg);
}

.gh-section {
    padding: var(--gh-spacing-3xl) 0;
}

.gh-section--alt {
    background-color: var(--gh-color-white);
}

.gh-section__header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--gh-spacing-2xl);
}

.gh-section__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gh-color-secondary);
    margin-bottom: var(--gh-spacing-sm);
    position: relative;
    padding-bottom: 8px;
}

.gh-section__subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gh-color-primary), var(--gh-color-accent));
}

.gh-section__title {
    margin-bottom: var(--gh-spacing-md);
}

.gh-section__description {
    font-size: 1.125rem;
    color: var(--gh-color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.gh-section__cta-wrapper {
    text-align: center;
    margin-top: var(--gh-spacing-2xl);
}

/* ============================================
   SIDEBAR NAVIGATION (Icon-Only Strip)
   Always visible, never expands, 70px fixed
   ============================================ */
.gh-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 70px;
    height: 100vh;
    background: linear-gradient(180deg, #2d1208 0%, #1a0a04 100%);
    color: var(--gh-color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--gh-spacing-md) 0;
    z-index: 1000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Brand / Logo (Favicon) */
.gh-sidebar__brand {
    padding: 0 12px;
    margin-bottom: var(--gh-spacing-xl);
    flex-shrink: 0;
}

.gh-sidebar__logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--gh-transition-base);
}

.gh-sidebar__logo-link:hover {
    background: rgba(212, 165, 116, 0.15);
    transform: scale(1.05);
}

.gh-sidebar__logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Navigation */
.gh-sidebar__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
}

.gh-sidebar__nav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gh-sidebar__nav-item {
    width: 100%;
}

.gh-sidebar__nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: var(--gh-radius-md);
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gh-sidebar__nav-link:hover {
    color: var(--gh-color-white);
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.gh-sidebar__nav-link.is-active {
    color: var(--gh-color-accent);
    background: rgba(212, 165, 116, 0.12);
}

/* Active indicator - left glow bar */
.gh-sidebar__nav-link.is-active::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: var(--gh-color-accent);
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 12px var(--gh-color-accent);
}

/* Icon pulse on active */
.gh-sidebar__nav-link.is-active .gh-sidebar__nav-icon {
    filter: drop-shadow(0 0 6px rgba(212, 165, 116, 0.6));
}

.gh-sidebar__nav-icon {
    font-size: 1.2rem;
    line-height: 1;
}

/* Language Switcher */
.gh-sidebar__lang {
    padding: var(--gh-spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.gh-sidebar__lang-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--gh-radius-md);
    color: rgba(255, 255, 255, 0.55);
    transition: all 0.3s ease;
}

.gh-sidebar__lang-link:hover {
    color: var(--gh-color-accent);
    background: rgba(212, 165, 116, 0.12);
    transform: scale(1.05);
}

.gh-sidebar__lang-icon {
    font-size: 1.2rem;
}

/* Main Content Offset - ALWAYS 70px */
.gh-main-content {
    margin-left: 70px;
}

/* Footer also offset */
.gh-footer {
    margin-left: 70px;
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.gh-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--gh-spacing-3xl) 0;
}

.gh-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.gh-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.gh-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 18, 8, 0.92) 0%, rgba(45, 18, 8, 0.85) 50%, rgba(139, 69, 19, 0.75) 100%);
    z-index: -1;
}

.gh-hero__decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gh-hero__deco-wall {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 150px;
    animation: gh-float 8s ease-in-out infinite;
}

.gh-hero__deco-mountain {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 400px;
    height: 200px;
    animation: gh-float 10s ease-in-out infinite reverse;
}

@keyframes gh-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.gh-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.gh-hero__text-block {
    max-width: 900px;
}

.gh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--gh-spacing-sm);
    padding: 8px 16px;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gh-color-accent);
    margin-bottom: var(--gh-spacing-lg);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gh-hero__title {
    color: var(--gh-color-white);
    margin-bottom: var(--gh-spacing-lg);
    line-height: 1.1;
}

.gh-hero__title-accent {
    color: var(--gh-color-accent);
    display: block;
    margin-top: 10px;
}

.gh-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--gh-spacing-xl);
    max-width: 750px;
    line-height: 1.7;
}

.gh-hero__stats {
    display: flex;
    gap: var(--gh-spacing-2xl);
    margin-bottom: var(--gh-spacing-xl);
    padding-bottom: var(--gh-spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-hero__stat-item {
    display: flex;
    flex-direction: column;
}

.gh-hero__stat-number {
    font-size: 3.5rem;
    color: var(--gh-color-white);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 700;
}

.gh-hero__stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gh-hero__actions {
    display: flex;
    gap: var(--gh-spacing-md);
    flex-wrap: wrap;
}

.gh-hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: gh-bounce 2s infinite;
}

.gh-hero__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.gh-hero__scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gh-color-accent);
    border-radius: 2px;
    animation: gh-scroll 1.5s infinite;
}

@keyframes gh-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes gh-scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ============================================
   7. ABOUT US SECTION
   ============================================ */
.gh-about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gh-spacing-2xl);
    align-items: start;
}

.gh-about__info-title {
    font-size: 1.75rem;
    margin-bottom: var(--gh-spacing-md);
    position: relative;
    padding-bottom: var(--gh-spacing-sm);
}

.gh-about__info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gh-color-primary), var(--gh-color-accent));
}

.gh-about__info-text {
    font-size: 1.05rem;
    margin-bottom: var(--gh-spacing-lg);
    line-height: 1.8;
}

.gh-about__credentials {
    display: flex;
    flex-direction: column;
    gap: var(--gh-spacing-md);
    margin-top: var(--gh-spacing-lg);
}

.gh-about__credential-item {
    display: flex;
    align-items: center;
    gap: var(--gh-spacing-md);
    padding: var(--gh-spacing-md);
    background: var(--gh-color-white);
    border-radius: var(--gh-radius-md);
    box-shadow: var(--gh-shadow-sm);
    border-left: 4px solid var(--gh-color-primary);
    transition: var(--gh-transition-base);
}

.gh-about__credential-item:hover {
    transform: translateX(5px);
    box-shadow: var(--gh-shadow-md);
}

.gh-about__credential-icon {
    font-size: 1.5rem;
    color: var(--gh-color-accent);
    width: 40px;
    text-align: center;
}

.gh-about__credential-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gh-color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.gh-about__credential-value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gh-color-primary);
}

.gh-about__strengths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gh-spacing-md);
}

.gh-strength-card {
    background: var(--gh-color-white);
    padding: var(--gh-spacing-lg);
    border-radius: var(--gh-radius-lg);
    box-shadow: var(--gh-shadow-sm);
    transition: var(--gh-transition-base);
    border: 1px solid var(--gh-color-border);
    position: relative;
    overflow: hidden;
}

.gh-strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gh-color-primary), var(--gh-color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--gh-transition-base);
}

.gh-strength-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gh-shadow-lg);
    border-color: transparent;
}

.gh-strength-card:hover::before {
    transform: scaleX(1);
}

.gh-strength-card__icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(45, 18, 8, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--gh-spacing-md);
    transition: var(--gh-transition-base);
}

.gh-strength-card:hover .gh-strength-card__icon-wrap {
    background: var(--gh-color-primary);
}

.gh-strength-card__icon {
    font-size: 1.25rem;
    color: var(--gh-color-primary);
    transition: var(--gh-transition-base);
}

.gh-strength-card:hover .gh-strength-card__icon {
    color: var(--gh-color-accent);
}

.gh-strength-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--gh-spacing-sm);
}

.gh-strength-card__text {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   8. RESPONSIVE (Mobile Header, Hero, About)
   ============================================ */
@media (max-width: 1024px) {
    .gh-sidebar {
        transform: translateX(-100%);
        width: 75px !important;
    }
    
    .gh-sidebar__logo-link {
        display: none;
    }
    
    .gh-sidebar.is-open {
        transform: translateX(0);
    }

    .gh-sidebar__logo,
    .gh-sidebar__nav-text,
    .gh-sidebar__lang-link span,
    .gh-sidebar__contact-item span,
    .gh-sidebar__copyright {
        opacity: 1 !important;
        transform: none !important;
    }

    .gh-mobile-header {
        display: flex;
    }

    .gh-main-content {
        margin-left: 0 !important;
    }

    .gh-hero {
        padding-top: 100px;
    }

    .gh-hero__stats {
        gap: var(--gh-spacing-lg);
    }

    .gh-hero__stat-number {
        font-size: 2.5rem;
    }

    .gh-about__layout {
        grid-template-columns: 1fr;
    }
    
    .gh-about__strengths {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .gh-about__strengths {
        grid-template-columns: 1fr;
    }

    .gh-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .gh-hero__actions .gh-btn {
        width: 100%;
    }
}



/* ============================================
   9. PRODUCTS OVERVIEW
   ============================================ */
.gh-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gh-spacing-lg);
}

.gh-product-card {
    background: var(--gh-color-white);
    padding: var(--gh-spacing-xl);
    border-radius: var(--gh-radius-lg);
    box-shadow: var(--gh-shadow-sm);
    border: 1px solid var(--gh-color-border);
    transition: var(--gh-transition-base);
    display: flex;
    flex-direction: column;
}

.gh-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gh-shadow-lg);
    border-color: var(--gh-color-accent);
}

.gh-product-card__icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--gh-spacing-md);
    transition: var(--gh-transition-base);
}

.gh-product-card:hover .gh-product-card__icon-wrap {
    background: var(--gh-color-primary);
}

.gh-product-card__icon {
    font-size: 1.5rem;
    color: var(--gh-color-primary);
    transition: var(--gh-transition-base);
}

.gh-product-card:hover .gh-product-card__icon {
    color: var(--gh-color-accent);
}

.gh-product-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--gh-spacing-sm);
}

.gh-product-card__text {
    font-size: 0.95rem;
    color: var(--gh-color-text-light);
    margin-bottom: var(--gh-spacing-md);
    line-height: 1.6;
    flex: 1;
}

.gh-product-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: var(--gh-spacing-md);
    border-top: 1px solid var(--gh-color-border);
}

.gh-product-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gh-color-text);
    font-weight: 600;
}

.gh-product-card__list li i {
    color: var(--gh-color-accent);
    font-size: 0.8rem;
}

/* ============================================
   10. SERVICES SECTION
   ============================================ */
.gh-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gh-spacing-lg);
}

.gh-service-card {
    background: var(--gh-color-white);
    padding: var(--gh-spacing-xl);
    border-radius: var(--gh-radius-lg);
    box-shadow: var(--gh-shadow-sm);
    border: 1px solid var(--gh-color-border);
    transition: var(--gh-transition-base);
    position: relative;
    overflow: hidden;
}

.gh-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gh-shadow-md);
    border-color: var(--gh-color-primary);
}

.gh-service-card__number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gh-color-primary);
    opacity: 0.05;
    line-height: 1;
    transition: var(--gh-transition-base);
}

.gh-service-card:hover .gh-service-card__number {
    opacity: 0.15;
    transform: scale(1.1);
}

.gh-service-card__icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--gh-color-primary);
    border-radius: var(--gh-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--gh-spacing-md);
    transition: var(--gh-transition-base);
}

.gh-service-card:hover .gh-service-card__icon-wrap {
    background: var(--gh-color-accent);
}

.gh-service-card__icon {
    font-size: 1.25rem;
    color: var(--gh-color-accent);
    transition: var(--gh-transition-base);
}

.gh-service-card:hover .gh-service-card__icon {
    color: var(--gh-color-primary);
}

.gh-service-card__title {
    font-size: 1.15rem;
    margin-bottom: var(--gh-spacing-sm);
}

.gh-service-card__text {
    font-size: 0.9rem;
    color: var(--gh-color-text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   11. PARTNER NETWORK
   ============================================ */
.gh-network__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gh-spacing-lg);
}

.gh-network-card {
    background: var(--gh-color-white);
    padding: var(--gh-spacing-xl);
    border-radius: var(--gh-radius-lg);
    border: 1px solid var(--gh-color-border);
    transition: var(--gh-transition-base);
    display: flex;
    flex-direction: column;
}

.gh-network-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gh-shadow-lg);
    border-color: var(--gh-color-primary);
}

.gh-network-card__icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gh-color-primary), var(--gh-color-secondary));
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--gh-spacing-lg);
    transition: var(--gh-transition-base);
}

.gh-network-card__icon {
    font-size: 1.5rem;
    color: var(--gh-color-accent);
}

.gh-network-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--gh-spacing-md);
}

.gh-network-card__text {
    font-size: 0.95rem;
    color: var(--gh-color-text-light);
    margin-bottom: var(--gh-spacing-lg);
    line-height: 1.7;
    flex: 1;
}

.gh-network-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: var(--gh-spacing-md);
    border-top: 1px solid var(--gh-color-border);
}

.gh-network-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gh-color-text);
    font-weight: 600;
}

.gh-network-card__list li i {
    color: var(--gh-color-accent);
    font-size: 0.8rem;
}

/* ============================================
   12. RESPONSIVE (Products, Services, Network)
   ============================================ */
@media (max-width: 1024px) {
    .gh-products__grid,
    .gh-network__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gh-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gh-products__grid,
    .gh-network__grid,
    .gh-services__grid {
        grid-template-columns: 1fr;
    }
}




/* ============================================
   13. LOGISTICS SECTION
   ============================================ */
.gh-logistics__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gh-spacing-2xl);
    align-items: center;
}

.gh-logistics__info-title {
    font-size: 1.75rem;
    margin-bottom: var(--gh-spacing-md);
    position: relative;
    padding-bottom: var(--gh-spacing-sm);
}

.gh-logistics__info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gh-color-primary), var(--gh-color-accent));
}

.gh-logistics__info-text {
    font-size: 1.05rem;
    margin-bottom: var(--gh-spacing-lg);
    line-height: 1.8;
}

.gh-logistics__visual {
    margin-top: var(--gh-spacing-lg);
    overflow: hidden;
    box-shadow: var(--gh-shadow-lg);
}

.gh-logistics__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gh-logistics__visual:hover .gh-logistics__image {
    transform: scale(1.03);
}

.gh-transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gh-spacing-md);
}

.gh-transport-card {
    background: var(--gh-color-white);
    padding: var(--gh-spacing-lg);
    border: 1px solid var(--gh-color-border);
    transition: var(--gh-transition-base);
    text-align: center;
}

.gh-transport-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gh-shadow-lg);
    border-color: var(--gh-color-accent);
}

.gh-transport-card__icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(45, 18, 8, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--gh-spacing-md);
    transition: var(--gh-transition-base);
}

.gh-transport-card:hover .gh-transport-card__icon-wrap {
    background: var(--gh-color-primary);
}

.gh-transport-card__icon {
    font-size: 1.5rem;
    color: var(--gh-color-primary);
    transition: var(--gh-transition-base);
}

.gh-transport-card:hover .gh-transport-card__icon {
    color: var(--gh-color-accent);
}

.gh-transport-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--gh-spacing-sm);
}

.gh-transport-card__text {
    font-size: 0.9rem;
    color: var(--gh-color-text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   14. GLOBAL REACH & INTERACTIVE MAP
   ============================================ */
/* ============================================
   NEW: TRADE FLOW MAP (Unique Design)
   ============================================ */
.gh-trade-flow-container {
    background: var(--gh-color-white);
    border-radius: var(--gh-radius-xl);
    padding: var(--gh-spacing-xl);
    box-shadow: var(--gh-shadow-md);
    border: 2px solid var(--gh-color-border);
    margin-bottom: var(--gh-spacing-2xl);
    position: relative;
    overflow: hidden;
}

.gh-flow-map {
    width: 100%;
    margin-bottom: var(--gh-spacing-2xl);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(45, 18, 8, 0.02) 100%);
    border-radius: var(--gh-radius-lg);
    padding: var(--gh-spacing-lg);
}

.gh-flow-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Flow Routes Animation */
.gh-flow-route {
    stroke-linecap: round;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

/* Pulsing Hub */
.gh-hub {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gh-hub:hover {
    transform: scale(1.1);
}

/* Regional Nodes */
.gh-region-node {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gh-region-node:hover .gh-node-circle {
    fill: var(--gh-color-accent);
    stroke: var(--gh-color-primary);
    stroke-width: 3;
}

.gh-region-node.is-active .gh-node-circle {
    fill: var(--gh-color-primary);
    r: 10;
}

.gh-region-node text {
    pointer-events: none;
    transition: fill 0.3s ease;
}

.gh-region-node:hover text {
    fill: var(--gh-color-secondary);
    font-weight: 800;
}

/* Flow Stats Panel */
.gh-flow-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gh-spacing-md);
}

.gh-flow-stat-card {
    background: var(--gh-color-bg);
    padding: var(--gh-spacing-md);
    border-radius: var(--gh-radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: var(--gh-spacing-sm);
}

.gh-flow-stat-card:hover {
    background: var(--gh-color-white);
    border-color: var(--gh-color-accent);
    transform: translateY(-5px);
    box-shadow: var(--gh-shadow-md);
}

.gh-flow-stat-card.is-active {
    background: var(--gh-color-primary);
    border-color: var(--gh-color-primary);
}

.gh-flow-stat-card.is-active .gh-flow-stat__title,
.gh-flow-stat-card.is-active .gh-flow-stat__volume,
.gh-flow-stat-card.is-active .gh-flow-stat__details {
    color: var(--gh-color-white);
}

.gh-flow-stat-card.is-active .gh-flow-stat__icon {
    background: var(--gh-color-accent);
    color: var(--gh-color-primary);
}

.gh-flow-stat__icon {
    width: 40px;
    height: 40px;
    background: var(--gh-color-primary);
    border-radius: var(--gh-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gh-color-accent);
    flex-shrink: 0;
    transition: var(--gh-transition-base);
}

.gh-flow-stat__content {
    flex: 1;
    min-width: 0;
}

.gh-flow-stat__title {
    font-size: 0.95rem;
    color: var(--gh-color-primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.gh-flow-stat__volume {
    font-size: 0.85rem;
    color: var(--gh-color-secondary);
    margin-bottom: 4px;
    font-weight: 600;
}

.gh-flow-stat__details {
    font-size: 0.75rem;
    color: var(--gh-color-text-light);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
    .gh-flow-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gh-flow-stats {
        grid-template-columns: 1fr;
    }
    
    .gh-flow-map {
        padding: var(--gh-spacing-md);
    }
    
    .gh-flow-svg {
        min-height: 300px;
    }
}

/* ============================================
   15. CONTACT SECTION (INLINE EXPANSION FORM)
   ============================================ */
.gh-contact__expansion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.gh-contact__trigger-wrap {
    text-align: center;
    margin-bottom: var(--gh-spacing-lg);
}

/* The hidden form container */
.gh-contact__form-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: var(--gh-color-white);
    border-radius: var(--gh-radius-xl);
    box-shadow: var(--gh-shadow-sm);
    border: 1px solid var(--gh-color-border);
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease, 
                padding 0.4s ease,
                box-shadow 0.4s ease;
    padding: 0 var(--gh-spacing-xl);
}

/* Expanded state (toggled via JS) */
.gh-contact__form-container.is-expanded {
    max-height: 2000px; /* Large enough to fit content */
    opacity: 1;
    padding: var(--gh-spacing-2xl) var(--gh-spacing-xl);
    box-shadow: var(--gh-shadow-lg);
    border-color: var(--gh-color-accent);
}

/* Form Styles */
.gh-form__block {
    margin-bottom: var(--gh-spacing-xl);
    padding-bottom: var(--gh-spacing-xl);
    border-bottom: 1px solid var(--gh-color-border);
}

.gh-form__block:last-of-type {
    border-bottom: none;
    margin-bottom: var(--gh-spacing-lg);
    padding-bottom: 0;
}

.gh-form__block-title {
    font-size: 1.1rem;
    color: var(--gh-color-primary);
    margin-bottom: var(--gh-spacing-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gh-form__block-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gh-color-accent);
    border-radius: 2px;
}

.gh-form__row--double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gh-spacing-md);
}

.gh-form__group {
    margin-bottom: var(--gh-spacing-md);
}

.gh-form__input,
.gh-form__select,
.gh-form__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gh-color-border);
    border-radius: var(--gh-radius-md);
    font-family: var(--gh-font-main);
    font-size: 1rem;
    color: var(--gh-color-text);
    background-color: var(--gh-color-bg);
    transition: var(--gh-transition-base);
}

.gh-form__input::placeholder,
.gh-form__textarea::placeholder {
    color: #9CA3AF;
}

.gh-form__input:focus,
.gh-form__select:focus,
.gh-form__textarea:focus {
    outline: none;
    border-color: var(--gh-color-primary);
    background-color: var(--gh-color-white);
    box-shadow: 0 0 0 4px rgba(45, 18, 8, 0.05);
}

.gh-form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Phone Input Wrapper */
.gh-form__label-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gh-color-primary);
}

.gh-form__phone-wrapper {
    display: flex;
    gap: 10px;
}

.gh-form__country-code {
    width: 160px;
    padding: 14px 10px;
    border: 2px solid var(--gh-color-border);
    border-radius: var(--gh-radius-md);
    background-color: var(--gh-color-bg);
    font-family: var(--gh-font-main);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--gh-transition-base);
}

.gh-form__country-code:focus {
    outline: none;
    border-color: var(--gh-color-primary);
}

.gh-form__phone-input {
    flex: 1;
}

.gh-form__error-text {
    display: none;
    font-size: 0.8rem;
    color: #EF4444;
    margin-top: 6px;
}

.gh-form__input.is-invalid {
    border-color: #EF4444;
}

/* Agreements */
.gh-form__block--agreements {
    background: var(--gh-color-bg);
    padding: var(--gh-spacing-lg);
    border-radius: var(--gh-radius-md);
    border-bottom: none !important;
}

.gh-form__agreement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    cursor: pointer;
}

.gh-form__agreement:last-child {
    margin-bottom: 0;
}

.gh-form__checkbox-main {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--gh-color-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.gh-form__agreement-text {
    font-size: 0.9rem;
    color: var(--gh-color-text-light);
    line-height: 1.5;
}

.gh-form__actions {
    margin-top: var(--gh-spacing-lg);
    text-align: center;
}

.gh-form__submit {
    width: 100%;
    max-width: 400px;
    padding: 16px;
    font-size: 1.1rem;
}

.gh-form__status {
    text-align: center;
    margin-top: 16px;
    font-size: 0.95rem;
    min-height: 24px;
}

/* ============================================
   16. RESPONSIVE (Logistics, Map, Contact)
   ============================================ */
@media (max-width: 1024px) {
    .gh-logistics__layout {
        grid-template-columns: 1fr;
    }
    
    .gh-map-legend {
        grid-template-columns: repeat(2, 1fr);
    }

    .gh-global__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gh-transport-grid {
        grid-template-columns: 1fr;
    }

    .gh-map-legend {
        grid-template-columns: 1fr;
    }
    
    .gh-global__stats {
        grid-template-columns: 1fr;
    }
    
    .gh-form__row--double {
        grid-template-columns: 1fr;
    }

    .gh-form__phone-wrapper {
        flex-direction: column;
    }

    .gh-form__country-code {
        width: 100%;
    }

    .gh-contact__form-container.is-expanded {
        padding: var(--gh-spacing-lg) var(--gh-spacing-md);
    }
}




/* ============================================
   17. WHY CHOOSE US (Advantages)
   ============================================ */
.gh-advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gh-spacing-lg);
}

.gh-adv-card {
    background: var(--gh-color-bg);
    padding: var(--gh-spacing-xl);
    border-radius: var(--gh-radius-lg);
    transition: var(--gh-transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.gh-adv-card:hover {
    background: var(--gh-color-white);
    transform: translateY(-8px);
    box-shadow: var(--gh-shadow-lg);
    border-color: var(--gh-color-accent);
}

.gh-adv-card__icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--gh-color-primary);
    border-radius: var(--gh-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--gh-spacing-lg);
    transition: var(--gh-transition-base);
}

.gh-adv-card:hover .gh-adv-card__icon-wrap {
    background: var(--gh-color-accent);
}

.gh-adv-card__icon {
    font-size: 1.5rem;
    color: var(--gh-color-accent);
    transition: var(--gh-transition-base);
}

.gh-adv-card:hover .gh-adv-card__icon {
    color: var(--gh-color-primary);
}

.gh-adv-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--gh-spacing-sm);
}

.gh-adv-card__text {
    font-size: 0.95rem;
    color: var(--gh-color-text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   18. MINIMALIST FLOATING FOOTER
   ============================================ */
.gh-footer {
    background-color: var(--gh-color-white);
    border-top: 1px solid var(--gh-color-border);
    padding: var(--gh-spacing-3xl) 0 var(--gh-spacing-lg);
    margin-top: var(--gh-spacing-3xl);
    position: relative;
}

.gh-footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--gh-spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.gh-footer__logo-link {
    display: inline-block;
    transition: var(--gh-transition-base);
}

.gh-footer__logo-link:hover {
    transform: scale(1.02);
}

.gh-footer__logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(45, 18, 8, 0.05));
}

.gh-footer__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--gh-color-text-light);
    font-size: 0.95rem;
}

.gh-footer__info-icon {
    color: var(--gh-color-accent);
    margin-right: 8px;
    width: 16px;
}

.gh-footer__email {
    color: var(--gh-color-primary);
    font-weight: 600;
    transition: var(--gh-transition-fast);
}

.gh-footer__email:hover {
    color: var(--gh-color-secondary);
}

.gh-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gh-spacing-md);
    padding-top: var(--gh-spacing-lg);
    border-top: 1px solid var(--gh-color-border);
    width: 100%;
}

.gh-footer__links a {
    font-size: 0.9rem;
    color: var(--gh-color-text-light);
    font-weight: 600;
    position: relative;
}

.gh-footer__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gh-color-accent);
    transition: width 0.3s ease;
}

.gh-footer__links a:hover {
    color: var(--gh-color-primary);
}

.gh-footer__links a:hover::after {
    width: 100%;
}

.gh-footer__bottom {
    margin-top: var(--gh-spacing-xl);
    text-align: center;
}

.gh-footer__copyright {
    font-size: 0.8rem;
    color: rgba(62, 39, 35, 0.5);
    margin-bottom: 0;
}

/* ============================================
   19. BUTTONS (Global Styles)
   ============================================ */
.gh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--gh-font-main);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--gh-radius-md);
    transition: var(--gh-transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.gh-btn--primary {
    background: var(--gh-color-primary);
    color: var(--gh-color-white);
    box-shadow: 0 4px 15px rgba(45, 18, 8, 0.2);
}

.gh-btn--primary:hover {
    background: var(--gh-color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 18, 8, 0.3);
}

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

.gh-btn--outline:hover {
    background: var(--gh-color-accent);
    color: var(--gh-color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.gh-btn--large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.gh-hero__actions .gh-btn.gh-btn--outline.gh-btn--large{
    color: #fff
}

.gh-btn__icon {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.gh-btn:hover .gh-btn__icon {
    transform: translateX(4px);
}

/* ============================================
   20. SCROLL ANIMATIONS
   ============================================ */
.gh-animate-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered animation for grid items */
.gh-product-card.gh-animate-init,
.gh-service-card.gh-animate-init,
.gh-network-card.gh-animate-init,
.gh-adv-card.gh-animate-init {
    transition-delay: calc(var(--gh-index, 0) * 0.1s);
}

/* ============================================
   21. GLOBAL RESPONSIVE & UTILITIES
   ============================================ */
@media (max-width: 1024px) {
    .gh-advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gh-section {
        padding: var(--gh-spacing-2xl) 0;
    }
    
    .gh-section__title {
        font-size: 1.75rem;
    }
    
    .gh-advantages__grid {
        grid-template-columns: 1fr;
    }

    .gh-footer__links {
        gap: var(--gh-spacing-sm);
    }
    
    .gh-btn--large {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .gh-hero__stat-number {
        font-size: 2rem;
    }
    
    .gh-global__stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gh-container {
        padding: 0 var(--gh-spacing-md);
    }
}

/* Utility Classes */
.gh-text-center { text-align: center; }
.gh-text-primary { color: var(--gh-color-primary); }
.gh-text-accent { color: var(--gh-color-accent); }

/* Print Styles */
@media print {
    .gh-sidebar,
    .gh-mobile-header,
    .gh-hero__scroll-indicator,
    .gh-contact__trigger-wrap {
        display: none !important;
    }
    
    .gh-main-content,
    .gh-footer {
        margin-left: 0;
    }
    
    .gh-contact__form-container {
        max-height: none !important;
        opacity: 1 !important;
        padding: 20px !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    body {
        background: white;
        color: black;
    }
}


/* ============================================
   LEGAL & COMPLIANCE (Light Accordion)
   ============================================ */
.gh-legal {
    background-color: var(--gh-color-white);
    padding: var(--gh-spacing-2xl) 0;
}

.gh-legal__accordion {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--gh-color-border);
}

.gh-legal-item {
    border-bottom: 1px solid var(--gh-color-border);
}

.gh-legal-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--gh-spacing-lg) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--gh-transition-fast);
    font-family: var(--gh-font-main);
    text-align: left;
}

.gh-legal-item__trigger:hover {
    opacity: 0.7;
}

.gh-legal-item__trigger.is-active {
    padding-bottom: var(--gh-spacing-md);
}

.gh-legal-item__header {
    display: flex;
    align-items: center;
    gap: var(--gh-spacing-md);
}

.gh-legal-item__icon {
    font-size: 1.2rem;
    color: var(--gh-color-accent);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-legal-item__title {
    font-size: 1.1rem;
    color: var(--gh-color-primary);
    margin: 0;
    font-weight: 700;
}

.gh-legal-item__icon-toggle {
    font-size: 1rem;
    color: var(--gh-color-accent);
    transition: transform 0.3s ease;
}

.gh-legal-item__trigger.is-active .gh-legal-item__icon-toggle {
    transform: rotate(45deg);
}

.gh-legal-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-legal-item__content.is-expanded {
    max-height: 800px;
}

.gh-legal-item__inner {
    padding-bottom: var(--gh-spacing-lg);
    color: var(--gh-color-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

.gh-legal-item__inner h4 {
    font-size: 0.95rem;
    color: var(--gh-color-secondary);
    margin-top: var(--gh-spacing-md);
    margin-bottom: 8px;
    font-weight: 700;
}

.gh-legal-item__inner p {
    margin-bottom: var(--gh-spacing-sm);
}

.gh-legal-item__inner ul {
    margin-bottom: var(--gh-spacing-md);
    padding-left: var(--gh-spacing-md);
}

.gh-legal-item__inner ul li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
}

.gh-legal-item__inner ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gh-color-accent);
    font-weight: 700;
    font-size: 0.85rem;
}

.gh-legal-item__inner a {
    color: var(--gh-color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gh-legal-item__inner a:hover {
    color: var(--gh-color-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .gh-legal-item__trigger {
        padding: var(--gh-spacing-md) 0;
    }
    
    .gh-legal-item__title {
        font-size: 1rem;
    }
    
    .gh-legal-item__inner {
        font-size: 0.9rem;
    }
}



/* ============================================
   GLOBAL STATISTICS (Styled Cards)
   ============================================ */
.gh-global__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gh-spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.gh-stat-card {
    background: var(--gh-color-white);
    border: 2px solid var(--gh-color-border);
    border-radius: var(--gh-radius-lg);
    padding: var(--gh-spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--gh-spacing-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gh-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gh-color-primary), var(--gh-color-accent));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

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

.gh-stat-card:hover::before {
    transform: scaleY(1);
}

.gh-stat-card__icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(45, 18, 8, 0.05);
    border-radius: var(--gh-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.gh-stat-card:hover .gh-stat-card__icon-wrap {
    background: var(--gh-color-primary);
}

.gh-stat-card__icon {
    font-size: 1.3rem;
    color: var(--gh-color-primary);
    transition: color 0.3s ease;
}

.gh-stat-card:hover .gh-stat-card__icon {
    color: var(--gh-color-accent);
}

.gh-stat-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gh-stat-card__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gh-color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.gh-stat-card__label {
    font-size: 0.85rem;
    color: var(--gh-color-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .gh-global__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gh-global__stats {
        grid-template-columns: 1fr;
    }
    
    .gh-stat-card {
        padding: var(--gh-spacing-md);
    }
    
    .gh-stat-card__number {
        font-size: 1.75rem;
    }
}



/* Form Success Message */
.gh-form__success {
    text-align: center;
    padding: var(--gh-spacing-3xl) var(--gh-spacing-xl);
    background: linear-gradient(135deg, var(--gh-color-bg) 0%, var(--gh-color-white) 100%);
    border-radius: var(--gh-radius-lg);
    border: 2px solid var(--gh-color-border);
}

.gh-form__success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--gh-spacing-lg);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gh-successPulse 0.6s ease;
}

.gh-form__success-icon i {
    font-size: 3rem;
    color: var(--gh-color-white);
}

@keyframes gh-successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.gh-form__success-title {
    font-size: 1.75rem;
    color: var(--gh-color-primary);
    margin-bottom: var(--gh-spacing-lg);
}

.gh-form__success-text {
    font-size: 1rem;
    color: var(--gh-color-text);
    margin-bottom: var(--gh-spacing-md);
    line-height: 1.6;
}

.gh-form__success-text strong {
    color: var(--gh-color-secondary);
    font-weight: 700;
}

.gh-form__success-actions {
    margin-top: var(--gh-spacing-xl);
}

.gh-form__link {
    color: var(--gh-color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.gh-form__link:hover {
    color: var(--gh-color-secondary);
}

/* Country Code Select with Flags */
.gh-form__country-code {
    width: 140px;
    padding: 14px 10px;
    border: 2px solid var(--gh-color-border);
    border-radius: var(--gh-radius-md);
    background-color: var(--gh-color-bg);
    font-family: var(--gh-font-main);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--gh-transition-base);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d1208' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.gh-form__country-code:focus {
    outline: none;
    border-color: var(--gh-color-primary);
}

/* Custom option styling via JavaScript would be needed for flags */



/* ============================================
   LAPTOP/DESKTOP ADAPTIVE (1024-1440px)
   ============================================ */

/* 1280-1440px: Large laptops */
@media (max-width: 1440px) and (min-width: 1281px) {
    .gh-container {
        max-width: 1200px;
        padding: 0 var(--gh-spacing-lg);
    }
    
    .gh-hero__title {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
    }
    
    .gh-hero__subtitle {
        font-size: 1rem;
    }
    
    .gh-hero__stat-number {
        font-size: 3rem;
    }
    
    .gh-section__title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .gh-products__grid,
    .gh-network__grid,
    .gh-advantages__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gh-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 1024-1280px: Standard laptops */
@media (max-width: 1280px) and (min-width: 1025px) {
    .gh-container {
        max-width: 1000px;
        padding: 0 var(--gh-spacing-md);
    }
    
    .gh-section {
        padding: var(--gh-spacing-2xl) 0;
    }
    
    /* Hero Section */
    .gh-hero {
        padding: var(--gh-spacing-2xl) 0;
        min-height: 90vh;
    }
    
    .gh-hero__title {
        font-size: clamp(2rem, 3.5vw, 3rem);
        line-height: 1.1;
    }
    
    .gh-hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .gh-hero__stats {
        gap: var(--gh-spacing-lg);
    }
    
    .gh-hero__stat-number {
        font-size: 2.5rem;
    }
    
    .gh-hero__stat-label {
        font-size: 0.8rem;
    }
    
    .gh-hero__actions {
        gap: var(--gh-spacing-sm);
    }
    
    .gh-btn--large {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    /* Section Headers */
    .gh-section__title {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
    }
    
    .gh-section__description {
        font-size: 1rem;
    }
    
    /* Grids - 2 columns instead of 3-4 */
    .gh-products__grid,
    .gh-network__grid,
    .gh-advantages__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gh-spacing-md);
    }
    
    .gh-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gh-spacing-md);
    }
    
    .gh-flow-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gh-global__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About Section */
    .gh-about__layout {
        gap: var(--gh-spacing-lg);
    }
    
    .gh-about__strengths {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Logistics */
    .gh-logistics__layout {
        gap: var(--gh-spacing-lg);
    }
    
    .gh-transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Form */
    .gh-form__row--double {
        gap: var(--gh-spacing-sm);
    }
    
    /* Legal */
    .gh-legal__grid {
        gap: var(--gh-spacing-md);
    }
}

/* 768-1024px: Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .gh-container {
        max-width: 900px;
        padding: 0 var(--gh-spacing-md);
    }
    
    .gh-section {
        padding: var(--gh-spacing-xl) 0;
    }
    
    .gh-hero {
        padding: var(--gh-spacing-xl) 0;
        min-height: 80vh;
    }
    
    .gh-hero__title {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }
    
    .gh-hero__stat-number {
        font-size: 2rem;
    }
    
    .gh-products__grid,
    .gh-network__grid,
    .gh-advantages__grid,
    .gh-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gh-flow-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gh-global__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gh-transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Below 768px: Mobile */
@media (max-width: 768px) {
    .gh-container {
        padding: 0 var(--gh-spacing-sm);
    }
    
    .gh-section {
        padding: var(--gh-spacing-lg) 0;
    }
    
    .gh-hero {
        min-height: 70vh;
        padding: var(--gh-spacing-lg) 0;
        padding-top: 100px;
    }
    
    .gh-hero__title {
        font-size: 1.8rem;
    }
    
    .gh-hero__stats {
        flex-wrap: wrap;
        gap: var(--gh-spacing-md);
    }
    
    .gh-hero__stat-item {
        flex: 1 1 30%;
    }
    
    .gh-hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .gh-hero__actions .gh-btn {
        width: 100%;
    }
    
    .gh-products__grid,
    .gh-network__grid,
    .gh-advantages__grid,
    .gh-services__grid {
        grid-template-columns: 1fr;
    }
    
    .gh-flow-stats {
        grid-template-columns: 1fr;
    }
    
    .gh-global__stats {
        grid-template-columns: 1fr;
    }
    
    .gh-transport-grid {
        grid-template-columns: 1fr;
    }
    
    .gh-about__strengths {
        grid-template-columns: 1fr;
    }
    
    .gh-form__row--double {
        grid-template-columns: 1fr;
    }
    
    .gh-form__phone-wrapper {
        flex-direction: column;
    }
    
    .gh-form__country-code {
        width: 100%;
    }
}

/* Below 480px: Small mobile */
@media (max-width: 480px) {
    .gh-container {
        padding: 0 var(--gh-spacing-sm);
    }
    
    .gh-hero__title {
        font-size: 1.5rem;
    }
    
    .gh-hero__stat-number {
        font-size: 1.75rem;
    }
    
    .gh-section__title {
        font-size: 1.5rem;
    }
    
    .gh-btn--large {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================
   MOBILE HEADER & NAVIGATION
   ============================================ */
.gh-mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, #2d1208 0%, #1a0a04 100%);
    z-index: 1001;
    padding: 0 var(--gh-spacing-md);
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gh-mobile-header__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.gh-mobile-header__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gh-color-accent);
    transition: all 0.3s ease;
    transform-origin: center;
}

.gh-mobile-header__burger.is-active .gh-mobile-header__burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.gh-mobile-header__burger.is-active .gh-mobile-header__burger-line:nth-child(2) {
    opacity: 0;
}

.gh-mobile-header__burger.is-active .gh-mobile-header__burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.gh-mobile-header__logo {
    height: 36px;
    width: auto;
}

.gh-mobile-header__logo img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Show mobile header on small screens */
@media (max-width: 768px) {
    .gh-mobile-header {
        display: flex;
    }
    
    /* Sidebar hidden by default on mobile */
    .gh-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .gh-sidebar.is-open {
        transform: translateX(0);
    }
    
    /* Main content full width on mobile */
    .gh-main-content {
        margin-left: 0 !important;
        padding-top: 60px; /* Space for mobile header */
    }
    
    .gh-footer {
        margin-left: 0 !important;
    }
    
    /* Overlay when sidebar is open */
    .gh-sidebar-overlay {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .gh-sidebar-overlay.is-visible {
        display: block;
        opacity: 1;
    }
}