/* ============================================
   NORWELD DRIVE SELF STORAGE
   Multi-Page Website Styles
   ============================================ */

:root {
    --red-primary: #C41E3A;
    --red-dark: #9A1830;
    --red-light: #E63950;
    --charcoal: #1A1A1A;
    --slate: #2D3436;
    --concrete: #636E72;
    --silver: #B2BEC3;
    --cloud: #DFE6E9;
    --white: #FFFFFF;
    --cream: #F8F9FA;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background: var(--cream);
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background: var(--charcoal);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--red-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.logo-text {
    color: var(--white);
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--red-light);
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    color: var(--silver);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-primary);
    border-radius: 2px;
}

.header-cta {
    background: var(--red-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cta:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}

.header-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 100%);
    position: relative;
    overflow: hidden;
}

.hero-home {
    padding: 160px 2rem 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C41E3A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-content h1 span {
    color: var(--red-light);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--silver);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 16px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge svg {
    width: 18px;
    height: 18px;
    fill: var(--red-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Page Hero (smaller, for inner pages) */
.page-hero {
    padding: 140px 2rem 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Image */
.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--red-primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    background: var(--red-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-outline {
    background: transparent;
    color: var(--red-primary);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid var(--red-primary);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 100px 2rem;
}

.section-dark {
    background: var(--charcoal);
}

.section-white {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    background: var(--red-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--concrete);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: var(--silver);
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    background: var(--white);
    padding: 2rem;
    border-bottom: 1px solid var(--cloud);
}

.trust-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--concrete);
    font-weight: 500;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    fill: var(--red-primary);
}

/* ============================================
   UNIT CARDS
   ============================================ */

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.unit-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.unit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--red-primary);
}

.unit-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 100%);
    padding: 2rem;
    text-align: center;
}

.unit-size {
    font-family: 'Archivo', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.unit-size span {
    font-size: 1.5rem;
    color: var(--silver);
}

.unit-label {
    color: var(--red-light);
    font-weight: 600;
}

.unit-body {
    padding: 2rem;
}

.unit-description {
    color: var(--concrete);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.unit-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.unit-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate);
}

.unit-feature svg {
    width: 20px;
    height: 20px;
    fill: var(--red-primary);
    flex-shrink: 0;
}

.unit-cta {
    display: block;
    text-align: center;
    background: var(--red-primary);
    color: var(--white);
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s;
}

.unit-cta:hover {
    background: var(--red-dark);
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.feature-card p {
    color: var(--concrete);
}

/* ============================================
   IMAGE GALLERY
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.large img {
    height: 350px;
}

/* ============================================
   OUTSIDE STORAGE
   ============================================ */

.outside-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.outside-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.outside-content p {
    color: var(--concrete);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.section-dark .outside-content p {
    color: var(--silver);
}

.vehicle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.vehicle-tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 500;
}

.outside-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.outside-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Panoramic image handling */
.outside-panoramic {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.outside-panoramic img {
    width: 100%;
    height: auto;
    display: block;
}

/* Vehicle Cards */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.vehicle-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.vehicle-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.vehicle-card .emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vehicle-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.vehicle-card p {
    color: var(--silver);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--silver);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.contact-method:hover {
    background: rgba(255,255,255,0.1);
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    background: var(--red-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-method-text h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-method-text p {
    color: var(--silver);
    margin: 0;
}

.contact-method-text a {
    color: var(--red-light);
    font-weight: 500;
}

.contact-method-text a:hover {
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--slate);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--cloud);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: var(--white);
}

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

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

.form-submit {
    width: 100%;
    background: var(--red-primary);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--red-dark);
}

/* ============================================
   MAP
   ============================================ */

.map-section {
    padding: 0;
}

.map-wrapper {
    position: relative;
    height: 450px;
    background: var(--slate);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 350px;
}

.map-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.map-overlay p {
    color: var(--concrete);
    margin: 0 0 1rem 0;
}

.map-overlay a {
    color: var(--red-primary);
    font-weight: 600;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    padding: 80px 2rem;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--red-primary);
}

.cta-banner .btn-primary:hover {
    background: var(--cream);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--charcoal);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--silver);
    max-width: 300px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--silver);
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column .footer-text {
    color: var(--silver);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--concrete);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icons span {
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--silver);
}

/* ============================================
   LOCATION PAGE SPECIFICS
   ============================================ */

.directions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.direction-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.direction-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.direction-card h3 svg {
    width: 24px;
    height: 24px;
    fill: var(--red-primary);
}

.direction-card p {
    color: var(--concrete);
    line-height: 1.8;
}

/* Hours Card */
.hours-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hours-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cloud);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    font-weight: 600;
    color: var(--slate);
}

.hours-row span:last-child {
    color: var(--red-primary);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .outside-content {
        text-align: center;
    }

    .outside-content .section-title {
        text-align: center;
    }

    .vehicle-tags {
        justify-content: center;
    }

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

    .contact-info {
        text-align: center;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

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

    .gallery-item.large {
        grid-column: span 1;
    }

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

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

    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 120px 1.5rem 60px;
    }

    .hero-home {
        padding: 120px 1.5rem 60px;
    }

    .section {
        padding: 60px 1.5rem;
    }

    .trust-bar-inner {
        gap: 2rem;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .gallery-item.large img,
    .gallery-item img {
        height: 200px;
    }

    .map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        border-radius: 0;
        max-width: none;
    }

    .map-wrapper {
        height: 350px;
    }

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: 1rem;
    }

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