/* ============================================
   MINUTE MEN PROPERTY SERVICES
   Dark + Lime Green Design System
   ============================================ */

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

:root {
    /* Brand Colors */
    --bg-dark: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --bg-footer: #0d0d0d;
    --lime: #a3e635;
    --lime-dark: #84cc16;
    --lime-glow: rgba(163, 230, 53, 0.15);
    --lime-glow-strong: rgba(163, 230, 53, 0.25);
    --white: #ffffff;
    --text-primary: #f0f0f0;
    --text-secondary: #999999;
    --text-muted: #666666;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font: 'Plus Jakarta Sans', sans-serif;
    --h1: clamp(2.8rem, 5vw + 1rem, 5rem);
    --h2: clamp(2rem, 3vw + 0.5rem, 3rem);
    --h3: clamp(1.1rem, 1.5vw + 0.4rem, 1.35rem);
    --body: clamp(0.9rem, 0.5vw + 0.6rem, 1.05rem);
    --small: 0.85rem;

    /* Spacing */
    --section-pad: clamp(60px, 8vw, 120px);
    --nav-height: 70px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.3s; }
.reveal[data-delay="3"] { transition-delay: 0.45s; }
.reveal[data-delay="4"] { transition-delay: 0.6s; }

/* --- Common Styles --- */
.highlight {
    color: var(--lime);
}

.section-tag {
    color: var(--lime);
    font-size: var(--small);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: var(--h2);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    text-align: left;
}

.section-title .highlight {
    font-style: italic;
    color: var(--lime);
}

.section-title-left { text-align: left; }

.section-desc {
    color: var(--text-secondary);
    font-size: var(--body);
    max-width: 600px;
    margin-bottom: 48px;
    text-align: left;
}

.section-desc-left { text-align: left; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--lime);
    color: var(--bg-dark);
    border-color: var(--lime);
}

.btn-primary:hover {
    background: var(--lime-dark);
    border-color: var(--lime-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--lime-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 1.05rem;
}

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

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.15rem;
}

.logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--lime);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 6px;
}

.logo-text {
    font-weight: 400;
}

.logo-text strong {
    font-weight: 800;
    color: var(--lime);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color 0.2s;
    position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

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

.nav-cta {
    background: var(--lime) !important;
    color: var(--bg-dark) !important;
    padding: 10px 22px !important;
    border-radius: 6px !important;
    letter-spacing: 0 !important;
    font-size: 0.85rem !important;
    transition: all 0.25s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--lime-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--lime-glow);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(163, 230, 53, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(163, 230, 53, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #111111 0%, #0d1a0d 50%, #111111 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(255, 255, 255, 0.02) 49px,
            rgba(255, 255, 255, 0.02) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(255, 255, 255, 0.02) 49px,
            rgba(255, 255, 255, 0.02) 50px
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 800px;
    margin-left: 0;
    padding: 0 24px;
}

.hero-tag {
    color: var(--lime);
    font-size: var(--small);
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: var(--h1);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--white);
}

.hero h1 .highlight {
    font-style: italic;
    color: var(--lime);
}

.hero-desc {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.2vw + 0.4rem, 1.2rem);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 600;
    z-index: 1;
}

.scroll-arrow {
    display: block;
    color: var(--lime);
    font-size: 1.2rem;
    margin-bottom: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* ============================================
   TICKER BAR
   ============================================ */
.ticker {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    animation: tickerScroll 30s linear infinite;
}

.ticker-track span {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding-right: 20px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 36px 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--lime-glow);
    border-radius: 10px;
    margin-bottom: 20px;
    color: var(--lime);
}

.service-card h3 {
    font-size: var(--h3);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.service-card p {
    color: var(--text-secondary);
    font-size: var(--body);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   MULCH TYPES
   ============================================ */
.mulch-types {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

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

.mulch-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
}

img.mulch-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.mulch-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mulch-card:hover .mulch-overlay {
    opacity: 1;
}

.mulch-overlay h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.mulch-overlay p {
    color: var(--text-secondary);
    font-size: var(--small);
    margin-bottom: 20px;
    line-height: 1.5;
}

.mulch-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.mulch-label::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--lime);
    margin-top: 8px;
}

.mulch-card:hover .mulch-label {
    opacity: 0;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* 3 cards — make the last one span full width */
.stats-grid .stat-card:last-child:nth-child(3) {
    grid-column: 1 / -1;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.stat-icon {
    color: var(--lime);
    margin-bottom: 16px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: var(--small);
    line-height: 1.5;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.portfolio-nav {
    display: flex;
    gap: 8px;
}

.portfolio-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font);
}

.portfolio-arrow:hover {
    border-color: var(--lime);
    color: var(--lime);
}

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

.portfolio-card {
    overflow: hidden;
}

img.portfolio-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    margin-bottom: 16px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.03);
}

.portfolio-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.portfolio-card p {
    color: var(--text-secondary);
    font-size: var(--small);
}

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-section {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.quote-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px;
}

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

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

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

.optional {
    color: var(--text-muted);
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px var(--lime-glow);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--lime);
    border-radius: 16px;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--lime);
    color: var(--bg-dark);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-footer);
    padding: 60px 0 0;
    position: relative;
}

.footer-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lime);
}

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

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: var(--small);
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
    font-size: var(--small);
    color: var(--text-secondary);
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--lime);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list svg {
    color: var(--lime);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   NAV PHONE
   ============================================ */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-phone:hover {
    color: var(--lime) !important;
}

.nav-phone::after {
    display: none !important;
}

/* ============================================
   HERO PHOTO + OVERLAY
   ============================================ */
.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

/* Make sure hero content sits above the overlay */
.hero-content {
    z-index: 2;
}

.scroll-indicator {
    z-index: 2;
}

/* ============================================
   HERO TRUST BADGES
   ============================================ */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.hero-trust span svg {
    color: var(--lime);
    flex-shrink: 0;
}

/* ============================================
   GUARANTEE BANNER
   ============================================ */
.guarantee-banner {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 32px 0;
}

.guarantee-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.guarantee-item svg {
    color: var(--lime);
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.guarantee-item span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.guarantee-divider {
    width: 1px;
    height: 60px;
    background: var(--border-subtle);
    flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

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

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 13, 13, 0.92);
    border: 1px solid var(--border-hover);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    backdrop-filter: blur(8px);
}

.about-badge svg {
    color: var(--lime);
}

.about-text {
    padding: 8px 0;
}

.about-desc {
    color: var(--text-secondary);
    font-size: var(--body);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 32px;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.value-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.testimonials .section-title {
    text-align: left;
    margin-bottom: 40px;
}

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

.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
}

.stars {
    color: var(--lime);
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-card > p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--lime-glow);
    border: 1px solid rgba(163, 230, 53, 0.3);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--lime);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   SERVICE AREA
   ============================================ */
.service-area {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

.towns-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.town {
    display: inline-block;
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    cursor: default;
}

.town:hover {
    border-color: var(--lime);
    color: var(--lime);
    background: var(--lime-glow);
}

.area-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.area-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--section-pad) 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 8px;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
}

/* Remove right border on even items (right column) */
.faq-item:nth-child(even) {
    border-right: none;
}

/* Remove bottom border on last two items */
.faq-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    gap: 12px;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question.open {
    color: var(--lime);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-question.open .faq-icon {
    transform: rotate(180deg);
    color: var(--lime);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 24px;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    padding-top: 4px;
}

.faq-answer a {
    color: var(--lime);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ============================================
   QUOTE CONTACT BLOCK
   ============================================ */
.quote-contact {
    margin-top: 8px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    display: inline-block;
}

.quote-contact p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.quote-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lime);
    text-decoration: none;
    transition: color 0.2s;
}

.quote-phone:hover {
    color: var(--lime-dark);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

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

    .faq-item:nth-child(even) {
        border-right: 1px solid var(--border-subtle);
    }

    .faq-item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border-subtle);
    }

    .faq-item:last-child {
        border-bottom: none;
    }

    .guarantee-inner {
        flex-direction: column;
        gap: 20px;
    }

    .guarantee-divider {
        width: 100%;
        height: 1px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-subtle);
    }

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

    .nav-links a {
        font-size: 0.9rem;
    }

    .nav-cta {
        text-align: center !important;
    }

    .hero {
        text-align: left;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
    }

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

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

    .mulch-card {
        aspect-ratio: 16 / 10;
    }

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

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

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .quote-form {
        padding: 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }

    .nav-phone {
        display: none;
    }

    .hero-trust {
        gap: 12px;
    }

    .hero-trust span {
        font-size: 0.75rem;
    }

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

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

    .faq-grid {
        grid-template-columns: 1fr;
        border-radius: 8px;
    }

    .faq-item:nth-child(even),
    .faq-item:nth-last-child(-n+2) {
        border-right: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
    }

    .faq-item:last-child {
        border-bottom: none;
    }

    .faq-item {
        border-right: none;
    }

    .towns-grid {
        gap: 8px;
    }

    .town {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

/* ============================================
   PRICING SECTION (new)
   ============================================ */
.pricing-section {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--lime);
    opacity: 0.04;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
}

.pricing-card-featured {
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
    border: 2px solid var(--lime);
    transform: scale(1.03);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 6px;
}

.pricing-card-header {
    margin-bottom: 18px;
}

.tier-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.75rem;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.4px;
    color: var(--white);
    margin-bottom: 4px;
}

.tier-spec {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0;
}

.tier-price {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.tier-price .price-range {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
    color: var(--lime);
    line-height: 1;
    letter-spacing: -0.5px;
}

.tier-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.tier-features li {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-primary);
    padding: 7px 0 7px 22px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 2px;
    background: var(--lime);
}

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

.pricing-footnote {
    max-width: 780px;
    margin: 0 auto;
    padding: 22px 28px;
    background: rgba(163, 230, 53, 0.05);
    border: 1px solid rgba(163, 230, 53, 0.15);
    border-radius: 12px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-footnote strong {
    color: var(--lime);
    font-weight: 800;
}

/* ============================================
   PROMISE SECTION (Done-Right feature)
   ============================================ */
.promise-section {
    padding: var(--section-pad) 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--lime);
    opacity: 0.06;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.promise-wrap {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promise-seal-large {
    width: 200px;
    height: 200px;
    border: 3px solid var(--lime);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(163, 230, 53, 0.05);
    flex-shrink: 0;
    position: relative;
}

.promise-seal-large::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(163, 230, 53, 0.3);
    border-radius: 50%;
}

.promise-seal-large .seal-num {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 5rem;
    color: var(--lime);
    line-height: 1;
    letter-spacing: -2px;
}

.promise-seal-large .seal-sub {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--lime);
    margin-top: 4px;
}

.promise-headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -1px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--white);
}

.promise-headline .highlight {
    font-style: italic;
    color: var(--lime);
}

.promise-body {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-primary);
    margin-bottom: 32px;
    max-width: 640px;
}

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

.promise-pillar {
    padding-top: 16px;
    border-top: 2px solid var(--lime);
}

.promise-pillar h4 {
    font-size: 0.98rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.2px;
    margin-bottom: 6px;
}

.promise-pillar p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   OWNER LETTER SECTION
   ============================================ */
.owner-section {
    padding: var(--section-pad) 0;
    background: #fafaf7;
    color: #0a0a0a;
}

.owner-section .section-tag {
    color: #0a0a0a;
    opacity: 0.55;
}

.owner-section .section-title {
    color: #0a0a0a;
}

.owner-section .section-title .highlight {
    color: var(--lime);
    -webkit-text-stroke: 1px #0a0a0a;
}

.owner-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 20px 0;
}

.owner-letter-body {
    margin: 36px 0;
}

.owner-letter-body p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(10,10,10,0.82);
    margin-bottom: 18px;
}

.owner-signature-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(10,10,10,0.12);
}

.owner-signature-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-style: italic;
    font-size: 2rem;
    letter-spacing: -0.4px;
    color: #0a0a0a;
    line-height: 1;
}

.owner-signature-title {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(10,10,10,0.55);
    margin-top: 8px;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--lime);
        color: #0a0a0a;
        padding: 14px 20px;
        z-index: 999;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
    }

    .sticky-mobile-cta .label {
        font-size: 0.75rem;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        opacity: 0.7;
        line-height: 1;
        margin-bottom: 2px;
    }

    .sticky-mobile-cta .phone {
        font-size: 1.3rem;
        font-weight: 900;
        letter-spacing: -0.5px;
        line-height: 1;
    }

    .sticky-mobile-cta-btn {
        background: #0a0a0a;
        color: var(--lime);
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: 900;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
    }

    body {
        padding-bottom: 80px;
    }
}

/* ============================================
   RESPONSIVE — new sections
   ============================================ */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .promise-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .promise-seal-large {
        margin: 0 auto;
    }

    .promise-body {
        margin-left: auto;
        margin-right: auto;
    }

    .promise-pillars {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .promise-pillar {
        text-align: left;
    }
}
