/* ========================================
   HD TRADING - CUSTOM CSS FOR ELEMENTOR
   Carwow-Inspired Design System
   ======================================== */

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

html, body {
    margin: 0 !important;
    padding: 0 !important;
}

:root {
    --hd-primary: #2563EB;
    --hd-primary-hover: #1D4ED8;
    --hd-primary-light: #DBEAFE;
    --hd-primary-ultra-light: #EFF6FF;
    --hd-dark: #0F172A;
    --hd-dark-2: #1E293B;
    --hd-text: #111827;
    --hd-text-light: #6B7280;
    --hd-text-lighter: #9CA3AF;
    --hd-white: #FFFFFF;
    --hd-bg: #F8FAFC;
    --hd-bg-alt: #F1F5F9;
    --hd-border: #E5E7EB;
    --hd-border-light: #F3F4F6;
    --hd-success: #16A34A;
    --hd-success-light: #DCFCE7;
    --hd-sold: #DC2626;
    --hd-amber: #F59E0B;
    --hd-radius: 8px;
    --hd-radius-lg: 12px;
    --hd-radius-xl: 16px;
    --hd-radius-full: 9999px;
    --hd-shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --hd-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --hd-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --hd-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
}

/* ========================================
   GLOBAL
   ======================================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--hd-text);
    background: var(--hd-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

body.admin-bar .hd-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .hd-header {
        top: 46px;
    }
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.hd-announcement {
    background: var(--hd-dark);
    padding: 12px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hd-announcement-text {
    color: var(--hd-white);
    font-size: 14px;
    font-weight: 600;
}

.hd-announcement-text strong {
    color: var(--hd-amber);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hd-announcement-link {
    color: var(--hd-primary-light);
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hd-announcement-link:hover {
    color: var(--hd-white);
}

/* ========================================
   TRUST STATS BAR
   ======================================== */
.hd-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    flex-wrap: wrap;
}

.hd-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--hd-white);
    border-radius: var(--hd-radius-lg);
    border: 1px solid var(--hd-border);
    box-shadow: var(--hd-shadow-xs);
    transition: all 0.2s ease;
}

.hd-trust-item:hover {
    box-shadow: var(--hd-shadow);
    transform: translateY(-2px);
}

.hd-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--hd-primary-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hd-trust-icon svg {
    width: 22px;
    height: 22px;
    color: var(--hd-primary);
}

.hd-trust-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--hd-text);
    line-height: 1.2;
}

.hd-trust-label {
    font-size: 13px;
    color: var(--hd-text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hd-trust-bar {
        gap: 8px;
    }
    .hd-trust-item {
        padding: 10px 16px;
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
    }
    .hd-trust-number {
        font-size: 16px;
    }
}

/* ========================================
   CATEGORY CHIPS
   ======================================== */
.hd-chips {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0;
}

.hd-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hd-text);
    background: var(--hd-white);
    border: 1.5px solid var(--hd-border);
    border-radius: var(--hd-radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.hd-chip:hover,
.hd-chip.active {
    background: var(--hd-primary);
    color: var(--hd-white);
    border-color: var(--hd-primary);
    transform: translateY(-1px);
    box-shadow: var(--hd-shadow);
}

.hd-chip svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 640px) {
    .hd-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .hd-chips::-webkit-scrollbar {
        display: none;
    }
    .hd-chip {
        flex-shrink: 0;
    }
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.hd-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.hd-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.hd-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--hd-primary);
    color: var(--hd-white);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.hd-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--hd-text);
    margin-bottom: 10px;
}

.hd-step-desc {
    font-size: 14px;
    color: var(--hd-text-light);
    line-height: 1.6;
}

.hd-step-connector {
    position: absolute;
    top: 60px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: var(--hd-border);
    display: block;
}

.hd-step:last-child .hd-step-connector {
    display: none;
}

@media (max-width: 768px) {
    .hd-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hd-step-connector {
        display: none;
    }
}

/* ========================================
   BRAND LOGOS
   ======================================== */
.hd-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 8px 0;
}

.hd-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--hd-white);
    border: 1.5px solid var(--hd-border);
    border-radius: var(--hd-radius-lg);
    font-size: 15px;
    font-weight: 700;
    color: var(--hd-text);
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 120px;
}

.hd-brand:hover {
    border-color: var(--hd-primary);
    color: var(--hd-primary);
    box-shadow: var(--hd-shadow);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hd-brand {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 100px;
    }
}

/* ========================================
   CAR CARDS GRID
   ======================================== */
.hd-cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .hd-cars-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .hd-cars-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
    .hd-cars-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CAR CARD (Enhanced Carwow-Style)
   ======================================== */
.hd-car-card {
    background: var(--hd-white);
    border-radius: var(--hd-radius-lg);
    overflow: hidden;
    box-shadow: var(--hd-shadow-xs);
    border: 1px solid var(--hd-border);
    transition: all 0.25s ease;
}

.hd-car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hd-shadow-xl);
    border-color: transparent;
}

.hd-car-card-image {
    position: relative;
    display: block;
    aspect-ratio: 16/11;
    background: var(--hd-bg-alt);
    overflow: hidden;
}

.hd-car-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hd-car-card:hover .hd-car-card-image img {
    transform: scale(1.08);
}

.hd-car-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hd-bg-alt), var(--hd-border));
}

.hd-car-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.hd-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--hd-radius-full);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hd-badge-inspected {
    background: rgba(22, 163, 74, 0.15);
    color: var(--hd-success);
    border: 1px solid rgba(22, 163, 74, 0.25);
}

.hd-badge-sold {
    background: rgba(220, 38, 38, 0.12);
    color: var(--hd-sold);
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.hd-badge-featured {
    background: rgba(37, 99, 235, 0.12);
    color: var(--hd-primary);
    border: 1px solid rgba(37, 99, 235, 0.25);
}

.hd-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--hd-dark);
    color: var(--hd-white);
    padding: 5px 14px;
    border-radius: var(--hd-radius-full);
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: -0.3px;
}

.hd-car-card-body {
    padding: 18px 20px 22px;
}

.hd-car-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.hd-car-title a {
    color: var(--hd-text);
    text-decoration: none;
    transition: color 0.2s;
}

.hd-car-title a:hover {
    color: var(--hd-primary);
}

.hd-car-specs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--hd-text-light);
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.hd-car-specs .sep {
    color: var(--hd-border);
    font-size: 8px;
}

.hd-car-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--hd-text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hd-sold-price {
    color: var(--hd-text-lighter);
    text-decoration: line-through;
    font-size: 18px;
}

.hd-car-actions {
    display: flex;
    gap: 8px;
}

/* ========================================
   BUTTONS
   ======================================== */
.hd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--hd-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    letter-spacing: -0.1px;
}

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

.hd-btn-primary:hover {
    background: var(--hd-primary-hover);
    border-color: var(--hd-primary-hover);
    color: var(--hd-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hd-btn-outline {
    background: var(--hd-white);
    color: var(--hd-text);
    border-color: var(--hd-border);
    width: 100%;
}

.hd-btn-outline:hover {
    border-color: var(--hd-primary);
    color: var(--hd-primary);
    background: var(--hd-primary-ultra-light);
}

/* ========================================
   SEARCH BAR — Clean Single Row
   ======================================== */
.hd-sb {
    background: var(--hd-white);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    padding: 8px;
    display: flex;
    align-items: center;
    border: 1px solid var(--hd-border);
}

.hd-sb-label {
    padding: 8px 20px 8px 16px;
    border-right: 1.5px solid var(--hd-border);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hd-sb-title {
    font-weight: 800;
    font-size: 14px;
    color: var(--hd-text);
    white-space: nowrap;
    letter-spacing: -0.3px;
}

.hd-sb-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--hd-primary);
    white-space: nowrap;
}

.hd-sb-field {
    flex: 1;
    padding: 6px 16px;
    border-right: 1.5px solid var(--hd-border-light);
    min-width: 0;
}

.hd-sb-field:last-of-type {
    border-right: none;
}

.hd-sb-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--hd-text-lighter);
    margin-bottom: 2px;
}

.hd-sb-field select {
    width: 100%;
    padding: 2px 18px 2px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--hd-text);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hd-sb-field input[type="text"] {
    width: 100%;
    padding: 2px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--hd-text);
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
}

.hd-sb-field input[type="text"]::placeholder {
    color: var(--hd-text-lighter);
    font-weight: 500;
    font-size: 13px;
}

.hd-sb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--hd-primary);
    color: var(--hd-white);
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 4px;
}

.hd-sb-btn:hover {
    background: var(--hd-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* Tablet */
@media (max-width: 1024px) {
    .hd-sb {
        flex-wrap: wrap;
        padding: 16px;
        gap: 8px;
    }
    .hd-sb-label {
        width: 100%;
        border-right: none;
        padding: 0 0 10px;
        border-bottom: 1.5px solid var(--hd-border);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .hd-sb-field {
        flex: 1 1 calc(33% - 8px);
        border-right: none;
        padding: 8px 0;
    }
    .hd-sb-keyword {
        flex: 1 1 100%;
    }
    .hd-sb-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        padding: 16px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hd-sb {
        border-radius: 12px;
    }
    .hd-sb-field {
        flex: 1 1 100%;
        border-bottom: 1px solid var(--hd-border-light);
        padding: 10px 0;
    }
    .hd-sb-field:last-of-type {
        border-bottom: none;
    }
}

/* ========================================
   GOOGLE REVIEWS BADGE
   ======================================== */
.hd-google-review {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--hd-white);
    border-radius: var(--hd-radius-lg);
    border: 1px solid var(--hd-border);
    box-shadow: var(--hd-shadow-xs);
}

.hd-google-stars {
    display: flex;
    gap: 2px;
}

.hd-google-score {
    font-weight: 800;
    font-size: 20px;
    color: var(--hd-text);
}

.hd-google-count {
    font-size: 13px;
    color: var(--hd-text-light);
}

/* ========================================
   ELEMENTOR OVERRIDES
   ======================================== */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1280px;
}

.elementor-widget:not(:last-child) {
    margin-bottom: 20px;
}

.elementor-button-wrapper .elementor-button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: var(--hd-radius);
    transition: all 0.2s ease;
    letter-spacing: -0.1px;
}

.elementor-heading-title {
    font-family: 'Inter', sans-serif;
}

/* ========================================
   HEADER
   ======================================== */
.hd-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--hd-dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
    transition: box-shadow 0.2s ease;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hd-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}

.hd-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.hd-logo img {
    max-height: 40px;
    width: auto;
}

.hd-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--hd-white);
    letter-spacing: -0.5px;
}

.hd-logo-text span {
    color: var(--hd-primary);
}

.hd-logo .custom-logo-link {
    display: flex;
    align-items: center;
}

.hd-logo .custom-logo {
    max-height: 40px;
    width: auto;
}

.hd-nav {
    display: flex;
    align-items: center;
}

.hd-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hd-nav-links li a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s ease;
}

.hd-nav-links li a:hover,
.hd-nav-links li a.active,
.hd-nav-links li.current-menu-item a {
    color: var(--hd-white);
}

.hd-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hd-primary);
    transition: width 0.3s ease;
}

.hd-nav-links li a:hover::after,
.hd-nav-links li a.active::after,
.hd-nav-links li.current-menu-item a::after {
    width: 100%;
}

.hd-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hd-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #25D366;
    color: #fff;
    border-radius: var(--hd-radius-full);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hd-btn-wa:hover {
    background: #1DA851;
    transform: translateY(-1px);
    color: #fff;
}

.hd-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--hd-primary);
    color: #fff;
    border-radius: var(--hd-radius-full);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hd-btn-cta:hover {
    background: var(--hd-primary-hover);
    transform: translateY(-1px);
    color: #fff;
}

/* Mobile menu toggle */
.hd-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.hd-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--hd-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hd-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hd-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hd-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .hd-header-inner { height: 64px; }

    .hd-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--hd-dark);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: var(--hd-shadow-lg);
        padding: 16px 24px;
    }

    .hd-nav.active { display: block; }

    .hd-nav-links {
        flex-direction: column;
        gap: 0;
    }

    .hd-nav-links li {
        width: 100%;
    }

    .hd-nav-links li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .hd-nav-links li a::after { display: none; }

    .hd-mobile-toggle {
        display: flex;
    }

    .hd-btn-wa, .hd-btn-cta {
        display: none;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.hd-footer {
    background: var(--hd-dark);
    color: rgba(255,255,255,0.7);
}

.hd-footer-main {
    padding: 64px 0 48px;
}

.hd-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hd-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.hd-footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--hd-white);
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hd-footer-logo span {
    color: var(--hd-primary);
}

.hd-footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.hd-footer-social {
    display: flex;
    gap: 10px;
}

.hd-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--hd-radius);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s ease;
    text-decoration: none;
}

.hd-footer-social a:hover {
    background: var(--hd-primary);
    color: var(--hd-white);
}

.hd-footer-col h4 {
    color: var(--hd-white);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px;
}

.hd-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hd-footer-col ul li {
    margin-bottom: 10px;
}

.hd-footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}

.hd-footer-col ul li a:hover {
    color: var(--hd-white);
    padding-left: 4px;
}

.hd-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.hd-footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.5;
    color: rgba(255,255,255,0.6);
    stroke: rgba(255,255,255,0.6);
}

.hd-footer-contact li a,
.hd-footer-contact li span {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.hd-footer-contact li a:hover {
    color: var(--hd-white);
}

.hd-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .hd-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hd-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Better image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
}
