/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Desktop only: hide mobile menu buttons */
@media (min-width: 1441px) {
    .hamburger, .menu-close { display: none !important; }
    .nav-menu { display: flex !important; }
}

:root { --radius: 20px; }

/* Extended mobile nav up to 1440px: keep mobile menu overlay */
@media (max-width: 1440px) {
    .hamburger { display: flex !important; z-index: 1900; }
    body.no-scroll .hamburger { display: none !important; }

    /* Mobile overlay menu: slide the whole panel as one unit */
    .nav-menu {
        display: flex;
        position: fixed;
        top: 0; right: 0; bottom: 0; left: 0;
        background: #fefcf3;
        padding: 2rem 1.25rem;
        margin: 0;
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        overflow: hidden; /* prevent children from appearing outside panel during motion */
        transform: translate3d(100%, 0, 0);
        opacity: 0; visibility: hidden; pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0.35s;
        will-change: transform, opacity;
        backface-visibility: hidden;
    }
    .nav-menu.active {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    /* Ensure menu items don't animate independently on open */
    .nav-menu li, .nav-menu li a {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .nav-menu li a { border-radius: var(--radius); }

    .menu-close { position: fixed; top: 12px; right: 12px; width: 44px; height: 44px; border: none; background: rgba(0,0,0,0.05); border-radius: var(--radius); font-size: 28px; line-height: 1; color: #4a5d3a; display: none; z-index: 2101; }
    .nav-menu.active ~ .menu-close { display: inline-flex; align-items: center; justify-content: center; }
}

:root { --radius: 20px; }

html { overflow-x: hidden; }

/* Headings and paragraph headings use Prompt */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', 'Helvetica Neue', Helvetica, 'Segoe UI', Roboto, Arial, sans-serif;
    font-weight: 400;
}

/* Apply Prompt to paragraphs as well */
p {
    font-family: 'Prompt', 'Helvetica Neue', Helvetica, 'Segoe UI', Roboto, Arial, sans-serif;
    font-weight: 300;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    font-size: 18px;
}

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

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #87a96b 0%, #fefcf3 50%, #d4a5a5 100%);
    color: #4a5d3a;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(135, 169, 107, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    color: #2d3a26;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    cursor: pointer;
    margin-left: auto;
}
.hamburger .bar {
    width: 24px;
    height: 2px;
    background: #4a5d3a;
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active .bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #4a5d3a;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 800;
    font-size: 1.35rem;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius);
    background: rgba(254, 252, 243, 0.85);
    border: none;
    box-shadow: 0 4px 10px rgba(135, 169, 107, 0.15);
    backdrop-filter: blur(10px);
}

.nav-menu a:hover {
    color: #fefcf3;
    background: rgba(135, 169, 107, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 169, 107, 0.3);
}

/* Hero Section */
.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    margin-top: 70px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: min(90vw, 1000px);
    padding: 10vh 16px 0;
    margin-left: auto;
    margin-right: auto;
}

/* Hero top CTA */
.hero-top-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
.hero-gallery-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4a5a5, #c49999);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}
.hero-gallery-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 165, 165, 0.6);
    background: linear-gradient(135deg, #c49999, #b08787);
}

/* Hero image row */
.hero-image-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 1rem auto 2rem auto;
    max-width: 1000px;
}
.hero-image-row img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #87a96b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    line-height: 1.15;
    word-break: break-word;
    hyphens: auto;
    text-wrap: balance;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
    color: #87a96b;
    font-weight: 300;
    line-height: 1.6;
    text-wrap: pretty;
}

.cta-button {
    background: linear-gradient(135deg, #d4a5a5, #c49999);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #c49999, #b08787);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 165, 165, 0.6);
}

/* Sections */
section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: #87a96b;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(135, 169, 107, 0.1);
}

/* Centering overrides */
nav {
    justify-content: center;
    gap: 1rem;
}
.nav-menu {
    justify-content: center;
}
.logo { text-align: center; }
.service-section { text-align: center; }
.service-section h2 { text-align: center; }
.services-list, .payment-list, .serve-list { text-align: center; }
.offer-item, .feature, .facility-item, .contact-item { text-align: center; }

/* About Section */
.about {
    background: linear-gradient(135deg, #fefcf3 0%, #f9f6f0 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%2387a96b" opacity="0.1"/></svg>');
    background-size: 50px 50px;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about p {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #475569;
    font-weight: 300;
    line-height: 1.8;
}

/* What We Offer Section */
.what-we-offer {
    background: #fefcf3;
    position: relative;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.offer-item {
    background: linear-gradient(135deg, #87a96b 0%, #a4c3a2 50%, #d4a5a5 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(135, 169, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.offer-item:hover::before {
    left: 100%;
}

.offer-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(135, 169, 107, 0.5);
}

.offer-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f9f6f0 0%, #fefcf3 50%, #f9f6f0 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.service-section {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(135, 169, 107, 0.15);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(135, 169, 107, 0.25);
    border-color: #d4a5a5;
}

.service-section h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #87a96b;
    text-shadow: none;
    position: relative;
}

.service-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #d4a5a5, #c49999);
    border-radius: 2px;
}

.services-list, .payment-list, .serve-list {
    list-style: none;
    margin-bottom: 2rem;
}

.services-list li, .payment-list li, .serve-list li {
    background: linear-gradient(135deg, #fefcf3, white);
    padding: 1.4rem;
    margin-bottom: 0.9rem;
    border-radius: 12px;
    border-left: 5px solid #87a96b;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(135, 169, 107, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-size: 1.125rem;
}

.services-list li::before, .payment-list li::before, .serve-list li::before {
    content: '✓';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #87a96b;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.services-list li:hover, .payment-list li:hover, .serve-list li:hover {
    transform: translateX(15px);
    box-shadow: 0 8px 20px rgba(135, 169, 107, 0.2);
    border-left-color: #a4c3a2;
}

.services-list li:hover::before, .payment-list li:hover::before, .serve-list li:hover::before {
    opacity: 1;
}

.payment-list li {
    border-left-color: #d4a5a5;
}

.payment-list li:hover {
    border-left-color: #c49999;
}

.serve-list li {
    border-left-color: #a4c3a2;
}

.serve-list li:hover {
    border-left-color: #87a96b;
}

/* Facilities Section */
.facilities {
    background: #f8f9fa;
}

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

.facility-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Gallery Page */
.gallery-hero {
    padding-top: 120px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #fefcf3 0%, #f9f6f0 100%);
}
.gallery-hero .container { text-align: center; }
.gallery-hero h1 {
    color: #87a96b;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.gallery-hero p {
    color: #475569;
    font-size: 1.2rem;
}

.gallery {
    background: #fefcf3;
}
.gallery .container { padding-top: 20px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    background: #fff;
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.04);
}
.gallery-item .caption {
    display: none;
}

@media (max-width: 768px) {
    .gallery-hero { padding-top: 100px; }
    .gallery-hero h1 { font-size: 2.2rem; }
    /* Make gallery images square on mobile */
    .gallery-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
}

/* Lightbox styles */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}
.lightbox-overlay.active { display: flex; }
.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
}
.lightbox-image {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-close { top: 20px; right: 20px; transform: none; }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #87a96b 0%, #a4c3a2 50%, #d4a5a5 100%);
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 252, 243, 0.1);
    backdrop-filter: blur(1px);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact h2 {
    color: #fefcf3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    justify-items: center;
}

.contact-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(254, 252, 243, 0.95);
    backdrop-filter: blur(10px);
    color: #87a96b;
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(135, 169, 107, 0.3);
    transition: all 0.4s;
    width: 100%;
    max-width: 380px;
    border: 2px solid rgba(212, 165, 165, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 165, 0.1), transparent);
    transition: left 0.6s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(135, 169, 107, 0.4);
    border-color: #d4a5a5;
}

.contact-item h3 {
    color: #87a96b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.contact-item p {
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    color: #4a5d3a;
}

.contact-item p:hover {
    color: #d4a5a5;
    transform: scale(1.1);
}

.apply-section {
    text-align: center;
    margin-top: 4rem;
}

.apply-button {
    background: linear-gradient(135deg, #d4a5a5, #c49999);
    color: white;
    padding: 25px 50px;
    border: none;
    border-radius: var(--radius);
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 15px 40px rgba(212, 165, 165, 0.4);
    border: 3px solid rgba(254, 252, 243, 0.3);
}

.apply-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(212, 165, 165, 0.6);
    background: linear-gradient(135deg, #c49999, #b08787);
    border-color: #fefcf3;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f39c12;
}

.contact-form button {
    background: #2c3e50;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #34495e;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1900;
    }

    .hero-content {
        max-width: 640px;
        padding: 0 14px;
    }

    .hero-top-cta { margin-bottom: 0.75rem; }
    .hero-image-row {
        /* On mobile, use two columns so images are larger */
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    /* Hide the leftmost preview item so the remaining two get larger */
    .hero-image-row > :first-child { display: none; }
    .hero-image-row img { height: 140px; }

    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.2;
        max-width: 22ch;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 40ch;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hide hamburger when menu is open */
    body.no-scroll .hamburger {
        display: none !important;
    }

    .menu-close {
        position: fixed;
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        border: none;
        background: rgba(0,0,0,0.05);
        border-radius: var(--radius);
        font-size: 28px;
        line-height: 1;
        color: #4a5d3a;
        display: none;
        z-index: 2101;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #fefcf3;
        padding: 2rem 1.25rem;
        margin: 0;
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        /* Slide-in off-canvas initial state */
        overflow: hidden;
        transform: translate3d(100%, 0, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0.35s;
        will-change: transform, opacity;
        backface-visibility: hidden;
    }

    .nav-menu.active {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

    /* Ensure menu items don't animate independently on open */
    .nav-menu li, .nav-menu li a {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .nav-menu.active ~ .menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.75rem;
        background: rgba(254, 252, 243, 0.95);
        border-radius: var(--radius);
        text-align: center;
        width: 100%;
        max-width: 560px;
        color: #4a5d3a;
        border: none;
        box-shadow: 0 10px 24px rgba(135, 169, 107, 0.18);
    }

    .hero-content h2 { font-size: 2.4rem; }
    .hero-content p { font-size: 1.2rem; }

    .nav-menu li a:hover {
        background: rgba(135, 169, 107, 0.15);
    }

    body.no-scroll {
        overflow: hidden;
        height: 100vh;
    }

    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .facility-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }

    /* Services grid: single column on mobile to avoid overflow */
    .services-grid { grid-template-columns: 1fr; }

    /* Make bottom lists narrower and centered on mobile without overflow */
    .service-section {
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
        padding: 1.5rem;
        box-sizing: border-box;
    }
    .services-list, .payment-list, .serve-list {
        max-width: 100%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        box-sizing: border-box;
    }
    /* Disable horizontal shift on list items to prevent cutoff */
    .services-list li, .payment-list li, .serve-list li { transform: none !important; }
}

/* Gallery preview heading and intro alignment */
.gallery-preview .container { text-align: center; }
.gallery-preview .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem auto;
    max-width: 900px;
    color: #475569;
    font-weight: 300;
}
