/* ===================================
   TLC — Trees Landscaping & Cultures
   Brand Palette: #DCFEC5 lime green
   =================================== */

:root {
    --white: #ffffff;
    --off-white: #F7FBF3;
    --gray-50: #f0f4f0;
    --gray-100: #e0e5e0;
    --gray-200: #c5ccc5;
    --gray-300: #94a094;
    --gray-400: #6b786b;
    --gray-500: #4a554a;
    --gray-600: #363f36;
    --gray-700: #2A2A2A;
    --gray-800: #1e1e1e;
    --gray-900: #141414;

    /* TLC Brand Palette — derived from #DCFEC5 */
    --brand-light: #DCFEC5;
    --brand-medium: #8BC34A;
    --brand-dark: #5A8A2E;
    --brand-deep: #3D5E1F;

    --green-50: #f2fde8;
    --green-100: #e1f9cc;
    --green-200: #c3f099;
    --green-300: #a5e766;
    --green-400: #8BC34A;
    --green-500: #6fa530;
    --green-600: #5A8A2E;
    --green-700: #3D5E1F;
    --green-800: #2a4215;

    --accent: #5A8A2E;
    --accent-light: #6fa530;
    --accent-bright: #8BC34A;

    --gold: #d4a843;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --font-main: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Nunito', sans-serif;

    --container: 1140px;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.brand-text {
    font-size: 0.72rem;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.04em;
}

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

.nav-link {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-500);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
    background: var(--green-50);
}

.nav-link.nav-cta {
    background: var(--accent);
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    margin-left: 8px;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    margin-left: 16px;
}

.nav-phone:hover {
    color: var(--accent-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-600);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.png') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(20, 20, 20, 0.72) 0%,
            rgba(20, 20, 20, 0.50) 50%,
            rgba(20, 20, 20, 0.68) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
}

.hero-content {
    max-width: 640px;
    animation: heroFadeIn 1.2s ease-out;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(139, 195, 74, 0.15);
    border: 1px solid rgba(139, 195, 74, 0.3);
    border-radius: var(--radius-full);
    color: var(--brand-medium);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--accent-bright);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(90, 138, 46, 0.3);
}

.btn-primary:hover {
    background: var(--accent-light);
    box-shadow: 0 6px 20px rgba(90, 138, 46, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-white {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

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

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

.btn-outline:hover {
    background: var(--green-50);
    color: var(--accent);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

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

/* ===== Trust Bar ===== */
.trust-bar {
    background: var(--accent);
    padding: 18px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 500;
}

.trust-badge svg {
    opacity: 0.8;
    flex-shrink: 0;
}

/* ===== Section Intros ===== */
.section-intro {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-intro p {
    color: var(--gray-400);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ===== Services ===== */
.services {
    padding: 96px 0;
}

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

.service-card {
    padding: 0;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: var(--accent);
    color: white;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: var(--accent-light);
    letter-spacing: 0.02em;
}

.service-card--emergency {
    border-color: rgba(212, 168, 67, 0.3);
    background: linear-gradient(135deg, var(--white), rgba(212, 168, 67, 0.03));
}

.service-card--emergency .service-card-icon {
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
}

.service-card--emergency:hover .service-card-icon {
    background: var(--gold);
    color: white;
}

.service-link--emergency {
    color: var(--gold);
}

/* ===== About ===== */
.about {
    padding: 96px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
    line-height: 1.15;
}

.about-lead {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 28px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.about-feature strong {
    display: block;
    font-size: 0.92rem;
    color: var(--gray-700);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.84rem;
    color: var(--gray-400);
}

/* ===== Reviews ===== */
.reviews {
    padding: 96px 0;
}

.google-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.stars-row {
    display: flex;
    gap: 3px;
}

.google-stars span {
    color: var(--gray-400);
    font-size: 0.9rem;
}

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

.review-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.review-stars {
    color: #FBBC04;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

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

.review-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.review-footer strong {
    display: block;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.review-footer span {
    font-size: 0.78rem;
    color: var(--gray-300);
}

/* ===== Gallery ===== */
.gallery {
    padding: 96px 0;
    background: var(--off-white);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery placeholder gradients updated for new brand */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
}

.gallery-placeholder span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-overlay small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* ===== Service Areas ===== */
.areas {
    padding: 96px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.area-group h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green-100);
}

.area-group ul {
    list-style: none;
}

.area-group li {
    padding: 4px 0;
    font-size: 0.88rem;
    color: var(--gray-400);
}

.areas-note {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.92rem;
    padding-top: 16px;
}

/* ===== Contact Form ===== */
.contact {
    padding: 96px 0;
    background: var(--off-white);
}

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

.contact-info .section-tag {
    margin-bottom: 12px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-info>p {
    color: var(--gray-400);
    font-size: 1rem;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-detail svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    font-size: 0.88rem;
    color: var(--gray-700);
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    font-size: 0.88rem;
    color: var(--gray-400);
}

/* Form Card */
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-family: var(--font-main);
    font-size: 0.92rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

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

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7d70' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    color: var(--accent);
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

.spinner {
    animation: spin 1s linear infinite;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo .brand-mark {
    font-size: 1.8rem;
    color: var(--accent-bright);
}

.footer-logo .brand-sub {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent);
    color: white;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    padding: 3px 0;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-bright);
}

.footer-col li:not(:has(a)) {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

/* ===== Mobile Sticky CTA ===== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    padding: 10px 16px;
    gap: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}

.mobile-cta-call {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border: 1.5px solid var(--accent);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
}

.mobile-cta-quote {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

/* ===== Animations ===== */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Scroll animations */
.animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 360px;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--gray-100);
        box-shadow: var(--shadow-lg);
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
    }

    .nav-link.nav-cta {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }

    .nav-phone {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 64px;
    }

    .hero-content {
        text-align: center;
    }

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

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

    .hero-stats {
        margin: 0 auto;
    }

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

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

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

    .gallery-item--large {
        grid-column: span 1;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .trust-items {
        gap: 20px;
    }

    .trust-badge {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }

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

    .hero-actions .btn {
        justify-content: center;
    }

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

    .trust-items {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===== Priority Service Badge ===== */
.service-card--priority {
    border-color: var(--brand-medium);
    background: linear-gradient(135deg, var(--white), rgba(220, 254, 197, 0.15));
    position: relative;
}

.service-card--priority::before {
    content: '⭐ PRIORITY';
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 3px 10px;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    border-radius: var(--radius-full);
}

/* ===== Sub-Service Pills ===== */
.service-subs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 16px;
    padding: 0;
}

.service-subs span {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    color: var(--gray-500);
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.service-subs span:hover {
    background: var(--green-50);
    border-color: var(--green-200);
    color: var(--accent);
}

.service-card--priority .service-subs span {
    background: rgba(220, 254, 197, 0.3);
    border-color: rgba(139, 195, 74, 0.25);
    color: var(--brand-dark);
}

.service-card--priority .service-subs span:hover {
    background: rgba(220, 254, 197, 0.55);
    border-color: var(--brand-medium);
}

.service-card--emergency .service-subs span {
    background: rgba(212, 168, 67, 0.08);
    border-color: rgba(212, 168, 67, 0.2);
    color: var(--gray-500);
}

.service-card--emergency .service-subs span:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== Focus Suburb Badge ===== */
.focus-suburb {
    position: relative;
    font-weight: 600 !important;
    color: var(--accent) !important;
}

.focus-suburb::after {
    content: '✦';
    margin-left: 6px;
    color: var(--brand-medium);
    font-size: 0.7rem;
}

.focus-legend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.focus-legend::before {
    content: '✦';
    color: var(--brand-medium);
}

/* ===== File Upload ===== */
.file-upload-area {
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--off-white);
}

.file-upload-area:hover {
    border-color: var(--accent);
    background: rgba(220, 254, 197, 0.1);
}

.file-upload-area.dragover {
    border-color: var(--accent);
    background: rgba(220, 254, 197, 0.2);
}

.file-upload-area svg {
    color: var(--gray-300);
    margin-bottom: 8px;
}

.file-upload-area p {
    font-size: 0.84rem;
    color: var(--gray-400);
    margin: 0;
}

.file-upload-area small {
    font-size: 0.75rem;
    color: var(--gray-300);
}

.file-upload-area input[type="file"] {
    display: none;
}

.file-preview {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.file-preview-item {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-item button {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Radio buttons */
.radio-group {
    display: flex;
    gap: 16px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--gray-500);
    cursor: pointer;
    font-weight: 500;
}

.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

/* ===== Chatbot FAB & Widget ===== */
.chatbot-toggle {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 16px rgba(90, 138, 46, 0.45),
        0 0 0 0 rgba(90, 138, 46, 0.4);
    z-index: 9999;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fabPulse 3s ease-in-out infinite;
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(90, 138, 46, 0.45), 0 0 0 0 rgba(90, 138, 46, 0.35); }
    50% { box-shadow: 0 4px 16px rgba(90, 138, 46, 0.45), 0 0 0 12px rgba(90, 138, 46, 0); }
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 28px rgba(90, 138, 46, 0.55);
    animation: none;
}

.chatbot-toggle.active {
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    animation: none;
    transform: rotate(0deg);
}

.chatbot-toggle .fab-icon-chat,
.chatbot-toggle .fab-icon-close {
    transition: all 0.3s ease;
    position: absolute;
}

.chatbot-toggle .fab-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.chatbot-toggle.active .fab-icon-chat {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.chatbot-toggle.active .fab-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.chatbot-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #ef4444;
    border-radius: 50%;
    border: 2.5px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.chatbot-toggle.active .chatbot-badge {
    display: none;
}

.chatbot-window {
    position: fixed;
    bottom: 104px;
    right: 28px;
    width: 390px;
    max-height: 540px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.15),
        0 0 0 1px rgba(0,0,0,0.05);
    z-index: 9998;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: none;
    animation: chatWindowIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chatbot-window.open {
    display: flex;
}

@keyframes chatWindowIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--brand-deep) 100%);
    color: white;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.chatbot-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.chatbot-header-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2);
}

.chatbot-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chatbot-header-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.chatbot-header-info span {
    font-size: 0.75rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chatbot-header-info span::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 280px;
    max-height: 340px;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    line-height: 1.5;
    animation: chatSlideUp 0.3s ease-out;
}

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

.chat-msg.bot {
    background: var(--green-50);
    color: var(--gray-700);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    background: var(--accent);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-msg.typing {
    background: var(--gray-50);
    color: var(--gray-400);
    font-style: italic;
}

.chat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.chat-quick-btn {
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    font-family: var(--font-main);
}

.chat-quick-btn:hover {
    background: var(--brand-light);
    border-color: var(--accent);
}

.chatbot-input {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-top: 1px solid var(--gray-100);
    background: var(--white);
}

.chatbot-input input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-family: var(--font-main);
    outline: none;
    background: var(--off-white);
    transition: all 0.2s ease;
}

.chatbot-input input:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(90, 138, 46, 0.1);
}

.chatbot-input button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chatbot-input button:hover {
    background: var(--accent-light);
    transform: scale(1.05);
}

/* Chatbot responsive */
@media (max-width: 768px) {
    .chatbot-window {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-height: 85vh;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .chatbot-toggle {
        bottom: 80px;
    }
}

/* ===== Nav Logo Image ===== */
.nav-brand-logo {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-brand-logo {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    object-fit: cover;
}