/* ============================================
   Hampstead Motors - Styles
   ============================================ */

/* Import Bold Sans-Serif Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* CSS Custom Properties */
:root {
    --hm-primary: #db2d2e;
    --hm-primary-dark: #b02426;
    --hm-primary-light: #e64d4e;
    --hm-black: #000000;
    --hm-gray-dark: #1a1a1a;
    --hm-gray: #4a4a4a;
    --hm-gray-light: #e5e5e5;
    --hm-gray-lighter: #f5f5f5;
    --hm-white: #ffffff;
    --hm-transition: all 0.3s ease;
    --hm-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --hm-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --hm-border-radius: 4px;
    --hm-max-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply font to all Hampstead Motors elements */
.hm-body,
.hm-body *,
[class^="hm-"],
[class*=" hm-"] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hm-body {
    font-weight: 500;
    color: var(--hm-gray-dark);
    line-height: 1.6;
    background-color: var(--hm-white);
    overflow-x: hidden;
}

.hm-container {
    max-width: var(--hm-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.hm-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.hm-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hm-black);
    margin-bottom: 12px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hm-section-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--hm-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.hm-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--hm-border-radius);
    cursor: pointer;
    transition: var(--hm-transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.hm-btn-secondary:hover {
    background-color: var(--hm-white);
    color: var(--hm-black);
}

.hm-btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
    background-color: var(--hm-black);
    color: var(--hm-white);
}

.hm-btn-small:hover {
    background-color: var(--hm-primary);
    transform: translateY(-1px);
}

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

/* ============================================
   Navigation
   ============================================ */
.hm-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--hm-gray-dark) !important;
    box-shadow: var(--hm-shadow);
    z-index: 1000;
    transition: var(--hm-transition);
}

.hm-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.hm-logo-wrapper {
    flex-shrink: 0;
}

.hm-logo {
    height: 50px;
    width: auto;
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

.hm-nav-menu {
    display: none;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.hm-nav-link {
    color: var(--hm-white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--hm-transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hm-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--hm-primary);
    transition: var(--hm-transition);
}

.hm-nav-link:hover {
    color: var(--hm-primary) !important;
}

.hm-nav-link:hover::after {
    width: 100%;
}

/* Navigation CTA Button */
.hm-nav-cta {
    background-color: var(--hm-primary) !important;
    color: var(--hm-white) !important;
    padding: 10px 20px;
    border-radius: var(--hm-border-radius);
}

.hm-nav-cta::after {
    display: none;
}

.hm-nav-cta:hover {
    background-color: var(--hm-primary-dark) !important;
    color: var(--hm-white) !important;
}

.hm-mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hm-mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    stroke: var(--hm-white) !important;
}

/* Mobile Menu Overlay */
.hm-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--hm-white);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.hm-mobile-menu.active {
    right: 0;
}

.hm-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hm-mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--hm-black);
}

.hm-mobile-nav-menu {
    list-style: none;
    padding: 80px 30px 30px;
}

.hm-mobile-nav-menu li {
    margin-bottom: 24px;
}

.hm-mobile-nav-link {
    color: var(--hm-gray-dark) !important;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    transition: var(--hm-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hm-mobile-nav-link:hover {
    color: var(--hm-primary) !important;
}

/* Mobile Navigation CTA Button */
.hm-mobile-nav-cta {
    display: inline-block;
    background-color: var(--hm-primary) !important;
    color: var(--hm-white) !important;
    padding: 12px 24px;
    border-radius: var(--hm-border-radius);
}

.hm-mobile-nav-cta:hover {
    background-color: var(--hm-primary-dark) !important;
    color: var(--hm-white) !important;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .hm-nav-menu {
        display: flex;
    }

    .hm-mobile-menu-btn {
        display: none;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(219, 45, 46, 0.6) 100%);
}

.hm-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--hm-white);
    padding: 40px 20px;
}

.hm-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.hm-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

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

/* Hero Trust Section */
.hm-hero-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hm-trust-item {
    text-align: center;
}

.hm-trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--hm-white);
    letter-spacing: -1px;
}

.hm-trust-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .hm-hero {
        min-height: auto;
        padding: 60px 0;
        background-attachment: scroll;
        background-position: center center;
    }

    .hm-hero-content {
        padding-top: 40px;
    }

    .hm-hero-title {
        font-size: 2rem;
    }

    .hm-hero-subtitle {
        font-size: 1rem;
    }

    .hm-hero-trust {
        gap: 24px;
        margin-top: 32px;
    }

    .hm-trust-number {
        font-size: 1.5rem;
    }

    .hm-trust-label {
        font-size: 0.75rem;
    }

    .hm-hero-cta .hm-btn-secondary {
        display: none;
    }
}

/* ============================================
   Inventory Section
   ============================================ */
.hm-inventory {
    padding: 80px 0;
    background-color: var(--hm-gray-lighter);
}

.hm-inventory-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.hm-search-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.hm-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hm-gray);
    width: 20px;
    height: 20px;
}

.hm-search-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid var(--hm-gray-light);
    border-radius: var(--hm-border-radius);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--hm-transition);
}

.hm-search-input:focus {
    outline: none;
    border-color: var(--hm-primary);
}

.hm-filter-controls {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hm-filter-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hm-filter-label {
    font-weight: 700;
    color: var(--hm-black);
    font-size: 0.875rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hm-select {
    padding: 12px 16px;
    border: 2px solid var(--hm-gray-light);
    border-radius: var(--hm-border-radius);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 0.95rem;
    font-weight: 600;
    background-color: var(--hm-white);
    cursor: pointer;
    transition: var(--hm-transition);
}

.hm-select:focus {
    outline: none;
    border-color: var(--hm-primary);
}

.hm-view-toggle {
    display: flex;
    gap: 4px;
    border: 2px solid var(--hm-gray-light);
    border-radius: var(--hm-border-radius);
    overflow: hidden;
}

.hm-view-btn {
    padding: 10px 14px;
    background: var(--hm-white);
    border: none;
    cursor: pointer;
    transition: var(--hm-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hm-view-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--hm-gray);
}

.hm-view-btn:hover,
.hm-view-btn-active {
    background-color: var(--hm-primary);
}

.hm-view-btn:hover svg,
.hm-view-btn-active svg {
    stroke: var(--hm-white);
}

/* Vehicle Grid */
.hm-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    transition: var(--hm-transition);
}

.hm-vehicles-grid.list-view {
    grid-template-columns: 1fr;
}

.hm-vehicle-card {
    background-color: var(--hm-white);
    border-radius: var(--hm-border-radius);
    overflow: hidden;
    box-shadow: var(--hm-shadow);
    transition: var(--hm-transition);
    display: flex;
    flex-direction: column;
}

.hm-vehicles-grid.list-view .hm-vehicle-card {
    flex-direction: row;
}

.hm-vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hm-shadow-lg);
}

.hm-vehicle-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--hm-gray-lighter);
}

.hm-vehicles-grid.list-view .hm-vehicle-image-wrapper {
    width: 400px;
    flex-shrink: 0;
}

.hm-vehicle-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.hm-vehicle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hm-vehicle-image.active {
    opacity: 1;
    position: relative;
}

.hm-gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    opacity: 0;
    transition: var(--hm-transition);
}

.hm-vehicle-image-wrapper:hover .hm-gallery-controls {
    opacity: 1;
}

.hm-gallery-btn {
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: var(--hm-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hm-transition);
}

.hm-gallery-btn:hover {
    background-color: var(--hm-primary);
}

.hm-gallery-btn svg {
    width: 20px;
    height: 20px;
}

.hm-gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hm-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--hm-transition);
}

.hm-gallery-dot.active {
    background-color: var(--hm-white);
    width: 24px;
    border-radius: 4px;
}

.hm-vehicle-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hm-vehicle-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--hm-black);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.hm-vehicle-type {
    color: var(--hm-gray);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hm-vehicle-details {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hm-vehicle-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--hm-gray);
    font-size: 0.875rem;
}

.hm-vehicle-detail svg {
    width: 18px;
    height: 18px;
    stroke: var(--hm-primary);
}

.hm-vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--hm-gray-light);
}

.hm-vehicle-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hm-vehicle-price {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--hm-primary);
    letter-spacing: -1px;
}

.hm-vehicle-price-old {
    font-size: 1.125rem;
    color: var(--hm-gray);
    text-decoration: line-through;
}

.hm-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--hm-gray);
}

.hm-no-results svg {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    stroke: var(--hm-gray-light);
}

.hm-no-results p {
    font-size: 1.125rem;
}

@media (max-width: 767px) {
    .hm-vehicles-grid.list-view .hm-vehicle-card {
        flex-direction: column;
    }

    .hm-vehicles-grid.list-view .hm-vehicle-image-wrapper {
        width: 100%;
    }

    .hm-inventory-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .hm-search-wrapper {
        width: 100%;
    }

    .hm-filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .hm-filter-group {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================
   About Section
   ============================================ */
.hm-about {
    padding: 80px 0;
    background-color: var(--hm-white);
}

.hm-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hm-about-content h2 {
    margin-bottom: 24px;
}

.hm-about-text {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--hm-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.hm-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .hm-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   Services Section
   ============================================ */
.hm-services {
    padding: 80px 0;
    background-color: var(--hm-gray-dark);
    color: var(--hm-white);
}

.hm-services .hm-section-title {
    color: var(--hm-white);
}

.hm-services .hm-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.hm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.hm-service-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    border-radius: var(--hm-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--hm-transition);
}

.hm-service-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: var(--hm-primary);
}

.hm-service-icon {
    width: 64px;
    height: 64px;
    background-color: var(--hm-primary);
    border-radius: var(--hm-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.hm-service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--hm-white);
}

.hm-service-title {
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--hm-white);
    letter-spacing: -0.5px;
}

.hm-service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 500;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.hm-why-choose {
    padding: 80px 0;
    background-color: var(--hm-gray-lighter);
}

.hm-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.hm-feature-item {
    text-align: center;
}

.hm-feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--hm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--hm-shadow);
    transition: var(--hm-transition);
}

.hm-feature-item:hover .hm-feature-icon {
    background-color: var(--hm-primary);
    transform: scale(1.1);
}

.hm-feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--hm-primary);
    transition: var(--hm-transition);
}

.hm-feature-item:hover .hm-feature-icon svg {
    stroke: var(--hm-white);
}

.hm-feature-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--hm-black);
    letter-spacing: -0.5px;
}

.hm-feature-description {
    color: var(--hm-gray);
    line-height: 1.7;
    font-weight: 500;
}

/* ============================================
   Contact Section
   ============================================ */
.hm-contact {
    padding: 80px 0;
    background-color: var(--hm-white);
}

.hm-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hm-contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hm-contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hm-contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--hm-primary);
    border-radius: var(--hm-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hm-contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--hm-white);
}

.hm-contact-details {
    flex: 1;
}

.hm-contact-label {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--hm-black);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.hm-contact-details p {
    color: var(--hm-gray);
    margin-bottom: 4px;
}

.hm-contact-details a {
    color: var(--hm-gray);
    text-decoration: none;
    transition: var(--hm-transition);
}

.hm-contact-details a:hover {
    color: var(--hm-primary);
}

/* Contact Form */
.hm-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hm-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hm-form-label {
    font-weight: 700;
    color: var(--hm-black);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hm-form-input,
.hm-form-select,
.hm-form-textarea {
    padding: 14px 16px;
    border: 2px solid var(--hm-gray-light);
    border-radius: var(--hm-border-radius);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--hm-transition);
}

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

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

.hm-form-message {
    padding: 16px 20px;
    border-radius: var(--hm-border-radius);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.hm-form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.hm-form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hm-form-message svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .hm-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   Footer
   ============================================ */
.hm-footer {
    background-color: var(--hm-gray-dark);
    color: var(--hm-white);
    padding: 60px 0 24px;
}

.hm-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.hm-footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

.hm-footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hm-footer-title {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--hm-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hm-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hm-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--hm-transition);
    font-size: 0.95rem;
}

.hm-footer-links a:hover {
    color: var(--hm-primary);
}

.hm-footer-links li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.hm-footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hm-footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ============================================
   Utility Classes
   ============================================ */
.hm-hidden {
    display: none !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 767px) {
    .hm-section-title {
        font-size: 2rem;
    }

    .hm-section-subtitle {
        font-size: 1rem;
    }

    .hm-inventory,
    .hm-about,
    .hm-services,
    .hm-why-choose,
    .hm-contact {
        padding: 60px 0;
    }

    .hm-section-header {
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .hm-hero-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hm-hero-cta .hm-btn {
        width: auto;
        min-width: 200px;
        max-width: 100%;
    }
}