/* ===========================
   CSS Custom Properties
   =========================== */
:root {
    --color-primary: #2a7a6e;
    --color-primary-dark: #1d5c53;
    --color-primary-light: #3aa898;
    --color-accent: #e8a838;
    --color-accent-light: #f5c56b;
    --color-bg: #faf9f7;
    --color-bg-alt: #f0eeeb;
    --color-surface: #ffffff;
    --color-text: #2d2d2d;
    --color-text-muted: #6b6b6b;
    --color-text-light: #9a9a9a;
    --color-border: #e5e3df;
    --color-hero-bg: linear-gradient(135deg, #2a7a6e 0%, #1d5c53 50%, #164a42 100%);
    --color-gradient-text: linear-gradient(135deg, #e8a838 0%, #f5c56b 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 24px rgba(42, 122, 110, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --max-width: 1200px;
    --header-height: 72px;
}

/* ===========================
   Reset & Base
   =========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* Site-wide overflow containment — the most reliable
   cross-browser fix for mobile horizontal scroll */
.site-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
    position: relative;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--color-primary-dark);
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* ===========================
   Typography
   =========================== */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    text-align: center;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.text-gradient {
    background: var(--color-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    background: rgba(42, 122, 110, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

section {
    padding: 80px 0;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
    min-width: 0;
    flex-shrink: 1;
}

.header.scrolled .logo {
    color: var(--color-text);
}

.logo-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.logo-name {
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-sub {
    font-size: 0.65rem;
    opacity: 0.7;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.header.scrolled .nav-links a {
    color: var(--color-text-muted);
}

.header.scrolled .nav-links a:hover {
    color: var(--color-text);
}

.nav-cta {
    background: var(--color-accent) !important;
    color: var(--color-text) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
}

.nav-cta:hover {
    background: var(--color-accent-light) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.header.scrolled .mobile-menu-btn span {
    background: var(--color-text);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* ===========================
   Mobile CTA Bar
   =========================== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-surface);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 16px;
    gap: 10px;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

.mobile-cta-call {
    background: var(--color-primary);
    color: #fff;
}

.mobile-cta-book {
    background: var(--color-accent);
    color: var(--color-text);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    background: var(--color-hero-bg);
    padding: 140px 0 100px;
    overflow: clip;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: clip;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: #fff;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 30%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-accent-light);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    word-wrap: break-word;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.hero-paw-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===========================
   Services Section
   =========================== */
.services {
    background: var(--color-bg);
}

.services .container {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

.service-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    overflow: hidden;
    word-wrap: break-word;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary-light);
}


.service-featured h3 {
    color: var(--color-text);
}

.service-featured p {
    color: var(--color-text-muted);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-featured .service-card p,
.service-featured p {
    color: rgba(255, 255, 255, 0.8);
}

.service-includes {
    margin: 20px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-includes li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.service-includes li::before {
    content: '✓';
    font-weight: 700;
    color: var(--color-primary);
}

.service-featured .btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.service-featured .btn-primary:hover {
    background: var(--color-primary-dark);
}

/* ===========================
   Self-Serve Dog Wash
   =========================== */
.self-serve {
    background: var(--color-bg-alt);
}

.self-serve-content {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 60px;
    align-items: center;
}

.self-serve-text h2 {
    text-align: left;
}

.self-serve-text>p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.self-serve-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.self-serve-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.self-serve-features li strong {
    display: block;
    margin-bottom: 4px;
}

.self-serve-features li p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.self-serve-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.self-serve-graphic {
    position: relative;
    width: 280px;
    height: 280px;
    background: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.graphic-emoji {
    font-size: 100px;
}

.graphic-secondary {
    position: absolute;
    font-size: 60px;
    bottom: 20px;
    right: 10px;
    animation: float 4s ease-in-out infinite;
}

/* ===========================
   About Section
   =========================== */
.about {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--color-surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.about-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery {
    background: var(--color-bg-alt);
}

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

.gallery-item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.gallery-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, #f0eeeb 0%, #e5e3df 100%);
}

.gallery-item span {
    display: block;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.gallery-cta {
    text-align: center;
    margin-top: 32px;
    color: var(--color-text-muted);
}

.gallery-cta a {
    font-weight: 600;
}

/* ===========================
   Reviews Section
   =========================== */
.reviews {
    background: var(--color-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--color-surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-card);
}

.review-stars {
    margin-bottom: 16px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--color-text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.review-author strong {
    font-size: 0.9rem;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background: var(--color-bg-alt);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

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

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

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h4 {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-item p,
.contact-item small {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-item a {
    font-weight: 500;
}

.contact-map {
    margin-top: 8px;
    max-width: 100%;
    overflow: hidden;
}

.contact-form {
    background: var(--color-surface);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 100%;
    overflow: hidden;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(42, 122, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 12px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

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

.footer-brand .logo-icon {
    font-size: 1.5rem;
}

.footer-brand strong {
    color: #fff;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ===========================
   Scroll Animations
   =========================== */
.animate-target {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger cards */
.service-card.animate-target:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card.animate-target:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card.animate-target:nth-child(4) {
    transition-delay: 0.3s;
}

.about-card.animate-target:nth-child(2) {
    transition-delay: 0.1s;
}

.about-card.animate-target:nth-child(3) {
    transition-delay: 0.2s;
}

.about-card.animate-target:nth-child(4) {
    transition-delay: 0.3s;
}

.about-card.animate-target:nth-child(5) {
    transition-delay: 0.4s;
}

.about-card.animate-target:nth-child(6) {
    transition-delay: 0.5s;
}

.review-card.animate-target:nth-child(2) {
    transition-delay: 0.1s;
}

.review-card.animate-target:nth-child(3) {
    transition-delay: 0.2s;
}

.gallery-item.animate-target:nth-child(2) {
    transition-delay: 0.08s;
}

.gallery-item.animate-target:nth-child(3) {
    transition-delay: 0.16s;
}

.gallery-item.animate-target:nth-child(4) {
    transition-delay: 0.24s;
}

.gallery-item.animate-target:nth-child(5) {
    transition-delay: 0.32s;
}

.gallery-item.animate-target:nth-child(6) {
    transition-delay: 0.4s;
}

/* ===========================
   Responsive — Tablet
   =========================== */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

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

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

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

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

    .service-featured {
        grid-row: span 1;
    }

    .self-serve-content {
        grid-template-columns: 1fr;
    }

    .self-serve-visual {
        display: none;
    }

    .self-serve-text h2 {
        text-align: center;
    }

    .self-serve-text>p {
        text-align: center;
    }

    .self-serve-text .btn {
        display: flex;
        justify-content: center;
    }

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

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

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

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

/* ===========================
   Responsive — Mobile
   =========================== */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Section tags and subtitles should center on mobile */
    .section-tag {
        font-size: 0.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    /* Mobile hamburger */
    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile nav drawer with overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--color-surface);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        color: var(--color-text) !important;
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 1.05rem;
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        display: block !important;
        border-bottom: none !important;
    }

    /* Sticky CTA bar */
    .mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }

    /* Hero adjustments */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Logo resize */
    .logo-name {
        font-size: 0.95rem;
    }

    .logo-sub {
        font-size: 0.55rem;
    }

    /* Grid adjustments */
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-placeholder {
        height: 140px;
        font-size: 48px;
    }

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

    .review-card {
        padding: 24px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-map iframe {
        height: 160px;
    }

    /* Self-serve mobile */
    .self-serve-features li {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .self-serve-text .btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer mobile */
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    /* About cards on mobile */
    .about-card {
        padding: 24px;
    }

    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        /* Prevent iOS zoom on focus */
    }
}

@media (max-width: 480px) {
    .hero-trust {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

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

    .service-card {
        padding: 24px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .about-icon {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .contact-item {
        gap: 12px;
    }
}