/**
 * Arise Senior Care Theme Styles
 */

:root {
    --plum: #6B4E71;
    --plum-light: #8A6B8F;
    --plum-dark: #4A3550;
    --lavender: #E8E0EB;
    --lavender-soft: #F5F1F7;
    --cream: #FDFBF8;
    --warm-gray: #6E6A67;
    --text-dark: #2D2A2E;
    --sage: #9CAF9B;
    --sage-light: #E8F0E8;
    --blush: #E8D5D5;
}

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

html {
    scroll-behavior: smooth;
}

/* Background Color Presets (theme.json palette) */
.has-white-background-color { background-color: #FFFFFF; }
.has-cream-background-color { background-color: var(--cream); }
.has-lavender-soft-background-color { background-color: var(--lavender-soft); }
.has-lavender-background-color { background-color: var(--lavender); }
.has-plum-background-color { background-color: var(--plum); }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 300;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 4rem;
    z-index: 100;
    background: linear-gradient(to bottom, var(--cream) 60%, transparent);
    transition: all 0.4s ease;
}

/* WordPress Admin Bar offset */
body.admin-bar nav {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar nav {
        top: 46px;
    }
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.scrolled {
    background: rgba(253, 251, 248, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(107, 78, 113, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 64px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--plum);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--plum);
}

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

.nav-cta {
    background: var(--plum);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 78, 113, 0.25);
}

/* Buttons */
.btn-primary {
    background: var(--plum);
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(107, 78, 113, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--lavender);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--plum);
    color: var(--plum);
    background: var(--lavender-soft);
}

.btn-white {
    background: white;
    color: var(--plum);
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

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

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--warm-gray);
}

/* Hero Section */
.hero {
    padding: 12rem 4rem 8rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, var(--lavender) 0%, transparent 70%);
    opacity: 0.6;
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--sage-light);
    color: var(--plum-dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero h1 em {
    color: var(--plum);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Hero Visual / Value Cards */
.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(107, 78, 113, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(107, 78, 113, 0.12);
}

.value-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    color: white;
}

.value-card.featured .value-icon {
    background: rgba(255, 255, 255, 0.2);
}

.value-card.featured .value-icon svg {
    color: white;
}

.value-card.featured .value-card-title {
    color: white;
}

.value-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--lavender-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--plum);
}

.value-card .value-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.value-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lavender);
}

.value-card.featured .value-stat {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.value-stat strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--plum);
    line-height: 1;
}

.value-card.featured .value-stat strong {
    color: white;
}

.value-stat span {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.value-card.featured .value-stat span {
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
    padding: 8rem 4rem;
    position: relative;
}

.about:not(.has-background) {
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.about-visual {
    position: sticky;
    top: 8rem;
}

.about-photo {
    margin-bottom: 1.5rem;
}

.about-photo img {
    width: 100%;
    max-width: 420px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(107, 78, 113, 0.15);
}

.about-quote {
    max-width: 420px;
}

.about-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--warm-gray);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content h2 span {
    color: var(--plum);
}

.about-subtitle {
    font-size: 1rem;
    color: var(--plum);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lavender);
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--plum);
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-top: 0.25rem;
}

/* Process Section */
.process {
    padding: 8rem 4rem;
}

.process:not(.has-background) {
    background: var(--cream);
}

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

.process-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.process-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-intro p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    font-style: italic;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--plum);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.process-promise {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(107, 78, 113, 0.08);
}

.promise-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.promise-list {
    list-style: none;
}

.promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--warm-gray);
}

.promise-list li svg {
    width: 20px;
    height: 20px;
    color: var(--sage);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Benefits Section */
.benefits {
    padding: 8rem 4rem;
}

.benefits:not(.has-background) {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--lavender-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--plum);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 8rem 4rem;
}

.services:not(.has-background) {
    background: var(--lavender-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--sage));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(107, 78, 113, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--lavender-soft);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--plum);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--plum);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: white;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(107, 78, 113, 0.1);
}

.services-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 4rem;
}

.testimonials:not(.has-background) {
    background: white;
}

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

.testimonial-card {
    background: var(--cream);
    padding: 3rem;
    border-radius: 1.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: 40px;
    height: 40px;
    background: var(--plum);
    opacity: 0.1;
    border-radius: 50%;
}

.quote-icon {
    color: var(--plum);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--sage-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--plum);
    font-weight: 600;
}

.author-info strong {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

/* CTA Section */
.cta {
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta:not(.has-background),
.cta.has-plum-background-color {
    background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-light) 100%);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23ffffff' fill-opacity='0.03'%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");
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Text Section */
.text-block {
    padding: 8rem 4rem;
}

.text-block:not(.has-background) {
    background: white;
}

.text-block-container {
    max-width: 800px;
    margin: 0 auto;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.text-block-content p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Areas Served Section */
.areas-served {
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
}

.areas-served:not(.has-background) {
    background: var(--cream);
}

.areas-served::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 50%;
    height: 140%;
    background: radial-gradient(ellipse at center, var(--lavender) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 0;
}

.areas-served-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.areas-served-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}

.areas-served-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.areas-served-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    font-style: italic;
}

.areas-served-towns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.town-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: white;
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);
    box-shadow: 0 2px 12px rgba(107, 78, 113, 0.06);
    border: 1px solid var(--lavender);
    transition: all 0.3s ease;
}

.town-pill:hover {
    background: var(--lavender-soft);
    border-color: var(--plum-light);
    color: var(--plum);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 78, 113, 0.1);
}

.town-pill-icon {
    width: 14px;
    height: 14px;
    color: var(--plum-light);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.town-pill:hover .town-pill-icon {
    color: var(--plum);
}

.areas-served-footer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--lavender);
}

.areas-served-footer p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* Footer */
footer {
    padding: 4rem;
    background: var(--cream);
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 1rem;
}

.footer-credentials {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-contact a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--plum);
}

.footer-associations {
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lavender);
}

.associations-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.associations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.associations-logos img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(30%);
}

.associations-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--warm-gray);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero {
        padding: 9rem 2rem 4rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-values {
        grid-template-columns: 1fr 1fr;
    }

    .value-card.featured {
        grid-column: span 2;
    }

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

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .about-visual {
        position: static;
    }

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

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

    .areas-served {
        padding: 6rem 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .logo img {
        height: 48px;
    }

    .nav-cta {
        padding: 0.7rem 1rem;
    }

    .hero {
        padding: 9rem 1.5rem 4rem;
    }

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

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group a {
        text-align: center;
        justify-content: center;
    }

    .section-header h2,
    .about-content h2,
    .cta h2 {
        font-size: 2rem;
    }

    .process-intro h2 {
        line-height: 1.25em;
    }

    .hero-values {
        grid-template-columns: 1fr;
    }

    .value-card.featured {
        grid-column: span 1;
    }

    .about {
        padding: 4rem 1.5rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .process {
        padding: 4rem 1.5rem;
    }

    .benefits {
        padding: 4rem 1.5rem;
    }

    .services {
        padding: 4rem 1.5rem;
    }

    .testimonials {
        padding: 4rem 1.5rem;
    }

    .text-block {
        padding: 4rem 1.5rem;
    }

    .cta {
        padding: 4rem 1.5rem;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .areas-served {
        padding: 4rem 1.5rem;
    }

    .areas-served-header h2 {
        font-size: 2rem;
    }

    .areas-served-towns {
        gap: 0.5rem;
    }

    .town-pill {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
