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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #121212;
    color: #b0b0b0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #00b0b0;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #00d4d4;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 212, 212, 0.5);
}

.btn-dark {
    background-color: #1c1c1c;
    color: #ffffff;
}

.btn-dark:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-outline {
    border: 1px solid #00b0b0;
    color: #00b0b0;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(0, 176, 176, 0.15);
    color: #00d4d4;
    border-color: #00d4d4;
    box-shadow: 0 5px 20px rgba(0, 212, 212, 0.3);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    background: url('https://images.pexels.com/photos/30034728/pexels-photo-30034728.jpeg?auto=compress&cs=tinysrgb&w=1920') center center/cover no-repeat;
    min-height: 100vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    width: 100%;
    max-width: 1300px;
    padding: 0 clamp(24px, 4vw, 60px);
}

.hero-viewport {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 880px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-badge-top {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 176, 176, 0.15);
    border: 1px solid rgba(0, 176, 176, 0.4);
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9be0e0;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-actions .btn {
    min-width: 200px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 720px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.hero-feature-item strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00b0b0;
    letter-spacing: 0.02em;
}

.hero-feature-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Clean up old hero styles */
.hero-main,
.hero-center,
.hero-bottom,
.hero-date,
.hero-badges,
.hero-cta,
.hero-stats,
.hero-kicker,
.hero-lower,
.hero-grid,
.hero-card {
    display: none !important;
}

/* ========== EVENT CTA SECTION ========== */
.event-cta {
    background: #0d0d0d;
    padding: 100px 0;
    position: relative;
}

.event-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 176, 176, 0.3) 50%, transparent 100%);
}

.event-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 56px 70px;
    background: linear-gradient(135deg, rgba(0, 176, 176, 0.08) 0%, rgba(0, 212, 212, 0.05) 100%);
    border-radius: 24px;
    border: 2px solid rgba(0, 176, 176, 0.25);
    box-shadow: 0 20px 60px rgba(0, 176, 176, 0.15);
    overflow: hidden;
}

.event-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(0, 212, 212, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.event-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.event-date {
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #00d4d4;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.25em;
}

.event-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: none;
    line-height: 1.2;
    margin: 0;
}

.event-action {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.event-action .btn-dark {
    background-color: #00b0b0;
    color: #ffffff;
    font-weight: 800;
    padding: 20px 52px;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 176, 176, 0.35);
}

.event-action .btn-dark:hover {
    background-color: #00d4d4;
    color: #0d0d0d;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 212, 212, 0.45);
}

/* ========== RECENT CONSIGNMENTS SECTION ========== */
.consignments-section {
    background: #0d0d0d;
    padding: 100px 0;
    position: relative;
}

.consignments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
    pointer-events: none;
}

.consignments-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.consignments-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00d4d4;
    margin-bottom: 16px;
}

.consignments-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.consignments-description {
    font-size: 1.05rem;
    color: #9a9a9a;
    line-height: 1.7;
}

.consignments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 60px;
}

.consignment-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.consignment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 176, 176, 0.3);
    box-shadow: 0 20px 60px rgba(0, 176, 176, 0.2);
}

.consignment-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #000;
}

.consignment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.consignment-card:hover .consignment-image img {
    transform: scale(1.1);
    opacity: 1;
}

.consignment-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #00b0b0, #00d4d4);
    color: #0d0d0d;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 999px;
}

.consignment-content {
    padding: 28px 24px;
}

.consignment-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.consignment-card:hover .consignment-name {
    color: #00d4d4;
}

.consignment-details {
    font-size: 0.9rem;
    color: #9a9a9a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.consignment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.consignment-lot {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.consignment-link {
    font-size: 0.9rem;
    color: #00b0b0;
    font-weight: 700;
    transition: all 0.3s ease;
}

.consignment-link:hover {
    color: #00d4d4;
    transform: translateX(4px);
}

.consignments-cta {
    text-align: center;
    margin-top: 20px;
}

/* ========== CALL BUTTON ========== */
/* Removed - now in navbar.css */

/* ========== FEATURES SECTION ========== */
.features-section {
    background: #121212;
    padding: 120px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, #0d0d0d 0%, #121212 100%);
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 176, 176, 0.2) 50%, transparent 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: none;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-description {
    font-size: 1.15rem;
    color: #9a9a9a;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.feature-item {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00b0b0, #00d4d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    background: rgba(26, 26, 26, 0.95);
    border-color: rgba(0, 176, 176, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 176, 176, 0.15);
}

.feature-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #0d0d0d;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
    opacity: 0.85;
}

.feature-item:hover .feature-img img {
    transform: scale(1.08);
    opacity: 1;
}

.feature-icon {
    display: none;
}

.feature-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 28px 32px 16px;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-name {
    color: #00d4d4;
}

.feature-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
    padding: 0 32px 32px;
}

/* Remove old feature card styles */
.feature-card,
.feature-image-wrapper,
.feature-image,
.feature-overlay,
.feature-number,
.feature-content,
.feature-title,
.feature-text {
    display: none !important;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 120px 0;
    background: #121212;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 176, 176, 0.3) 20%, rgba(0, 212, 212, 0.5) 50%, rgba(0, 176, 176, 0.3) 80%, transparent 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 100px;
}

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

.contact-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00d4d4;
}

.contact-heading {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.contact-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #9a9a9a;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 20px;
}

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

.detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 176, 176, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b0b0;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.detail-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.detail-value:hover {
    color: #00d4d4;
}

.contact-form-wrapper {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px;
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00b0b0, #00d4d4);
    border-radius: 20px 20px 0 0;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    color: #e9ecef;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-control {
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    padding: 14px 20px;
    background-color: #0d0d0d;
    color: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
    appearance: none;
}

.form-control:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.form-control:focus {
    outline: none;
    border-color: #00b0b0;
    box-shadow: 0 0 0 4px rgba(0, 176, 176, 0.15);
    background-color: #121212;
}

.form-control::placeholder {
    color: #555;
    font-size: 0.95rem;
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2300b0b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

select.form-control:focus {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2300d4d4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

select.form-control option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 12px;
}

.form-textarea {
    border-radius: 12px;
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-submit {
    margin-top: 32px;
}

.form-submit .btn-primary {
    font-weight: 800;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.form-submit .btn-primary:hover {
    transform: translateY(-2px);
}

.form-submit .btn-primary:active {
    transform: translateY(0);
}

input.form-control:-webkit-autofill,
input.form-control:-webkit-autofill:hover,
input.form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0 1000px #0d0d0d inset;
    transition: background-color 5000s ease-in-out 0s;
}

.lowrider-image {
    margin-top: 0;
    text-align: center;
}

.lowrider-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    opacity: 0.8;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-img {
        height: 240px;
    }
    
    .consignments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .hero-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #111;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 40px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.6);
        z-index: 30;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-item {
        padding: 12px 0;
    }

    .hero-viewport {
        padding: 40px 0 50px;
        justify-content: center;
    }
    .hero-content {
        text-align: center;
        align-items: center;
        min-height: auto;
        gap: 20px;
    }
    .hero-badges {
        justify-content: center;
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-link {
        text-align: center;
    }
    .hero-grid {
        gap: 30px;
    }
    .hero-main {
        text-align: center;
        align-items: center;
    }
    .hero-card {
        align-items: center;
        text-align: center;
    }
    .hero-bottom {
        flex-direction: column;
        align-items: center;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .event-cta {
        padding: 70px 0;
    }
    
    .event-cta-content {
        flex-direction: column;
        gap: 36px;
        text-align: center;
        padding: 40px 30px;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .event-action .btn-dark {
        width: 100%;
        padding: 18px 40px;
    }
    
    .consignments-section {
        padding: 70px 0;
    }
    
    .consignments-section::before {
        height: 70px;
    }
    
    .consignments-title {
        font-size: 2.4rem;
    }
    
    .consignments-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .consignment-image {
        height: 220px;
    }
    
    .features-section {
        padding: 80px 0;
    }
    
    .features-section::before {
        height: 80px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .feature-img {
        height: 200px;
    }
    
    .feature-name {
        margin: 24px 28px 14px;
    }
    
    .feature-desc {
        padding: 0 28px 28px;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-section::before {
        width: 80%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 70px;
    }
    
    .contact-heading {
        font-size: 2.4rem;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    select.form-control {
        background-position: right 16px center;
        padding-right: 45px;
    }
    
    .footer {
        padding: 80px 0 0;
    }
    
    .footer::before {
        height: 80px;
    }
    
    .footer-main {
        gap: 50px;
        margin-bottom: 60px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge-top {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        height: 60px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-name {
        font-size: 1.3rem;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 10px 24px;
    }
    
    .btn-large {
        padding: 14px 36px;
        font-size: 1rem;
    }
    
    .hero-feature-item strong {
        font-size: 1.2rem;
    }
    
    .hero-feature-item span {
        font-size: 0.75rem;
    }
    
    .consignments-title,
    .section-title {
        font-size: 1.8rem;
    }
    
    .event-title {
        font-size: 1.6rem;
    }
    
    .event-date {
        font-size: 0.85rem;
    }
    
    .consignment-name {
        font-size: 1.2rem;
    }
    
    .consignment-details {
        font-size: 0.85rem;
    }
    
    .contact-heading {
        font-size: 1.8rem;
    }
    
    .contact-intro {
        font-size: 0.95rem;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
    }
    
    .detail-value {
        font-size: 1rem;
    }
    
    .lowrider-image {
        margin-top: 60px;
    }
    
    .lowrider-image img {
        opacity: 0.7;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .consignments-title,
    .section-title {
        font-size: 1.6rem;
    }
    
    .contact-heading {
        font-size: 1.6rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* ========== HERO IMAGE OPTIMIZATION ========== */
@media (max-width: 1200px) {
    .hero-section {
        background-image: url('https://images.pexels.com/photos/30034728/pexels-photo-30034728.jpeg?auto=compress&cs=tinysrgb&w=1200');
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-image: url('https://highspeedwebservices.com/HSWS_clients/HighSpeedAuctions/images/66_corvette.jpg');
        background-position: center center;
    }
    
    .hero-viewport {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        background-image: url('https://highspeedwebservices.com/HSWS_clients/HighSpeedAuctions/images/66_corvette.jpg');
        min-height: 90vh;
    }
}

/* ========== LOWRIDER IMAGE RESPONSIVE ========== */
@media (max-width: 1024px) {
    .lowrider-image img {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .lowrider-image {
        margin-top: 60px;
    }
    
    .lowrider-image img {
        max-width: 100%;
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .lowrider-image {
        margin-top: 50px;
    }
    
    .lowrider-image img {
        opacity: 0.6;
    }
}

/* ========== IMPROVED TOUCH TARGETS FOR MOBILE ========== */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .social-icon {
        min-width: 44px;
        min-height: 44px;
    }
}
