/*
Theme Name: IronHaul
Theme URI: https://ironhaul.com
Author: IronHaul Co
Author URI: https://ironhaul.com
Description: A premium dark industrial WordPress theme for IronHaul Co — Fredericksburg, Virginia's premier skid steer and heavy equipment services company. Comprehensive design system for lead generation and local SEO dominance.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ironhaul
Tags: one-column, two-columns, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments, construction, equipment, contractor, dark, industrial
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ==========================================================================
   IRONHAUL DESIGN SYSTEM
   A dark industrial design system for heavy equipment & contractor services
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --ih-primary: #D4AF37;
    --ih-primary-light: #E5C65C;
    --ih-primary-dark: #C79A1A;
    --ih-primary-rgb: 212, 175, 55;
    --ih-secondary: #1A1A1A;
    --ih-secondary-light: #2A2A2A;
    --ih-secondary-dark: #0A0A0A;
    --ih-accent: #D4AF37;
    --ih-accent-light: #E5C65C;
    --ih-dark: #0A0A0A;
    --ih-darker: #050505;
    --ih-light: #F4F4F4;
    --ih-white: #FFFFFF;
    --ih-gray-50: #FAFAFA;
    --ih-gray-100: #F4F4F4;
    --ih-gray-200: #E0E0E0;
    --ih-gray-300: #B0B0B0;
    --ih-gray-400: #6E6E6E;
    --ih-gray-500: #555555;
    --ih-gray-600: #3A3A3A;
    --ih-gray-700: #2A2A2A;
    --ih-gray-800: #1A1A1A;
    --ih-gray-900: #0A0A0A;
    --ih-gray-950: #050505;

    /* Status Colors */
    --ih-success: #4CAF50;
    --ih-warning: #D4AF37;
    --ih-error: #E53935;
    --ih-info: #D4AF37;

    /* Typography */
    --ih-font-heading: 'Oswald', 'Arial Narrow', Impact, sans-serif;
    --ih-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ih-font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Font Sizes (fluid / clamp) */
    --ih-text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
    --ih-text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
    --ih-text-base: clamp(0.9rem, 0.85rem + 0.3vw, 1rem);
    --ih-text-lg: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --ih-text-xl: clamp(1.15rem, 1rem + 0.75vw, 1.25rem);
    --ih-text-2xl: clamp(1.4rem, 1.1rem + 1.5vw, 1.5rem);
    --ih-text-3xl: clamp(1.7rem, 1.3rem + 2vw, 1.875rem);
    --ih-text-4xl: clamp(2rem, 1.5rem + 2.5vw, 2.25rem);
    --ih-text-5xl: clamp(2.5rem, 1.8rem + 3.5vw, 3rem);
    --ih-text-6xl: clamp(3rem, 2rem + 5vw, 3.75rem);
    --ih-text-hero: clamp(2.5rem, 1.5rem + 5vw, 4.5rem);

    /* Font Weights */
    --ih-font-light: 300;
    --ih-font-normal: 400;
    --ih-font-medium: 500;
    --ih-font-semibold: 600;
    --ih-font-bold: 700;
    --ih-font-extrabold: 800;
    --ih-font-black: 900;

    /* Line Heights */
    --ih-leading-none: 1;
    --ih-leading-tight: 1.15;
    --ih-leading-snug: 1.3;
    --ih-leading-normal: 1.6;
    --ih-leading-relaxed: 1.75;

    /* Spacing */
    --ih-space-xs: 0.25rem;
    --ih-space-sm: 0.5rem;
    --ih-space-md: 1rem;
    --ih-space-lg: 1.5rem;
    --ih-space-xl: 2rem;
    --ih-space-2xl: 3rem;
    --ih-space-3xl: 4rem;
    --ih-space-4xl: 6rem;
    --ih-space-5xl: 8rem;

    /* Container Widths */
    --ih-container-sm: 640px;
    --ih-container-md: 768px;
    --ih-container-lg: 1024px;
    --ih-container-xl: 1200px;
    --ih-container-2xl: 1400px;

    /* Border Radius */
    --ih-radius-sm: 2px;
    --ih-radius-md: 4px;
    --ih-radius-lg: 6px;
    --ih-radius-xl: 8px;
    --ih-radius-full: 9999px;

    /* Border Tokens */
    --ih-border-default: 1px solid #3A3A3A;
    --ih-border-muted: 1px solid #2A2A2A;

    /* Shadows */
    --ih-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --ih-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
    --ih-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
    --ih-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
    --ih-shadow-glow: 0 0 20px rgba(var(--ih-primary-rgb), 0.3);
    --ih-shadow-glow-lg: 0 0 40px rgba(var(--ih-primary-rgb), 0.4);

    /* Transitions */
    --ih-transition-fast: 150ms ease;
    --ih-transition-base: 300ms ease;
    --ih-transition-slow: 500ms ease;
    --ih-transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-Index Scale */
    --ih-z-dropdown: 100;
    --ih-z-sticky: 200;
    --ih-z-overlay: 300;
    --ih-z-modal: 400;
    --ih-z-toast: 500;
}


/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--ih-font-body);
    font-size: var(--ih-text-base);
    line-height: var(--ih-leading-normal);
    color: var(--ih-gray-300);
    background-color: var(--ih-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--ih-primary);
    text-decoration: none;
    transition: color var(--ih-transition-fast);
}

a:hover,
a:focus {
    color: var(--ih-primary-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ih-font-heading);
    color: var(--ih-white);
    line-height: var(--ih-leading-tight);
    margin-top: 0;
    font-weight: var(--ih-font-bold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 { font-size: var(--ih-text-hero); }
h2 { font-size: var(--ih-text-5xl); }
h3 { font-size: var(--ih-text-4xl); }
h4 { font-size: var(--ih-text-3xl); }
h5 { font-size: var(--ih-text-2xl); }
h6 { font-size: var(--ih-text-xl); }

p {
    margin-top: 0;
    margin-bottom: var(--ih-space-md);
}

::selection {
    background-color: var(--ih-primary);
    color: var(--ih-dark);
}


/* --------------------------------------------------------------------------
   3. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.ih-container {
    width: 100%;
    max-width: var(--ih-container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--ih-space-lg);
    padding-right: var(--ih-space-lg);
}

.ih-container--narrow {
    max-width: var(--ih-container-md);
}

.ih-container--wide {
    max-width: var(--ih-container-2xl);
}

.ih-section {
    padding-top: var(--ih-space-4xl);
    padding-bottom: var(--ih-space-4xl);
}

.ih-section--dark {
    background-color: var(--ih-darker);
}

.ih-section--slate {
    background-color: var(--ih-secondary);
}

.ih-section--primary {
    background-color: var(--ih-primary);
}

.ih-section--gradient {
    background: linear-gradient(135deg, var(--ih-dark) 0%, var(--ih-secondary) 100%);
}

.ih-grid {
    display: grid;
    gap: var(--ih-space-xl);
}

.ih-grid--2 { grid-template-columns: 1fr; }
.ih-grid--3 { grid-template-columns: 1fr; }
.ih-grid--4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
    .ih-grid--2 { grid-template-columns: repeat(2, 1fr); }
    .ih-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .ih-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .ih-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .ih-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.ih-flex {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ih-space-md);
}

.ih-flex--center {
    align-items: center;
    justify-content: center;
}

.ih-flex--between {
    justify-content: space-between;
    align-items: center;
}


/* --------------------------------------------------------------------------
   4. TOP BAR
   -------------------------------------------------------------------------- */
.ih-topbar {
    background-color: var(--ih-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--ih-space-sm) 0;
    font-size: var(--ih-text-sm);
    color: var(--ih-gray-400);
}

.ih-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--ih-space-sm);
}

.ih-topbar__left {
    display: flex;
    align-items: center;
    gap: var(--ih-space-lg);
    flex-wrap: wrap;
}

.ih-topbar__right {
    display: flex;
    align-items: center;
    gap: var(--ih-space-md);
}

.ih-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: var(--ih-space-xs);
    color: var(--ih-gray-400);
    transition: color var(--ih-transition-fast);
}

.ih-topbar__item:hover {
    color: var(--ih-primary);
}

.ih-topbar__item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

.ih-topbar__social {
    display: flex;
    gap: var(--ih-space-sm);
}

.ih-topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--ih-radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--ih-gray-400);
    transition: all var(--ih-transition-fast);
}

.ih-topbar__social a:hover {
    background-color: var(--ih-primary);
    color: var(--ih-white);
}

.ih-topbar__social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

@media (max-width: 767px) {
    .ih-topbar {
        display: none;
    }
}


/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.ih-header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: var(--ih-z-sticky);
    transition: all var(--ih-transition-base);
    border-bottom: 2px solid transparent;
}

.ih-header--scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    border-bottom-color: var(--ih-primary);
}

.ih-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ih-space-md) 0;
    min-height: 80px;
}

.ih-header__logo img,
.ih-logo__img {
    height: 50px;
    width: auto;
    display: block;
}

.ih-footer .ih-logo__img {
    height: 65px;
}

.ih-header__logo-text {
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-2xl);
    font-weight: var(--ih-font-black);
    color: var(--ih-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.ih-header__logo-text span {
    color: var(--ih-primary);
}

.ih-nav {
    display: none;
}

.ih-nav__list {
    display: flex;
    align-items: center;
    gap: var(--ih-space-xs);
    list-style: none;
    margin: 0;
    padding: 0;
}

.ih-nav__link {
    display: block;
    padding: var(--ih-space-sm) var(--ih-space-md);
    color: var(--ih-gray-300);
    font-family: var(--ih-font-body);
    font-size: var(--ih-text-sm);
    font-weight: var(--ih-font-semibold);
    text-transform: uppercase;
    border-radius: var(--ih-radius-sm);
    transition: all var(--ih-transition-fast);
    position: relative;
}

.ih-nav__link:hover,
.ih-nav__link--active {
    color: var(--ih-primary);
    background-color: rgba(var(--ih-primary-rgb), 0.1);
}

.ih-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background-color: var(--ih-primary);
    transition: transform var(--ih-transition-fast);
}

.ih-nav__link:hover::after,
.ih-nav__link--active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown */
.ih-nav__item--has-children {
    position: relative;
}

.ih-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: var(--ih-secondary);
    border-top: 3px solid var(--ih-primary);
    border-radius: 0 0 var(--ih-radius-md) var(--ih-radius-md);
    box-shadow: var(--ih-shadow-xl);
    padding: var(--ih-space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--ih-transition-fast);
    list-style: none;
}

.ih-nav__item--has-children:hover .ih-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ih-nav__dropdown a {
    display: block;
    padding: var(--ih-space-sm) var(--ih-space-lg);
    color: var(--ih-gray-300);
    font-size: var(--ih-text-sm);
    transition: all var(--ih-transition-fast);
}

.ih-nav__dropdown a:hover {
    color: var(--ih-white);
    background-color: rgba(var(--ih-primary-rgb), 0.1);
    padding-left: calc(var(--ih-space-lg) + 4px);
}

.ih-header__actions {
    display: flex;
    align-items: center;
    gap: var(--ih-space-md);
}

.ih-header__phone {
    display: none;
    align-items: center;
    gap: var(--ih-space-xs);
    color: var(--ih-white);
    font-weight: var(--ih-font-bold);
    font-size: var(--ih-text-sm);
}

.ih-header__phone svg {
    width: 18px;
    height: 18px;
    fill: var(--ih-primary);
}

/* Mobile Menu Toggle */
.ih-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ih-radius-sm);
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: all var(--ih-transition-fast);
}

.ih-menu-toggle:hover {
    border-color: var(--ih-primary);
}

.ih-menu-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--ih-white);
    transition: all var(--ih-transition-base);
    border-radius: 2px;
}

.ih-menu-toggle--active .ih-menu-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ih-menu-toggle--active .ih-menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.ih-menu-toggle--active .ih-menu-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.ih-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--ih-dark);
    z-index: var(--ih-z-overlay);
    padding: var(--ih-space-3xl) var(--ih-space-xl);
    transition: right var(--ih-transition-base);
    overflow-y: auto;
    border-left: 2px solid var(--ih-primary);
}

.ih-mobile-menu--open {
    right: 0;
}

.ih-mobile-menu__close {
    position: absolute;
    top: var(--ih-space-md);
    right: var(--ih-space-md);
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ih-radius-sm);
    color: var(--ih-white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ih-mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ih-mobile-menu__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ih-mobile-menu__list a {
    display: block;
    padding: var(--ih-space-md) 0;
    color: var(--ih-gray-300);
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ih-mobile-menu__list a:hover {
    color: var(--ih-primary);
}

.ih-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: calc(var(--ih-z-overlay) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--ih-transition-base);
}

.ih-mobile-overlay--visible {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1024px) {
    .ih-nav {
        display: block;
    }

    .ih-menu-toggle {
        display: none;
    }

    .ih-header__phone {
        display: flex;
    }
}


/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.ih-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ih-space-sm);
    padding: 14px 32px;
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-base);
    font-weight: var(--ih-font-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--ih-radius-sm);
    cursor: pointer;
    transition: all var(--ih-transition-fast);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.ih-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform var(--ih-transition-fast);
}

.ih-btn:hover svg {
    transform: translateX(3px);
}

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

.ih-btn--primary:hover {
    background-color: var(--ih-primary-dark);
    border-color: var(--ih-primary-dark);
    color: var(--ih-white);
    transform: translateY(-2px);
}

.ih-btn--secondary {
    background-color: transparent;
    color: var(--ih-white);
    border-color: var(--ih-white);
}

.ih-btn--secondary:hover {
    background-color: var(--ih-white);
    color: var(--ih-dark);
}

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

.ih-btn--outline:hover {
    background-color: var(--ih-primary);
    color: var(--ih-white);
}

.ih-btn--dark {
    background-color: var(--ih-dark);
    color: var(--ih-white);
    border-color: var(--ih-dark);
}

.ih-btn--dark:hover {
    background-color: var(--ih-secondary);
    border-color: var(--ih-primary);
}

.ih-btn--sm {
    padding: 10px 20px;
    font-size: var(--ih-text-sm);
}

.ih-btn--lg {
    padding: 18px 40px;
    font-size: var(--ih-text-lg);
}

.ih-btn--full {
    width: 100%;
}

.ih-btn--cta {
    background-color: var(--ih-primary);
    color: var(--ih-white);
    border: none;
    padding: 18px 40px;
    font-size: var(--ih-text-lg);
}

.ih-btn--cta:hover {
    background-color: var(--ih-primary-dark);
    color: var(--ih-white);
    transform: translateY(-2px);
}


/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */
.ih-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--ih-darker);
    background-image: url('assets/images/photos/hero-skidsteer-snow.jpg');
    background-size: cover;
    background-position: center;
}

.ih-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #3A3A3A 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.ih-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ih-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ih-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 5, 5, 0.92) 0%,
        rgba(10, 10, 10, 0.8) 50%,
        rgba(5, 5, 5, 0.85) 100%
    );
    z-index: 2;
}

.ih-hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: var(--ih-space-4xl) 0;
}

.ih-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--ih-space-sm);
    background: rgba(var(--ih-primary-rgb), 0.15);
    border: 1px solid rgba(var(--ih-primary-rgb), 0.3);
    border-radius: var(--ih-radius-full);
    padding: var(--ih-space-xs) var(--ih-space-lg);
    font-size: var(--ih-text-sm);
    color: var(--ih-primary-light);
    font-weight: var(--ih-font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--ih-space-xl);
}

.ih-hero__title {
    font-size: var(--ih-text-hero);
    color: var(--ih-white);
    margin-bottom: var(--ih-space-lg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ih-hero__title span {
    color: var(--ih-primary);
}

.ih-hero__subtitle {
    font-size: var(--ih-text-xl);
    color: var(--ih-gray-300);
    line-height: var(--ih-leading-relaxed);
    margin-bottom: var(--ih-space-2xl);
    max-width: 600px;
}

.ih-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ih-space-md);
    margin-bottom: var(--ih-space-2xl);
}

.ih-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ih-space-xl);
}

.ih-hero__feature {
    display: flex;
    align-items: center;
    gap: var(--ih-space-sm);
    color: var(--ih-gray-400);
    font-size: var(--ih-text-sm);
}

.ih-hero__feature svg {
    width: 20px;
    height: 20px;
    fill: var(--ih-primary);
    flex-shrink: 0;
}

/* Decorative stripe */
.ih-hero__stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--ih-primary) 0,
        var(--ih-primary) 30px,
        var(--ih-dark) 30px,
        var(--ih-dark) 60px
    );
    z-index: 4;
}


/* --------------------------------------------------------------------------
   8. TRUST BAR / STATS
   -------------------------------------------------------------------------- */
.ih-trustbar {
    background-color: var(--ih-secondary);
    border-top: 3px solid var(--ih-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--ih-space-2xl) 0;
}

.ih-trustbar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ih-space-xl);
    text-align: center;
}

@media (min-width: 768px) {
    .ih-trustbar__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ih-trustbar__item {
    position: relative;
}

.ih-trustbar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .ih-trustbar__item:not(:last-child)::after {
        display: block;
    }
}

.ih-trustbar__number {
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-5xl);
    font-weight: var(--ih-font-black);
    color: var(--ih-primary);
    line-height: 1;
    margin-bottom: var(--ih-space-xs);
}

.ih-trustbar__label {
    font-size: var(--ih-text-sm);
    color: var(--ih-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--ih-font-semibold);
}


/* --------------------------------------------------------------------------
   9. SECTION HEADERS
   -------------------------------------------------------------------------- */
.ih-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--ih-space-3xl);
}

.ih-section-header--left {
    text-align: left;
    margin-left: 0;
}

.ih-section-header__label {
    display: inline-block;
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-sm);
    font-weight: var(--ih-font-bold);
    color: var(--ih-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--ih-space-sm);
    position: relative;
    padding-left: 40px;
}

.ih-section-header__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--ih-primary);
}

.ih-section-header--center .ih-section-header__label {
    padding-left: 0;
}

.ih-section-header--center .ih-section-header__label::before {
    display: none;
}

.ih-section-header__title {
    margin-bottom: var(--ih-space-md);
}

.ih-section-header__title span {
    color: var(--ih-primary);
}

.ih-section-header__divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--ih-primary), var(--ih-primary-light));
    border: none;
    border-radius: 2px;
    margin: var(--ih-space-md) auto;
}

.ih-section-header--left .ih-section-header__divider {
    margin-left: 0;
}

.ih-section-header__description {
    font-size: var(--ih-text-lg);
    color: var(--ih-gray-400);
    line-height: var(--ih-leading-relaxed);
}


/* --------------------------------------------------------------------------
   10. SERVICE CARDS
   -------------------------------------------------------------------------- */
.ih-service-card {
    background-color: var(--ih-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--ih-radius-lg);
    text-align: center;
    transition: all var(--ih-transition-base);
    position: relative;
    overflow: hidden;
}

.ih-service-card__photo {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.ih-service-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ih-transition-base);
}

.ih-service-card:hover .ih-service-card__photo img {
    transform: scale(1.05);
}

.ih-service-card__body {
    padding: var(--ih-space-xl) var(--ih-space-xl) var(--ih-space-2xl);
}

.ih-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ih-primary);
    transform: scaleX(0);
    transition: transform var(--ih-transition-base);
}

.ih-service-card:hover {
    border-color: rgba(var(--ih-primary-rgb), 0.3);
    box-shadow: var(--ih-shadow-xl), 0 0 30px rgba(var(--ih-primary-rgb), 0.1);
}

.ih-service-card:hover::before {
    transform: scaleX(1);
}

.ih-service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: var(--ih-radius-lg);
    background: linear-gradient(135deg, rgba(var(--ih-primary-rgb), 0.15), rgba(var(--ih-primary-rgb), 0.05));
    margin-bottom: var(--ih-space-lg);
    transition: all var(--ih-transition-base);
}

.ih-service-card:hover .ih-service-card__icon {
    background: linear-gradient(135deg, var(--ih-primary), var(--ih-primary-dark));
    box-shadow: var(--ih-shadow-glow);
}

.ih-service-card__icon svg {
    width: 36px;
    height: 36px;
    fill: var(--ih-primary);
    transition: fill var(--ih-transition-fast);
}

.ih-service-card:hover .ih-service-card__icon svg {
    fill: var(--ih-white);
}

.ih-service-card__title {
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-xl);
    color: var(--ih-white);
    margin-bottom: var(--ih-space-sm);
    text-transform: uppercase;
}

.ih-service-card__text {
    font-size: var(--ih-text-sm);
    color: var(--ih-gray-400);
    margin-bottom: var(--ih-space-lg);
    line-height: var(--ih-leading-relaxed);
}

.ih-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--ih-space-xs);
    font-size: var(--ih-text-sm);
    font-weight: var(--ih-font-bold);
    color: var(--ih-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ih-service-card__link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform var(--ih-transition-fast);
}

.ih-service-card__link:hover svg {
    transform: translateX(4px);
}


/* --------------------------------------------------------------------------
   11. WHY CHOOSE US / FEATURE BOXES
   -------------------------------------------------------------------------- */
.ih-feature {
    display: flex;
    gap: var(--ih-space-lg);
    padding: var(--ih-space-xl);
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--ih-radius-lg);
    transition: all var(--ih-transition-base);
}

.ih-feature:hover {
    background-color: rgba(var(--ih-primary-rgb), 0.05);
    border-color: rgba(var(--ih-primary-rgb), 0.2);
}

.ih-feature__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ih-radius-md);
    background: rgba(var(--ih-primary-rgb), 0.1);
}

.ih-feature__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--ih-primary);
}

.ih-feature__title {
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-lg);
    color: var(--ih-white);
    margin-bottom: var(--ih-space-xs);
    text-transform: uppercase;
}

.ih-feature__text {
    font-size: var(--ih-text-sm);
    color: var(--ih-gray-400);
    line-height: var(--ih-leading-relaxed);
    margin: 0;
}


/* --------------------------------------------------------------------------
   12. TESTIMONIAL CARDS
   -------------------------------------------------------------------------- */
.ih-testimonial {
    background-color: var(--ih-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--ih-radius-lg);
    padding: var(--ih-space-2xl);
    position: relative;
}

.ih-testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--ih-space-md);
}

.ih-testimonial__star {
    width: 20px;
    height: 20px;
    fill: var(--ih-primary);
}

.ih-testimonial__quote {
    font-size: var(--ih-text-lg);
    color: var(--ih-gray-300);
    line-height: var(--ih-leading-relaxed);
    font-style: italic;
    margin-bottom: var(--ih-space-xl);
    position: relative;
    padding-left: var(--ih-space-lg);
    border-left: 3px solid var(--ih-primary);
}

.ih-testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--ih-space-md);
}

.ih-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--ih-radius-full);
    background-color: var(--ih-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-lg);
    color: var(--ih-primary);
    font-weight: var(--ih-font-bold);
}

.ih-testimonial__name {
    font-weight: var(--ih-font-bold);
    color: var(--ih-white);
    font-size: var(--ih-text-base);
}

.ih-testimonial__role {
    font-size: var(--ih-text-sm);
    color: var(--ih-gray-500);
}


/* --------------------------------------------------------------------------
   13. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.ih-faq__item {
    background-color: var(--ih-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--ih-radius-md);
    margin-bottom: var(--ih-space-md);
    overflow: hidden;
    transition: border-color var(--ih-transition-fast);
}

.ih-faq__item--active {
    border-color: rgba(var(--ih-primary-rgb), 0.3);
}

.ih-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--ih-space-lg) var(--ih-space-xl);
    background: none;
    border: none;
    color: var(--ih-white);
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-lg);
    text-align: left;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color var(--ih-transition-fast);
}

.ih-faq__question:hover {
    color: var(--ih-primary);
}

.ih-faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--ih-transition-base);
    fill: var(--ih-primary);
}

.ih-faq__item--active .ih-faq__icon {
    transform: rotate(180deg);
}

.ih-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ih-transition-base), padding var(--ih-transition-base);
}

.ih-faq__item--active .ih-faq__answer {
    max-height: 500px;
}

.ih-faq__answer-inner {
    padding: 0 var(--ih-space-xl) var(--ih-space-xl);
    color: var(--ih-gray-400);
    line-height: var(--ih-leading-relaxed);
}


/* --------------------------------------------------------------------------
   14. GALLERY / PROJECT GRID
   -------------------------------------------------------------------------- */
.ih-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ih-space-md);
}

@media (min-width: 768px) {
    .ih-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .ih-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ih-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--ih-radius-md);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.ih-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ih-transition-slow);
}

.ih-gallery__item:hover img {
    transform: scale(1.1);
}

.ih-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity var(--ih-transition-base);
    display: flex;
    align-items: flex-end;
    padding: var(--ih-space-lg);
}

.ih-gallery__item:hover .ih-gallery__overlay {
    opacity: 1;
}

.ih-gallery__caption {
    color: var(--ih-white);
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-base);
    text-transform: uppercase;
}

/* Before / After Slider */
.ih-before-after {
    position: relative;
    overflow: hidden;
    border-radius: var(--ih-radius-lg);
    aspect-ratio: 16 / 9;
    cursor: col-resize;
}

.ih-before-after__before,
.ih-before-after__after {
    position: absolute;
    inset: 0;
}

.ih-before-after__before img,
.ih-before-after__after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ih-before-after__before {
    clip-path: inset(0 50% 0 0);
}

.ih-before-after__slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--ih-primary);
    z-index: 5;
    cursor: col-resize;
}

.ih-before-after__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: var(--ih-radius-full);
    background-color: var(--ih-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ih-shadow-lg);
}

.ih-before-after__handle svg {
    width: 24px;
    height: 24px;
    fill: var(--ih-white);
}

.ih-before-after__label {
    position: absolute;
    top: var(--ih-space-md);
    padding: var(--ih-space-xs) var(--ih-space-md);
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--ih-white);
    font-size: var(--ih-text-sm);
    font-weight: var(--ih-font-bold);
    text-transform: uppercase;
    border-radius: var(--ih-radius-sm);
    z-index: 6;
}

.ih-before-after__label--before {
    left: var(--ih-space-md);
}

.ih-before-after__label--after {
    right: var(--ih-space-md);
}


/* --------------------------------------------------------------------------
   15. FORMS
   -------------------------------------------------------------------------- */
.ih-form {
    max-width: 600px;
}

.ih-form--wide {
    max-width: 100%;
}

.ih-form__row {
    display: grid;
    gap: var(--ih-space-md);
    margin-bottom: var(--ih-space-md);
}

@media (min-width: 640px) {
    .ih-form__row--2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ih-form__group {
    margin-bottom: var(--ih-space-md);
}

.ih-form__label {
    display: block;
    margin-bottom: var(--ih-space-xs);
    font-size: var(--ih-text-sm);
    font-weight: var(--ih-font-semibold);
    color: var(--ih-gray-300);
}

.ih-form__label--required::after {
    content: ' *';
    color: var(--ih-error);
}

.ih-form__input,
.ih-form__select,
.ih-form__textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--ih-font-body);
    font-size: var(--ih-text-base);
    color: var(--ih-white);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ih-radius-md);
    transition: all var(--ih-transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

.ih-form__input:focus,
.ih-form__select:focus,
.ih-form__textarea:focus {
    outline: none;
    border-color: var(--ih-primary);
    box-shadow: 0 0 0 3px rgba(var(--ih-primary-rgb), 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.ih-form__input::placeholder,
.ih-form__textarea::placeholder {
    color: var(--ih-gray-600);
}

.ih-form__textarea {
    min-height: 140px;
    resize: vertical;
}

.ih-form__select {
    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 d='M6 8L1 3h10z' fill='%2394A3B8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.ih-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--ih-space-sm);
    cursor: pointer;
}

.ih-form__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--ih-primary);
}

.ih-form__success {
    padding: var(--ih-space-lg);
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--ih-radius-md);
    color: var(--ih-success);
    display: none;
}

.ih-form__error {
    padding: var(--ih-space-lg);
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--ih-radius-md);
    color: var(--ih-error);
    display: none;
}


/* --------------------------------------------------------------------------
   16. SERVICE AREAS / MAP
   -------------------------------------------------------------------------- */
.ih-service-areas {
    display: grid;
    gap: var(--ih-space-2xl);
}

@media (min-width: 768px) {
    .ih-service-areas {
        grid-template-columns: 1fr 1fr;
    }
}

.ih-service-areas__map {
    border-radius: var(--ih-radius-lg);
    overflow: hidden;
    min-height: 350px;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.ih-service-areas__map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

.ih-service-areas__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ih-service-areas__item {
    display: flex;
    align-items: center;
    gap: var(--ih-space-md);
    padding: var(--ih-space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--ih-gray-300);
    font-size: var(--ih-text-lg);
}

.ih-service-areas__item svg {
    width: 20px;
    height: 20px;
    fill: var(--ih-primary);
    flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   17. BLOG CARDS
   -------------------------------------------------------------------------- */
.ih-post-card {
    background-color: var(--ih-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--ih-radius-lg);
    overflow: hidden;
    transition: all var(--ih-transition-base);
}

.ih-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ih-shadow-xl);
    border-color: rgba(var(--ih-primary-rgb), 0.2);
}

.ih-post-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.ih-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ih-transition-slow);
}

.ih-post-card:hover .ih-post-card__image img {
    transform: scale(1.05);
}

.ih-post-card__content {
    padding: var(--ih-space-xl);
}

.ih-post-card__meta {
    display: flex;
    align-items: center;
    gap: var(--ih-space-md);
    font-size: var(--ih-text-sm);
    color: var(--ih-gray-500);
    margin-bottom: var(--ih-space-sm);
}

.ih-post-card__category {
    color: var(--ih-primary);
    font-weight: var(--ih-font-bold);
    text-transform: uppercase;
    font-size: var(--ih-text-xs);
    letter-spacing: 0.1em;
}

.ih-post-card__title {
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-xl);
    color: var(--ih-white);
    margin-bottom: var(--ih-space-sm);
    text-transform: uppercase;
    transition: color var(--ih-transition-fast);
}

.ih-post-card__title a {
    color: inherit;
}

.ih-post-card__title a:hover {
    color: var(--ih-primary);
}

.ih-post-card__excerpt {
    font-size: var(--ih-text-sm);
    color: var(--ih-gray-400);
    line-height: var(--ih-leading-relaxed);
    margin-bottom: var(--ih-space-md);
}

.ih-post-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: var(--ih-space-xs);
    font-size: var(--ih-text-sm);
    font-weight: var(--ih-font-bold);
    color: var(--ih-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ih-post-card__readmore svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform var(--ih-transition-fast);
}

.ih-post-card__readmore:hover svg {
    transform: translateX(4px);
}


/* --------------------------------------------------------------------------
   18. CTA SECTIONS
   -------------------------------------------------------------------------- */
.ih-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ih-primary-dark) 0%, var(--ih-primary) 100%);
    padding: var(--ih-space-4xl) 0;
    text-align: center;
}

.ih-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23000' stroke-opacity='.05' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.ih-cta__content {
    position: relative;
    z-index: 2;
}

.ih-cta__title {
    color: var(--ih-white);
    margin-bottom: var(--ih-space-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ih-cta__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--ih-text-xl);
    margin-bottom: var(--ih-space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ih-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--ih-space-md);
}


/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.ih-footer {
    background-color: var(--ih-darker);
    border-top: 3px solid var(--ih-primary);
}

.ih-footer__main {
    padding: var(--ih-space-4xl) 0;
}

.ih-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ih-space-2xl);
}

@media (min-width: 640px) {
    .ih-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ih-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.ih-footer__heading {
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-lg);
    color: var(--ih-white);
    margin-bottom: var(--ih-space-lg);
    padding-bottom: var(--ih-space-sm);
    border-bottom: 2px solid var(--ih-primary);
    display: inline-block;
    text-transform: uppercase;
}

.ih-footer__about p {
    color: var(--ih-gray-400);
    font-size: var(--ih-text-sm);
    line-height: var(--ih-leading-relaxed);
    margin-bottom: var(--ih-space-lg);
}

.ih-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ih-footer__links li {
    margin-bottom: var(--ih-space-sm);
}

.ih-footer__links a {
    color: var(--ih-gray-400);
    font-size: var(--ih-text-sm);
    transition: all var(--ih-transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--ih-space-xs);
}

.ih-footer__links a:hover {
    color: var(--ih-primary);
    padding-left: 4px;
}

.ih-footer__links a::before {
    content: '\203A';
    color: var(--ih-primary);
    font-weight: var(--ih-font-bold);
}

.ih-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--ih-space-md);
    margin-bottom: var(--ih-space-md);
    color: var(--ih-gray-400);
    font-size: var(--ih-text-sm);
}

.ih-footer__contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--ih-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.ih-footer__contact-item a {
    color: var(--ih-gray-400);
}

.ih-footer__contact-item a:hover {
    color: var(--ih-primary);
}

.ih-footer__social {
    display: flex;
    gap: var(--ih-space-sm);
    margin-top: var(--ih-space-lg);
}

.ih-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--ih-radius-md);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--ih-gray-400);
    transition: all var(--ih-transition-fast);
}

.ih-footer__social a:hover {
    background-color: var(--ih-primary);
    color: var(--ih-white);
    transform: translateY(-3px);
}

.ih-footer__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Newsletter */
.ih-newsletter {
    margin-top: var(--ih-space-lg);
}

.ih-newsletter__form {
    display: flex;
    gap: var(--ih-space-sm);
}

.ih-newsletter__input {
    flex: 1;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ih-radius-md);
    color: var(--ih-white);
    font-size: var(--ih-text-sm);
}

.ih-newsletter__input:focus {
    outline: none;
    border-color: var(--ih-primary);
}

.ih-newsletter__btn {
    padding: 12px 20px;
    background-color: var(--ih-primary);
    border: none;
    border-radius: var(--ih-radius-md);
    color: var(--ih-white);
    font-weight: var(--ih-font-bold);
    cursor: pointer;
    transition: background-color var(--ih-transition-fast);
    white-space: nowrap;
}

.ih-newsletter__btn:hover {
    background-color: var(--ih-primary-dark);
}

/* Footer Bottom */
.ih-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--ih-space-lg) 0;
}

.ih-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--ih-space-md);
}

.ih-footer__copyright {
    font-size: var(--ih-text-sm);
    color: var(--ih-gray-500);
}

.ih-footer__legal {
    display: flex;
    gap: var(--ih-space-lg);
    list-style: none;
    padding: 0;
    margin: 0;
}

.ih-footer__legal a {
    font-size: var(--ih-text-sm);
    color: var(--ih-gray-500);
}

.ih-footer__legal a:hover {
    color: var(--ih-primary);
}

/* Footer Map */
.ih-footer__map {
    margin-top: var(--ih-space-md);
    border-radius: var(--ih-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ih-footer__map iframe {
    width: 100%;
    height: 200px;
    border: none;
}


/* --------------------------------------------------------------------------
   20. BACK TO TOP
   -------------------------------------------------------------------------- */
.ih-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--ih-radius-md);
    background-color: var(--ih-primary);
    color: var(--ih-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--ih-z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--ih-transition-base);
    box-shadow: var(--ih-shadow-lg);
}

.ih-back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ih-back-to-top:hover {
    background-color: var(--ih-primary-dark);
    transform: translateY(-3px);
}

.ih-back-to-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}


/* --------------------------------------------------------------------------
   21. SINGLE POST
   -------------------------------------------------------------------------- */
.ih-single {
    padding: var(--ih-space-4xl) 0;
}

.ih-single__layout {
    display: grid;
    gap: var(--ih-space-3xl);
}

@media (min-width: 1024px) {
    .ih-single__layout {
        grid-template-columns: 1fr 340px;
    }
}

.ih-single__content h2,
.ih-single__content h3,
.ih-single__content h4 {
    margin-top: var(--ih-space-2xl);
    margin-bottom: var(--ih-space-md);
}

.ih-single__content p {
    color: var(--ih-gray-300);
    line-height: var(--ih-leading-relaxed);
    margin-bottom: var(--ih-space-lg);
}

.ih-single__content ul,
.ih-single__content ol {
    color: var(--ih-gray-300);
    margin-bottom: var(--ih-space-lg);
    padding-left: var(--ih-space-xl);
}

.ih-single__content li {
    margin-bottom: var(--ih-space-sm);
}

.ih-single__content img {
    border-radius: var(--ih-radius-lg);
    margin: var(--ih-space-xl) 0;
}

.ih-single__content blockquote {
    border-left: 4px solid var(--ih-primary);
    padding: var(--ih-space-lg) var(--ih-space-xl);
    margin: var(--ih-space-xl) 0;
    background-color: rgba(var(--ih-primary-rgb), 0.05);
    border-radius: 0 var(--ih-radius-md) var(--ih-radius-md) 0;
    font-style: italic;
    color: var(--ih-gray-300);
}

/* Author Bio */
.ih-author-bio {
    display: flex;
    gap: var(--ih-space-xl);
    padding: var(--ih-space-xl);
    background-color: var(--ih-secondary);
    border-radius: var(--ih-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: var(--ih-space-3xl);
}

.ih-author-bio__avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--ih-radius-full);
    flex-shrink: 0;
}

.ih-author-bio__name {
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-xl);
    color: var(--ih-white);
    margin-bottom: var(--ih-space-xs);
}

.ih-author-bio__text {
    font-size: var(--ih-text-sm);
    color: var(--ih-gray-400);
    line-height: var(--ih-leading-relaxed);
}

/* Sidebar */
.ih-sidebar__widget {
    background-color: var(--ih-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--ih-radius-lg);
    padding: var(--ih-space-xl);
    margin-bottom: var(--ih-space-xl);
}

.ih-sidebar__widget-title {
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-lg);
    color: var(--ih-white);
    text-transform: uppercase;
    margin-bottom: var(--ih-space-lg);
    padding-bottom: var(--ih-space-sm);
    border-bottom: 2px solid var(--ih-primary);
}


/* --------------------------------------------------------------------------
   22. ARCHIVE / BLOG LISTING
   -------------------------------------------------------------------------- */
.ih-archive-header {
    padding: var(--ih-space-3xl) 0;
    background-color: var(--ih-secondary);
    border-bottom: 3px solid var(--ih-primary);
    text-align: center;
}

.ih-archive-header__title {
    margin-bottom: var(--ih-space-sm);
}

.ih-archive-header__description {
    color: var(--ih-gray-400);
    font-size: var(--ih-text-lg);
}

.ih-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--ih-space-sm);
    padding: var(--ih-space-3xl) 0;
}

.ih-pagination a,
.ih-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--ih-space-md);
    border-radius: var(--ih-radius-md);
    font-weight: var(--ih-font-semibold);
    font-size: var(--ih-text-sm);
    transition: all var(--ih-transition-fast);
}

.ih-pagination a {
    background-color: var(--ih-secondary);
    color: var(--ih-gray-300);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ih-pagination a:hover {
    background-color: var(--ih-primary);
    color: var(--ih-white);
    border-color: var(--ih-primary);
}

.ih-pagination .current {
    background-color: var(--ih-primary);
    color: var(--ih-white);
}


/* --------------------------------------------------------------------------
   23. 404 PAGE
   -------------------------------------------------------------------------- */
.ih-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--ih-space-4xl) 0;
}

.ih-404__code {
    font-family: var(--ih-font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: var(--ih-font-black);
    color: var(--ih-primary);
    line-height: 1;
    margin-bottom: var(--ih-space-md);
    text-shadow: 0 0 40px rgba(var(--ih-primary-rgb), 0.3);
}

.ih-404__title {
    margin-bottom: var(--ih-space-md);
}

.ih-404__text {
    color: var(--ih-gray-400);
    font-size: var(--ih-text-lg);
    margin-bottom: var(--ih-space-2xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* --------------------------------------------------------------------------
   24. SEARCH FORM
   -------------------------------------------------------------------------- */
.ih-search-form {
    position: relative;
    max-width: 500px;
}

.ih-search-form__input {
    width: 100%;
    padding: 14px 50px 14px 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ih-radius-md);
    color: var(--ih-white);
    font-size: var(--ih-text-base);
    font-family: var(--ih-font-body);
}

.ih-search-form__input:focus {
    outline: none;
    border-color: var(--ih-primary);
    box-shadow: 0 0 0 3px rgba(var(--ih-primary-rgb), 0.2);
}

.ih-search-form__btn {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--ih-primary);
    border: none;
    border-radius: var(--ih-radius-sm);
    color: var(--ih-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--ih-transition-fast);
}

.ih-search-form__btn:hover {
    background-color: var(--ih-primary-dark);
}

.ih-search-form__btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}


/* --------------------------------------------------------------------------
   25. BREADCRUMBS
   -------------------------------------------------------------------------- */
.ih-breadcrumbs {
    padding: var(--ih-space-md) 0;
    font-size: var(--ih-text-sm);
    color: var(--ih-gray-500);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ih-breadcrumbs a {
    color: var(--ih-gray-400);
}

.ih-breadcrumbs a:hover {
    color: var(--ih-primary);
}

.ih-breadcrumbs__separator {
    margin: 0 var(--ih-space-sm);
    color: var(--ih-gray-600);
}

.ih-breadcrumbs__current {
    color: var(--ih-primary);
}


/* --------------------------------------------------------------------------
   26. PAGE HEADER (Inner Pages)
   -------------------------------------------------------------------------- */
.ih-page-header {
    padding: var(--ih-space-3xl) 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(26,26,26,0.85) 100%), url('assets/images/photos/snow-plow-truck-day.jpg') center/cover no-repeat;
    border-bottom: 3px solid var(--ih-primary);
    text-align: center;
}

.ih-page-header__title {
    margin-bottom: var(--ih-space-sm);
}

.ih-page-header__subtitle {
    color: var(--ih-gray-400);
    font-size: var(--ih-text-lg);
}


/* --------------------------------------------------------------------------
   27. ABOUT SPLIT SECTION
   -------------------------------------------------------------------------- */
.ih-about-split {
    display: grid;
    gap: var(--ih-space-3xl);
    align-items: center;
}

@media (min-width: 768px) {
    .ih-about-split {
        grid-template-columns: 1fr 1fr;
    }
}

.ih-about-split__image {
    border-radius: var(--ih-radius-lg);
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(var(--ih-primary-rgb), 0.2);
}

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

.ih-about-split__badge {
    position: absolute;
    bottom: var(--ih-space-xl);
    right: var(--ih-space-xl);
    background-color: var(--ih-primary);
    color: var(--ih-white);
    padding: var(--ih-space-lg);
    border-radius: var(--ih-radius-md);
    text-align: center;
    box-shadow: var(--ih-shadow-xl);
}

.ih-about-split__badge-number {
    font-family: var(--ih-font-heading);
    font-size: var(--ih-text-4xl);
    font-weight: var(--ih-font-black);
    line-height: 1;
    display: block;
}

.ih-about-split__badge-label {
    font-size: var(--ih-text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* --------------------------------------------------------------------------
   28. UTILITY CLASSES
   -------------------------------------------------------------------------- */

/* Text Alignment */
.ih-text-left { text-align: left; }
.ih-text-center { text-align: center; }
.ih-text-right { text-align: right; }

/* Text Colors */
.ih-text-primary { color: var(--ih-primary); }
.ih-text-white { color: var(--ih-white); }
.ih-text-light { color: var(--ih-gray-300); }
.ih-text-muted { color: var(--ih-gray-500); }

/* Background Colors */
.ih-bg-dark { background-color: var(--ih-dark); }
.ih-bg-darker { background-color: var(--ih-darker); }
.ih-bg-slate { background-color: var(--ih-secondary); }
.ih-bg-primary { background-color: var(--ih-primary); }

/* Spacing Utilities */
.ih-mt-0 { margin-top: 0; }
.ih-mt-1 { margin-top: var(--ih-space-sm); }
.ih-mt-2 { margin-top: var(--ih-space-md); }
.ih-mt-3 { margin-top: var(--ih-space-lg); }
.ih-mt-4 { margin-top: var(--ih-space-xl); }
.ih-mt-5 { margin-top: var(--ih-space-2xl); }

.ih-mb-0 { margin-bottom: 0; }
.ih-mb-1 { margin-bottom: var(--ih-space-sm); }
.ih-mb-2 { margin-bottom: var(--ih-space-md); }
.ih-mb-3 { margin-bottom: var(--ih-space-lg); }
.ih-mb-4 { margin-bottom: var(--ih-space-xl); }
.ih-mb-5 { margin-bottom: var(--ih-space-2xl); }

.ih-pt-0 { padding-top: 0; }
.ih-pt-section { padding-top: var(--ih-space-4xl); }
.ih-pb-0 { padding-bottom: 0; }
.ih-pb-section { padding-bottom: var(--ih-space-4xl); }

/* Display */
.ih-hidden { display: none; }
.ih-block { display: block; }
.ih-inline-block { display: inline-block; }
.ih-flex-center { display: flex; align-items: center; justify-content: center; }

/* Width */
.ih-w-full { width: 100%; }
.ih-max-w-narrow { max-width: var(--ih-container-md); margin-left: auto; margin-right: auto; }

/* Responsive Visibility */
@media (max-width: 639px) {
    .ih-hide-mobile { display: none !important; }
}
@media (min-width: 640px) and (max-width: 1023px) {
    .ih-hide-tablet { display: none !important; }
}
@media (min-width: 1024px) {
    .ih-hide-desktop { display: none !important; }
}
@media (max-width: 1023px) {
    .ih-hide-below-lg { display: none !important; }
}

/* Screen Reader Only */
.ih-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Dividers */
.ih-divider {
    width: 60px;
    height: 4px;
    background: var(--ih-primary);
    border: none;
    border-radius: 2px;
}

.ih-divider--center {
    margin: var(--ih-space-md) auto;
}

/* Animations */
@keyframes ih-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ih-slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes ih-slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes ih-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ih-animate-fade {
    animation: ih-fadeIn 0.6s ease forwards;
}

.ih-animate-slide-left {
    animation: ih-slideInLeft 0.6s ease forwards;
}

.ih-animate-slide-right {
    animation: ih-slideInRight 0.6s ease forwards;
}


/* --------------------------------------------------------------------------
   29. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
    body {
        background: #fff;
        color: #000;
    }

    .ih-topbar,
    .ih-header,
    .ih-footer,
    .ih-back-to-top,
    .ih-mobile-menu,
    .ih-mobile-overlay {
        display: none !important;
    }

    .ih-section {
        padding: 20px 0;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}


/* --------------------------------------------------------------------------
   30. MOBILE STICKY CTA BAR
   -------------------------------------------------------------------------- */
.ih-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    background: var(--ih-dark);
    border-top: 2px solid var(--ih-primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.ih-sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    font-family: var(--ih-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ih-sticky-cta__phone {
    color: var(--ih-white);
    background: var(--ih-dark);
}

.ih-sticky-cta__phone:hover {
    background: var(--ih-gray-800);
}

.ih-sticky-cta__text {
    color: var(--ih-white);
    background: var(--ih-gray-800);
}

.ih-sticky-cta__text:hover {
    background: var(--ih-gray-700);
}

.ih-sticky-cta__estimate {
    color: var(--ih-dark);
    background: var(--ih-primary);
}

.ih-sticky-cta__estimate:hover {
    background: var(--ih-primary-light);
}

/* Hide on desktop */
@media (min-width: 1024px) {
    .ih-sticky-cta {
        display: none;
    }
}

/* Add bottom padding to body so sticky bar doesn't cover content */
@media (max-width: 1023px) {
    body {
        padding-bottom: 56px;
    }
}
