/* 
MOTORCYCLE SERVICE SHOP WEBSITE STYLES
Optimized for Replit Static Deployment
*/

/* ===== CSS VARIABLES FOR EASY CUSTOMIZATION ===== */
:root {
    /* BIKER THEME COLORS */
    --primary-color: #ff6600;          /* Biker Orange */
    --secondary-color: #1a1a1a;        /* Deep Black */
    --background-dark: #0a0a0a;        /* Pitch Black */
    --background-darker: #000000;      /* Pure Black */
    --text-light: #ffffff;             /* White Text */
    --text-grey: #cccccc;              /* Light Grey Text */
    --text-dark-grey: #666666;         /* Dark Grey Text */
    --silver: #c0c0c0;                 /* Chrome Silver */
    --border-color: #444444;           /* Steel Grey Border */
    --leather-brown: #8B4513;          /* Leather Brown */
    --chrome: #E5E5E5;                 /* Chrome */
    --rust-orange: #CC5500;            /* Rust Orange */
    
    /* BIKER STYLE FONTS */
    --font-primary: 'Arial Black', 'Trebuchet MS', 'Helvetica', sans-serif;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* SPACING */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* LAYOUT SIZES */
    --container-max-width: 1400px;
    --header-height: 80px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--background-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(68, 68, 68, 0.03) 50%, transparent 52%);
    background-attachment: fixed;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 10px rgba(255, 102, 0, 0.3);
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: -1;
}

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    border-radius: 0;
    font-weight: var(--font-weight-bold);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--rust-orange));
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--rust-orange), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4), 0 0 20px rgba(255, 102, 0, 0.2);
    color: var(--text-light);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--silver), var(--chrome));
    color: var(--background-dark);
    border-color: var(--silver);
    font-weight: var(--font-weight-black);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, var(--chrome), var(--silver));
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(192, 192, 192, 0.4), 0 0 20px rgba(192, 192, 192, 0.2);
    color: var(--background-dark);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-full {
    width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--background-darker) 0%, #111111 100%);
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.8), 0 0 20px rgba(255, 102, 0, 0.1);
    border-bottom: 2px solid var(--primary-color);
}

.nav {
    height: var(--header-height);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    height: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    gap: var(--spacing-sm);
}

.hawg-pitt-logo {
    height: 85px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
    transition: var(--transition);
    mix-blend-mode: screen;
}

.hawg-pitt-logo:hover {
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8)) brightness(1.1);
    transform: scale(1.05);
}

.dans-garage-logo {
    height: 65px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.6));
    transition: var(--transition);
    mix-blend-mode: screen;
}

.dans-garage-logo:hover {
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.6)) brightness(1.1);
    transform: scale(1.05);
}

.nav-logo-right {
    text-align: right;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    justify-content: center;
    margin: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: var(--font-weight-normal);
    transition: var(--transition);
    position: relative;
}

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

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

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

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    grid-column: 3;
    justify-self: end;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('attached_assets/image_1756531638895.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* iOS Safari fix for background-attachment: fixed */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
        background-size: cover !important;
        background-position: center !important;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--spacing-sm);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 0 0 20px rgba(255, 102, 0, 0.4);
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: -1;
    opacity: 0.7;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-grey);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #111111 100%);
    padding: var(--spacing-lg);
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--rust-orange));
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(255, 102, 0, 0.3), 0 0 20px rgba(255, 102, 0, 0.1);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    height: 5px;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.service-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.service-description {
    color: var(--text-grey);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    padding-right: var(--spacing-md);
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.professional-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #222222 100%);
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: 0;
    transition: var(--transition);
}

.badge:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.2);
}

.badge-checkmark {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}

.badge-text {
    color: var(--text-grey);
    font-size: 0.9rem;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-dark);
}

.gallery-description {
    text-align: center;
    color: var(--text-grey);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #111111 100%);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
    height: 250px;
    position: relative;
}

.gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(255, 102, 0, 0.3);
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: var(--spacing-md);
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), #2a2a2a);
}

.gallery-placeholder h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-placeholder p {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.4;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--text-light);
    padding: var(--spacing-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-overlay p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-darker);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.review-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #111111 100%);
    padding: var(--spacing-lg);
    border: 2px solid var(--border-color);
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--rust-orange));
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

.review-stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.review-text {
    color: var(--text-grey);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.review-author h4 {
    color: var(--text-light);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
}

.review-date {
    color: var(--text-dark-grey);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--background-dark);
}

.contact-banner {
    height: 200px;
    background-image: url('https://hawgpitt.ca/attached_assets/image_1756240317358.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-md);
}

.contact-banner-title {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 3px;
    margin: 0;
    margin-bottom: var(--spacing-sm);
}

.contact-banner-subtitle {
    font-size: 1.1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    margin: 0;
    max-width: 600px;
    line-height: 1.5;
}

.contact .container {
    padding: var(--spacing-xl) var(--spacing-md);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info h3, .facebook-section h3, .contact-form-container h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.contact-address {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-phone, .contact-email {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    transition: var(--transition);
}

.contact-phone:hover, .contact-email:hover {
    color: var(--rust-orange);
}

.contact-item {
    margin-bottom: var(--spacing-sm);
    color: var(--text-grey);
    line-height: 1.6;
}

.contact-item strong {
    color: var(--text-light);
    display: inline-block;
    min-width: 100px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--rust-orange);
}

.hours-list {
    margin-top: var(--spacing-xs);
}

.hours-list div {
    margin-bottom: var(--spacing-xs);
    white-space: nowrap;
}

.contact-form-container {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #111111 100%);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 102, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.facebook-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #111111 100%);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 102, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    min-width: 400px;
}

.facebook-section .facebook-embed {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.facebook-section iframe {
    width: 380px !important;
    max-width: 100%;
    height: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Honeypot field - hidden from humans, visible to bots */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--background-darker);
    border: 2px solid var(--border-color);
    color: var(--text-light);
    padding: var(--spacing-sm);
    border-radius: 0;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

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

.form-status {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: 0;
    text-align: center;
    font-weight: var(--font-weight-bold);
    display: none;
}

.form-status.success {
    background-color: rgba(0, 128, 0, 0.2);
    border: 2px solid #00aa00;
    color: #00ff00;
}

.form-status.error {
    background-color: rgba(255, 0, 0, 0.2);
    border: 2px solid #aa0000;
    color: #ff6666;
}

/* ===== FACEBOOK FEED SECTION ===== */
.facebook-feed {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-darker);
}

.facebook-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.facebook-embed iframe {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 100%;
}

.facebook-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.facebook-info p {
    color: var(--text-grey);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 768px) {
    .facebook-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .facebook-embed {
        order: 2;
    }
    
    .facebook-info {
        order: 1;
        text-align: center;
    }
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--background-darker) 0%, #111111 100%);
}

.map-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 2px solid rgba(255, 102, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    filter: grayscale(20%) contrast(1.1);
}

.map-overlay {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.9);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 300px;
}

.map-overlay h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-overlay p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

.map-overlay .btn {
    width: 100%;
    text-align: center;
}

/* Mobile responsive for map */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
    
    .map-overlay {
        position: static;
        margin-top: var(--spacing-md);
        max-width: none;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--background-darker);
    padding: var(--spacing-lg) 0;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section li {
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--rust-orange);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    padding: var(--spacing-xs);
    border-radius: var(--border-radius);
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.1);
    transform: translateX(5px);
}

.social-icon {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    color: var(--text-dark-grey);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto;
        gap: var(--spacing-sm);
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--background-darker);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: var(--spacing-lg);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hawg-pitt-logo {
        height: 60px;
        max-width: 250px;
    }

    .dans-garage-logo {
        height: 45px;
        max-width: 150px;
    }

    .hero {
        background-attachment: scroll !important;
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                          url('attached_assets/image_1756531638895.png') !important;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-banner-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .contact-banner-subtitle {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .contact-info,
    .facebook-section,
    .contact-form-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin: 0;
        padding: var(--spacing-md);
    }
    
    .facebook-section {
        min-width: auto;
        text-align: center;
    }
    
    .facebook-section .facebook-embed {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .facebook-section iframe {
        width: 100% !important;
        max-width: calc(100vw - 60px) !important;
        height: 400px !important;
        border: none;
        margin: 0 auto;
        display: block;
    }
    
    .contact-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .service-card,
    .review-card,
    .contact-form-container {
        padding: var(--spacing-md);
    }

    .professional-badges {
        flex-direction: column;
    }

    .badge {
        justify-content: center;
    }
    
    .contact .container {
        padding: 0 var(--spacing-xs);
    }
    
    .contact-content {
        gap: var(--spacing-sm);
        padding: 0;
    }
    
    .contact-info,
    .facebook-section,
    .contact-form-container {
        padding: var(--spacing-sm);
        margin: 0;
    }
    
    .facebook-section iframe {
        width: 100% !important;
        max-width: calc(100vw - 40px) !important;
        height: 350px !important;
    }
}
