/* ==============================================
   CROSS CUTT - Lawn Care & Property Maintenance
   Stylesheet
   ============================================== */

:root {
    --green:        #5cdd2a;
    --green-dark:   #44b81e;
    --green-light:  #ecfce4;
    --black:        #111111;
    --dark:         #1c1c1c;
    --brown:        #8b6b2e;
    --white:        #ffffff;
    --off-white:    #f7f9f7;
    --gray:         #666666;
    --light-gray:   #ebebeb;
    --border:       #e0e0e0;

    --shadow-sm:    0 2px 10px rgba(0,0,0,0.07);
    --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:    0 8px 32px rgba(0,0,0,0.16);
    --transition:   all 0.3s ease;

    --font-heading: 'Oswald', sans-serif;
    --font-body:    'Open Sans', sans-serif;
    --max-width:    1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

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

section {
    padding: 88px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--green);
    margin: 14px auto 0;
    border-radius: 2px;
}

.section-header.left h2::after {
    margin-left: 0;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 580px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 221, 42, 0.4);
    color: var(--white);
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

.btn-primary.small {
    padding: 10px 20px;
    font-size: 0.82rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.55);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 4px;
    border: 2px solid var(--black);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

/* ===== LOGO TEXT (nav + footer) ===== */
.logo-cross {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-cutt {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

#navbar.scrolled {
    background: var(--black);
    padding: 10px 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
    transition: var(--transition);
}

#navbar.scrolled .nav-logo-img {
    height: 40px;
}

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

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
}

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

.nav-links .nav-cta {
    background: var(--green);
    color: var(--black);
    padding: 9px 18px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-links .nav-cta:hover {
    background: var(--green-dark);
    color: var(--white);
}

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

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    background: url('../images/lawn-hero.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.65) 60%,
        rgba(0,0,0,0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    height: 200px;
    width: auto;
    margin-bottom: 24px;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}

.hero-tagline {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: rgba(255,255,255,0.88);
    font-style: italic;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.9);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero-badges span i {
    color: var(--green);
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    animation: bounce 2s infinite;
    z-index: 1;
    transition: var(--transition);
}

.hero-scroll:hover {
    color: var(--green);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--black);
    padding: 22px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    color: rgba(255,255,255,0.88);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item i {
    color: var(--green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

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

.service-icon {
    width: 54px;
    height: 54px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
}

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

.service-icon i {
    font-size: 1.4rem;
    color: var(--green-dark);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--black);
}

.service-card h3 {
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

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

.services-cta-banner {
    background: var(--black);
    border-radius: 10px;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.services-cta-banner p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.3px;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

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

.about-image-wrap {
    position: relative;
    flex-shrink: 0;
}

.about-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-years-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--green);
    border-radius: 10px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-width: 120px;
}

.about-years-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--black);
}

.about-years-badge span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    line-height: 1.4;
    margin-top: 4px;
}

.about-lead {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.65;
    margin-bottom: 18px;
}

.about-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.about-badge {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 3px solid var(--green);
}

.about-badge i {
    color: var(--green);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 3px;
}

.about-badge span {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--off-white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    background: var(--light-gray);
}

.gallery-item.span2 {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.gallery-social {
    text-align: center;
}

.gallery-social p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.gallery-social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--black);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header h2::after {
    background: var(--green);
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.55);
}

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

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(92, 221, 42, 0.18);
    line-height: 1;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(92, 221, 42, 0.4);
}

.stars {
    color: var(--green);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.82);
    font-style: italic;
    line-height: 1.78;
    margin-bottom: 20px;
}

.t-author {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--green);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--white);
}

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

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 16px;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: var(--transition);
    color: inherit;
    text-decoration: none;
}

.contact-method:hover {
    border-left-color: var(--green);
    background: var(--green-light);
}

.contact-method i {
    font-size: 1.2rem;
    color: var(--green);
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 2px;
}

.contact-method span {
    font-size: 0.88rem;
    color: var(--gray);
}

.service-area-box {
    background: var(--off-white);
    border-radius: 8px;
    padding: 18px 20px;
    border-left: 3px solid var(--green);
}

.service-area-box h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.service-area-box h4 i {
    color: var(--green);
}

.service-area-box p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    background: var(--off-white);
    border-radius: 12px;
    padding: 40px 40px 36px;
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 7px;
}

.req {
    color: var(--green-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(62, 207, 80, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.form-success {
    text-align: center;
    padding: 56px 24px;
}

.form-success i {
    font-size: 3.2rem;
    color: var(--green);
    margin-bottom: 16px;
    display: block;
}

.form-success h3 {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-success a {
    color: var(--green-dark);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: #0d0d0d;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo-wrap {
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer-tagline {
    color: rgba(255,255,255,0.45);
    font-style: italic;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.footer-location {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-location i {
    color: var(--green);
    font-size: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green);
    color: var(--black);
}

.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-services ul li {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    padding-left: 14px;
    position: relative;
    line-height: 1.4;
}

.footer-services ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: 0.75rem;
}

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

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.87rem;
    transition: var(--transition);
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--green);
}

.footer-phone i,
.footer-email i {
    color: var(--green);
    font-size: 0.85rem;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact .btn-primary {
    margin-top: 8px;
    align-self: flex-start;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
    letter-spacing: 0.3px;
}

/* ===== SCROLL-IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .about-grid {
        gap: 48px;
    }

    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }

    /* Navbar */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: -4px 0 32px rgba(0,0,0,0.4);
        overflow-y: auto;
    }

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

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

    .nav-links a {
        display: block;
        padding: 13px 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-size: 1rem;
        color: rgba(255,255,255,0.88);
    }

    .nav-links .nav-cta {
        margin-top: 12px;
        text-align: center;
        padding: 13px 18px;
    }

    /* Hero */
    .hero-logo {
        height: 150px;
    }

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

    /* Trust Bar */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 0.78rem;
    }

    .trust-item:nth-child(2n) {
        border-right: none;
    }

    .trust-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

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

    .services-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

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

    .about-image-wrap {
        order: -1;
    }

    .about-image-wrap img {
        height: 280px;
    }

    .about-years-badge {
        right: 12px;
        bottom: -16px;
    }

    .about-badges {
        grid-template-columns: 1fr;
    }

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

    .gallery-item.span2 {
        grid-column: span 2;
        aspect-ratio: 4 / 3;
    }

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

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .contact-form-wrap {
        padding: 28px 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        gap: 12px;
    }

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

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

    .gallery-item.span2 {
        grid-column: span 1;
        aspect-ratio: 4 / 3;
    }

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

    .trust-item {
        border-bottom: 1px solid rgba(255,255,255,0.08);
        border-right: none;
    }

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

/* ==============================================
   HARDSCAPING SPOTLIGHT
   ============================================== */

.hardscape-spotlight {
    background: var(--black);
    padding: 88px 0;
}

.hardscape-spotlight .section-header.left h2 {
    color: var(--white);
}

.hardscape-spotlight .section-header.left h2::after {
    background: var(--green);
}

.spotlight-header {
    max-width: 560px;
    margin-bottom: 48px;
}

.spotlight-header p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.75;
    margin: 16px 0 28px;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 14px;
    align-items: stretch;
}

.spotlight-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 3 / 4;
}

.spotlight-item.tall {
    aspect-ratio: 2 / 3;
}

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

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

.spotlight-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

    .spotlight-item.tall {
        grid-column: span 2;
        aspect-ratio: 16 / 9;
    }
}

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

    .spotlight-item.tall {
        grid-column: span 1;
        aspect-ratio: 4 / 3;
    }
}

/* ==============================================
   PORTFOLIO (replaces gallery)
   ============================================== */

.portfolio {
    background: var(--off-white);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-btn {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 9px 20px;
    border-radius: 4px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--green);
    color: var(--black);
}

.filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--black);
}

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

.p-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    background: var(--light-gray);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.p-item.span2 {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.p-item.hidden {
    display: none;
}

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

.p-item:hover img {
    transform: scale(1.06);
}

.p-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: var(--transition);
}

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

.p-overlay span {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.portfolio-social {
    text-align: center;
}

.portfolio-social p {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    margin-bottom: 16px;
}

.portfolio-social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-item.span2 {
        grid-column: span 2;
        aspect-ratio: 4 / 3;
    }
}

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

    .p-item.span2 {
        grid-column: span 1;
        aspect-ratio: 4 / 3;
    }
}
