/* ========================================
   CSS Custom Properties (Design Tokens)
   ======================================== */
:root {
    /* Colors */
    --color-primary: #022a79;
    --color-primary-light: #3b82f6;
    --color-primary-dark: #011d54;
    --color-bg-light: #f8fafc;
    --color-bg-dark: #1e293b;
    --color-bg-section: #0f172a;
    --color-text: #0f172a;
    --color-text-muted: #64748b;
    --color-text-light: #f1f5f9;
    --color-accent: #3b82f6;
    --color-accent-hover: #3b82f6;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 5rem 2rem;
    --section-padding-mobile: 3rem 1rem;
    --card-padding: 1.5rem;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   Base Reset & Defaults
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    background-color: var(--color-bg-section);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* ========================================
   Scroll Animations
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Header & Hero Section
   ======================================== */
.carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 350px;
    max-height: 850px;
    overflow: hidden;
}
.slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slideAnimation 15s infinite;
}
.slide {
    flex: 0 0 33.333%;
    width: 33.333%;
    height: 100%;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
}

.header-bar {
    display: flex;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 3rem;
    z-index: 10;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    transition: all var(--transition-normal);
}

.header-bar.scrolled {
    position: fixed;
    background: rgba(2, 42, 121, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    box-shadow: var(--shadow-lg);
}

.header-bar .logo {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: width var(--transition-normal);
}

.header-bar.scrolled .logo {
    width: 280px;
}

.side-drawer {
    display: none;
}

.header-bar .hamburger {
    display: none;
}

.hamburger {
    display: none;
}

.nav-links a {
    text-decoration: none;
    font-family: var(--font-body);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    padding: 0.6em 1.2em;
    border-radius: 50px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links {
    display: flex;
    gap: 0.25em;
    padding: 1rem;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-links a:visited {
    color: white;
}

/* Hero Overlay Text */
.overlay-text {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 1;
    width: 90%;
    max-width: 800px;
}

.overlay-text h1 {
    font-family: var(--font-heading);
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.25em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.overlay-text h2 {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero CTA Button */
.location-button {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    width: auto;
    padding: 1.1em 2.5em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 123, 185, 0.4);
    transition: all var(--transition-normal);
}

.location-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 103, 185, 0.5);
}

.location-button:active {
    transform: translateY(-1px);
}

/* ========================================
   About Section
   ======================================== */
#about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    width: 100%;
    background-color: var(--color-bg-light);
    padding: var(--section-padding);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

#about-container .smart-laundry-storefront {
    border-radius: var(--border-radius-lg);
    height: auto;
    width: 100%;
    max-width: 50vw;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal);
}

#about-container .smart-laundry-storefront:hover {
    transform: scale(1.02);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 550px;
    font-family: var(--font-body);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5em 0;
    padding-left: 1.5em;
    position: relative;
}

.about-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.about-text h4 {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-text-muted);
    font-weight: 400;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75em;
    margin-bottom: 0.5em;
}

.section-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
    border-radius: 2px;
}

.section-header.light {
    color: var(--color-primary);
}

.section-header.light::after {
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

/* Section headers on dark background */
#locations .section-header::after,
#reviews .section-header::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.9), var(--color-primary-light));
}

/* ========================================
   Locations Section
   ======================================== */
#locations {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-bg-section) 0%, var(--color-bg-dark) 100%);
}

.locations-subtitle {
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.location-address-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    width: 100%;
}

.location-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--color-text-light);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.location-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 42, 121, 0.95) 0%, rgba(2, 42, 121, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    transition: background var(--transition-normal);
}

.location-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.location-card:hover::before {
    background: linear-gradient(to top, rgba(2, 42, 121, 0.98) 0%, rgba(2, 42, 121, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.location-card:visited {
    color: var(--color-text-light);
}

.location-card.winder {
    background-image: url('images/winder-smart-laundry.png');
    background-position: center 25%;
}

.location-card.marietta {
    background-image: url('images/marietta-smart-laundry.png');
}

.location-card.lilburn {
    background-image: url('images/lilburn-smart-laundry.png');
}

.location-card.atlanta {
    background-image: url('images/atlanta-smart-laundry.png');
}

.location-image {
    display: none;
}

.location-info {
    position: relative;
    z-index: 1;
    padding: 1.75rem;
}

.location-info h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5em;
    letter-spacing: 1px;
}

.location-info .address {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1em;
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: all var(--transition-fast);
}

.location-card:hover .directions-link {
    color: #6ee7b7;
    gap: 0.75em;
}


/* ========================================
   Services Section
   ======================================== */
#services {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    margin-top: 0;
    padding: var(--section-padding);
    padding-bottom: 6rem;
}

#services h1:not(.section-header) {
    color: var(--color-text-light);
    font-family: var(--font-heading);
}

.services-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;
    gap: 2rem;
}

.wash-and-fold,
.self-service {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 350px;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.wash-and-fold::before,
.self-service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    transition: background var(--transition-normal);
}

.wash-and-fold:hover,
.self-service:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.wash-and-fold {
    background-image: url('images/wash-and-fold.jpg');
}

.self-service {
    background-image: url('images/self-service-laundry.jpeg');
}

.services-blocks h1 {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.services-blocks h2 {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

.instructions {
    max-width: 1000px;
    width: 100%;
    margin-top: 2rem;
}

.instructions img {
    border-radius: var(--border-radius-lg);
    width: 100%;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Reviews Section
   ======================================== */
#reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-section) 100%);
    padding: var(--section-padding);
}

.google-reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 2rem 3rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.google-logo {
    width: 92px;
    height: auto;
    margin-bottom: 0.75rem;
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.google-rating .stars {
    color: #FBBC04;
    font-size: 32px;
    letter-spacing: 3px;
}

.google-rating .rating-text {
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Elfsight Google Reviews Widget */
#reviews [class^="elfsight-app-"] {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
}

.view-all-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.view-all-reviews-btn:hover {
    background: var(--color-bg-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.view-all-reviews-btn:visited {
    color: var(--color-primary);
}

.google-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background-color: var(--color-bg-light);
    width: 100%;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.left-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 300px;
    height: auto;
}

.visit-button {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border-radius: var(--border-radius);
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.visit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

footer nav {
    text-align: left;
    line-height: 2.2;
    font-family: var(--font-body);
}

footer h2 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

footer a {
    font-family: var(--font-body);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

footer a:hover {
    color: var(--color-primary);
}

footer a:visited {
    color: var(--color-text-muted);
}

footer a:visited:hover {
    color: var(--color-primary);
}

.copyright-text {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

footer h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin: 0.25rem 0;
}

footer h3 a {
    margin-left: 0.5rem;
}

nav li {
    list-style: none;
}

/* ========================================
   Animations
   ======================================== */
@keyframes slideAnimation {
    0%    { transform: translateX(0%); }
    30%   { transform: translateX(0%); }
    33.333% { transform: translateX(-33.333%); }
    63.333% { transform: translateX(-33.333%); }
    66.666% { transform: translateX(-66.666%); }
    96.666% { transform: translateX(-66.666%); }
    100%  { transform: translateX(0%); }
}

/* ========================================
   Responsive: Mobile (max-width: 479px)
   ======================================== */
@media screen and (max-width: 479px) {
    .section-header {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .section-header::after {
        width: 40px;
        height: 3px;
    }

    html {
        max-width: 100%;
    }

    .carousel {
        height: 55vh;
        min-height: 280px;
    }

    .overlay-text {
        z-index: 1;
        width: 95%;
    }

    .overlay-text h1 {
        font-size: 1.75rem;
    }

    .overlay-text h2 {
        font-size: 1rem;
    }

    .location-button {
        padding: 0.9em 2em;
        font-size: 0.85rem;
    }

    .header-bar {
        justify-content: center;
        padding: 1rem;
    }

    .header-bar.scrolled {
        padding: 0.75rem 1rem;
    }

    .header-bar .logo {
        width: 65vw;
        max-width: 250px;
    }

    .header-bar.scrolled .logo {
        width: 180px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        position: fixed;
        top: 1.25rem;
        left: 1rem;
        z-index:1001;
    }

    .hamburger .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .header-bar .hamburger {
        display: block;
    }

    .side-drawer {
        display: block;
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
        transition: transform 0.3s ease-out;
        z-index: 1002;
        box-shadow: var(--shadow-xl);
    }

    .side-drawer.open {
        transform: translateX(280px);
    }

    .side-drawer .nav-links {
        display: flex;
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        gap: 0.5rem;
    }

    .side-drawer .nav-links a {
        color: white;
        font-size: 1rem;
        padding: 0.75rem 1rem;
        border-radius: var(--border-radius);
    }

    .drawer-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: transparent;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
        color: white;
        transition: color var(--transition-fast);
    }

    .drawer-close:hover {
        color: var(--color-accent);
    }

    /* About Section Mobile */
    #about-container {
        flex-direction: column;
        height: auto;
        padding: var(--section-padding-mobile);
        padding-top: 3rem;
        padding-bottom: 3rem;
        gap: 2rem;
    }

    #about-container .smart-laundry-storefront {
        max-width: 100%;
        height: auto;
    }

    .about-text {
        width: 100%;
        max-width: none;
    }

    .about-text h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .about-text li {
        font-size: 0.9rem;
    }

    .about-text h4 {
        font-size: 0.8rem;
    }

    /* Locations Mobile */
    #locations {
        padding: var(--section-padding-mobile);
    }

    .locations-subtitle {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .location-address-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .location-card {
        min-height: 220px;
    }

    .location-info {
        padding: 1.25rem;
    }

    .location-info h2 {
        font-size: 1.25rem;
    }

    .location-info .address {
        font-size: 0.85rem;
    }

    /* Services Mobile */
    #services {
        padding: var(--section-padding-mobile);
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    }

    .services-blocks {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .wash-and-fold,
    .self-service {
        min-height: 200px;
        padding: 1.5rem;
    }

    .services-blocks h1 {
        font-size: 1.25rem;
    }

    .services-blocks h2 {
        font-size: 0.85rem;
    }

    .instructions {
        margin-top: 1rem;
        padding: 0 0.5rem;
    }

    .instructions img {
        max-width: 100%;
    }

    /* Reviews Mobile */
    #reviews {
        padding: var(--section-padding-mobile);
    }

    .google-reviews-header {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        width: calc(100% - 2rem);
    }

    .google-rating .stars {
        font-size: 24px;
    }

    .google-rating .rating-text {
        font-size: 0.8rem;
        text-align: center;
    }

    #reviews [class^="elfsight-app-"] {
        width: 100%;
    }

    .view-all-reviews-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    /* Footer Mobile */
    footer {
        padding: 2rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .left-footer {
        align-items: center;
    }

    .footer-logo {
        width: 250px;
    }

    .visit-button {
        max-width: 250px;
    }

    footer nav {
        text-align: center;
    }

    .copyright-text {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    footer h3 {
        font-size: 0.75rem;
    }
}

/* ========================================
   Responsive: Tablet (max-width: 1023px)
   ======================================== */
@media screen and (max-width: 1023px) and (min-width: 480px) {
    .header-bar {
        padding: 1rem 2rem;
    }

    .header-bar .logo {
        width: 280px;
    }

    .header-bar.scrolled .logo {
        width: 220px;
    }

    #about-container {
        flex-direction: column;
        height: auto;
        padding: 4rem 2rem;
        gap: 2rem;
    }

    #about-container .smart-laundry-storefront {
        max-width: 80%;
        height: auto;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .location-address-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .location-card {
        min-height: 260px;
    }

    .services-blocks {
        max-width: 100%;
        padding: 0 1rem;
    }

    .wash-and-fold,
    .self-service {
        min-height: 280px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .left-footer {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}

/* ========================================
   Responsive: Medium screens
   ======================================== */
@media screen and (max-width: 768px) {
    .location-address-container {
        grid-template-columns: 1fr;
    }

    .services-blocks {
        grid-template-columns: 1fr;
    }
}