/* ==========================================================================
   The Cleaning Fairies - Main Stylesheet
   Colour Palette: Dusty rose/pink brand with clean whites and soft greys
   ========================================================================== */

:root {
    --primary: #C4917B;
    --primary-dark: #A67A68;
    --primary-light: #D4A898;
    --primary-pale: #F2E4DF;
    --text-dark: #3D3D3D;
    --text-medium: #6B6B6B;
    --text-light: #999999;
    --bg-light: #F7F4F2;
    --bg-white: #FFFFFF;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --border: #E8E0DC;
    --shadow: rgba(196, 145, 123, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.1);
    --transition: 0.3s ease;
}

/* Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary);
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--bg-white);
}

/* Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-rose {
    background-color: var(--primary);
    color: var(--white);
}

.btn-rose:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

/* Header & Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px var(--shadow-dark);
    transition: all var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

.site-logo-text span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

.main-nav a {
    display: block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.3px;
    border-radius: 4px;
    transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    background-color: var(--primary-pale);
}

.nav-cta {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

.nav-cta:hover {
    background-color: var(--primary-dark) !important;
    color: var(--white) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 6px 0;
    transition: all var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Photo background with brand gradient overlay */
    background:
        linear-gradient(
            135deg,
            rgba(247, 244, 242, 0.52) 0%,
            rgba(242, 228, 223, 0.90) 50%,
            rgba(247, 244, 242, 0.52) 100%
        ),
        url('../images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 74px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-pale) 0%, transparent 70%);
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-pale) 0%, transparent 70%);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    padding: 40px 20px;
}

.hero-fairy-logo {
    width: 160px;
    height: auto;
    margin: 0 auto 18px;
    opacity: 0.95;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.12));
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.hero h1 span {
    display: block;
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    color: var(--primary-light);
    font-weight: 400;
    margin-top: 4px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.8;
}

.hero-tagline {
    font-size: 1.35rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary-dark);
    font-style: italic;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-phone svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

/* Section Headers
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

/* About / Mission Section
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary-light);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-pale);
    border-radius: 50%;
}

.about-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Services Section
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-card-icon {
    padding: 35px 30px 15px;
    text-align: center;
}

.service-card-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--primary);
}

.service-card-body {
    padding: 15px 30px 35px;
    text-align: center;
}

.service-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 0.93rem;
    line-height: 1.75;
}

/* Why Choose Us
   ========================================================================== */

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-content h2 {
    margin-bottom: 20px;
}

.why-us-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.why-us-features {
    display: grid;
    gap: 18px;
}

.why-us-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-us-feature svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-us-feature span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.why-us-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow);
}

.why-us-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Gallery Section
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(196, 145, 123, 0.3), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Gallery pagination
   ========================================================================== */

.pagination-wrap {
    margin-top: 30px;
}

.pagination-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.pagination-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-pale);
}

.pagination-link.is-active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    pointer-events: none;
}

.pagination-ellipsis {
    color: var(--text-light);
    padding: 0 4px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color var(--transition);
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 15px 20px;
    border-radius: 4px;
    transition: all var(--transition);
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-light);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Testimonials
   ========================================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 35px 30px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary-pale);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

.testimonial-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

/* Contact Section
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.contact-detail-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.contact-detail-text span,
.contact-detail-text a {
    font-size: 0.93rem;
    color: var(--text-medium);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 5px 25px var(--shadow);
}

.contact-form h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: border-color var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-pale);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form status and inline errors
   ========================================================================== */

.form-status {
    min-height: 1.2em;
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 6px;
    background: var(--bg-light);
    color: var(--text-medium);
    border: 1px solid var(--border);
}

.form-status:empty {
    display: none;
}

.form-status.is-success {
    background: rgba(196, 145, 123, 0.12);
    border-color: rgba(196, 145, 123, 0.35);
    color: var(--text-dark);
}

.form-status.is-error {
    background: rgba(220, 53, 69, 0.08);
    border-color: rgba(220, 53, 69, 0.35);
    color: #8A1E2B;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: rgba(220, 53, 69, 0.6);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

/* Page Hero Banner
   ========================================================================== */

.page-hero {
    /* Match hero look across inner pages */
    background:
        linear-gradient(
            135deg,
            rgba(247, 244, 242, 0.52) 0%,
            rgba(242, 228, 223, 0.90) 50%,
            rgba(247, 244, 242, 0.52) 100%
        ),
        url('../images/hero-bg.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 74px;
}

.page-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--text-medium);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Areas Covered
   ========================================================================== */

.areas-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.areas-intro p {
    font-size: 1.05rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-align: center;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary-light);
}

.area-card-image {
    height: 200px;
    background-color: var(--primary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.area-card-image svg {
    width: 60px;
    height: 60px;
    fill: var(--primary);
    opacity: 0.6;
}

.area-card-body {
    padding: 25px 20px 30px;
}

.area-card-body h3 {
    margin-bottom: 10px;
}

.area-card-body h3 a {
    color: var(--primary);
    text-decoration: none;
}

.area-card-body h3 a:hover {
    color: var(--primary-dark);
}

.area-card-body p {
    font-size: 0.92rem;
    margin-bottom: 15px;
}

.area-card .btn {
    font-size: 0.8rem;
    padding: 10px 24px;
}

/* Town Page
   ========================================================================== */

.town-content {
    max-width: 800px;
    margin: 0 auto;
}

.town-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.town-content p {
    font-size: 1.02rem;
    line-height: 1.85;
}

.town-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0 35px;
}

.town-services-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.town-services-list li svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    flex-shrink: 0;
}

.town-cta {
    background: var(--primary-pale);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 50px;
}

.town-cta h3 {
    margin-bottom: 12px;
}

.town-cta p {
    margin-bottom: 20px;
}

.town-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    font-weight: 500;
    color: var(--primary);
}

.town-back-link:hover {
    color: var(--primary-dark);
}

/* Footer
   ========================================================================== */

.site-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about .site-logo-text {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-about .site-logo-text span {
    color: var(--primary-light);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-heading {
    font-size: 1rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact-item a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* CTA Banner
   ========================================================================== */

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 25px;
}

.cta-banner .btn-primary {
    background-color: var(--white);
    color: var(--primary-dark);
}

.cta-banner .btn-primary:hover {
    background-color: var(--primary-pale);
    color: var(--primary-dark);
}

/* Responsive
   ========================================================================== */

@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero h1 {
        font-size: 2.6rem;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: -5px 0 30px var(--shadow-dark);
        transition: right var(--transition);
        padding: 80px 30px 30px;
        z-index: 999;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
    }

    .main-nav a {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .about-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-fairy-logo {
        width: 120px;
        margin-bottom: 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-hero {
        padding: 100px 0 40px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .town-services-list {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .lightbox-nav {
        padding: 10px 14px;
        font-size: 1.8rem;
    }
}

/* Utility classes
   ========================================================================== */

.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* Overlay for mobile nav */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
