/* ============================================================
   JOE NGUYEN LANDSCAPING — ELITE STYLESHEET
   ============================================================ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
    --green-900: #081c15;
    --green-800: #1b4332;
    --green-700: #2d6a4f;
    --green-500: #40916c;
    --green-400: #52b788;
    --green-200: #b7e4c7;
    --green-50:  #f0fdf4;

    --gray-900: #111827;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-200: #e5e7eb;
    --gray-50:  #f9fafb;
    --white:    #ffffff;

    --gold:     #f59e0b;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
    --shadow-lg:   0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl:   0 20px 50px rgba(0,0,0,0.16);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition:      0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.section { padding: 100px 0; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 {
    font-family: var(--font-serif);
    line-height: 1.15;
    color: var(--green-800);
}
h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; color: var(--green-800); }

.text-green { color: var(--green-500); }

.eyebrow-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-500);
    margin-bottom: 14px;
}
.eyebrow-light { color: var(--green-400); }

.section-header { margin-bottom: 60px; }
.section-header.align-center { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-sub { font-size: 1.15rem; color: var(--gray-500); margin-top: 14px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-sub-left { font-size: 1.1rem; color: var(--gray-500); margin-top: 14px; max-width: 520px; }
.section-sub.light, .section-sub-left.light { color: rgba(255,255,255,0.65); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-xl);
    font-family: var(--font-sans); font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: var(--transition); border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--green-700); color: var(--white);
    box-shadow: 0 4px 14px rgba(45,106,79,0.35);
}
.btn-primary:hover {
    background: var(--green-500); transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45,106,79,0.4);
}
.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: var(--white); color: var(--green-800);
    transform: translateY(-2px);
}
.btn-xl { padding: 16px 36px; font-size: 1.05rem; }
.btn-form { width: 100%; justify-content: center; padding: 18px; font-size: 1.05rem; margin-top: 8px; letter-spacing: 0.03em; }

.btn-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.95rem; font-weight: 700; color: var(--green-700);
    margin-top: 18px; transition: var(--transition-fast);
}
.btn-link:hover { gap: 10px; color: var(--green-500); }

/* ── NAVBAR ──────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 12px 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-hidden { transform: translateY(-100%); }
.nav-container {
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
}

/* Logo */
.logo-wrapper { display: flex; align-items: center; gap: 10px; }
.logo-mark { flex-shrink: 0; }
.logo-text-group { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
    font-family: var(--font-serif); font-size: 1.45rem; font-weight: 700;
    color: var(--green-800); letter-spacing: -0.01em;
}
.logo-tagline { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-top: 3px; }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn):not(.nav-phone) {
    font-size: 0.95rem; font-weight: 600; color: var(--gray-700);
    position: relative; padding-bottom: 2px;
}
.nav-links a:not(.btn):not(.nav-phone)::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--green-700);
    transition: width var(--transition-fast);
}
.nav-links a:not(.btn):not(.nav-phone):hover::after { width: 100%; }
.nav-phone {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.9rem; font-weight: 700; color: var(--green-700);
}
.nav-phone:hover { color: var(--green-500); }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--gray-900); border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: min(80vw, 320px); height: 100vh;
    background: var(--white); z-index: 2000; padding: 30px 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right var(--transition);
    display: flex; flex-direction: column;
}
.mobile-nav.active { right: 0; }
.mobile-nav-close {
    align-self: flex-end; background: none; border: none; font-size: 1.6rem;
    cursor: pointer; color: var(--gray-700); margin-bottom: 30px; line-height: 1;
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
    font-size: 1.2rem; font-weight: 600; color: var(--gray-900);
    padding: 12px 0; border-bottom: 1px solid var(--gray-200);
}
.mobile-nav-link:hover { color: var(--green-700); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
}

.video-container {
    position: absolute; inset: 0; z-index: 0;
    background: var(--green-900);
}
.hero-video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.15) 100%
    );
}

.hero-content {
    position: relative; z-index: 2;
    padding-top: 100px; padding-bottom: 60px;
}
.hero-inner { max-width: 620px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
    padding: 6px 14px; border-radius: 30px;
    font-size: 0.82rem; font-weight: 700; color: var(--white);
    margin-bottom: 20px;
    animation: fadeDown 0.7s ease both;
}
.hero-inner h1 { color: var(--white); margin-bottom: 20px; animation: fadeUp 0.7s 0.1s ease both; }
.hero-sub {
    font-size: 1.2rem; color: rgba(255,255,255,0.88); line-height: 1.7;
    margin-bottom: 36px; animation: fadeUp 0.7s 0.2s ease both;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }

.hero-trust {
    display: flex; flex-wrap: wrap; gap: 20px;
    margin-top: 36px; animation: fadeUp 0.7s 0.4s ease both;
}
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 600; color: var(--white);
    background: rgba(255,255,255,0.15); padding: 8px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
}

.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 3; color: var(--green-700); opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce   { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── STATS ───────────────────────────────────────────────────── */
.stats-section {
    background: var(--green-800);
    padding: 60px 0;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-card {
    text-align: center; padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-card:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-serif); font-size: 3.5rem;
    font-weight: 900; color: var(--white); line-height: 1;
}
.stat-suffix { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 900; color: var(--green-400); }
.stat-card p { font-size: 0.95rem; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 8px; }

/* ── SERVICES ────────────────────────────────────────────────── */
.services { background: var(--gray-50); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    opacity: 0; transform: translateY(30px);
}
.service-card.visible {
    opacity: 1; transform: translateY(0);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}

.service-img-wrap { position: relative; height: 220px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.service-card:hover .service-img { transform: scale(1.07); }
.service-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--gold); color: var(--white); font-size: 0.72rem;
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 4px 10px; border-radius: 20px;
}

.service-body { padding: 28px; }
.service-icon-wrap {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--green-50); border: 1px solid var(--green-200);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; color: var(--green-700);
}

.service-body h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--green-900); }
.service-body p { font-size: 0.93rem; color: var(--gray-500); line-height: 1.7; }
.service-features {
    margin-top: 14px; display: flex; flex-direction: column; gap: 6px;
}
.service-features li {
    font-size: 0.88rem; color: var(--gray-700); font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}
.service-features li::before {
    content: '✓'; color: var(--green-500); font-weight: 800; flex-shrink: 0;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-section { background: var(--green-900); padding-bottom: 60px; }
.gallery-header { padding: 80px 0 40px; }
.gallery-header h2 { color: var(--white); }

.fullbleed-slider { position: relative; overflow: hidden; cursor: grab; }
.fullbleed-slider:active { cursor: grabbing; }

.slider-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}
.slide { position: relative; min-width: 100%; flex-shrink: 0; }
.slide-img { width: 100%; height: 78vh; object-fit: cover; display: block; }

.slide-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 60px;
    background: linear-gradient(to top, rgba(8,28,21,0.92) 0%, rgba(8,28,21,0) 100%);
}
.slide-num { font-size: 0.78rem; font-weight: 700; color: var(--green-400); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; }
.slide-caption h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.slide-caption p  { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 500px; }

/* Navigation Arrows */
.arrow-btn {
    position: absolute; top: 50%; z-index: 10;
    transform: translateY(-50%);
    width: 58px; height: 58px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: rgba(27,67,50,0.75); backdrop-filter: blur(8px);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.arrow-btn:hover { background: var(--green-700); border-color: var(--white); transform: translateY(-50%) scale(1.08); }
.arrow-prev { left: 32px; }
.arrow-next { right: 32px; }

/* Slide dots */
.slider-dots-bar { display: flex; justify-content: center; gap: 10px; padding: 28px 0; }
.gallery-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.3); border: none;
    cursor: pointer; transition: var(--transition-fast);
}
.gallery-dot.active { background: var(--green-400); transform: scale(1.4); }

/* ── WHY US ──────────────────────────────────────────────────── */
.why-us { background: var(--white); }
.why-us-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}
.why-us-content h2 { margin-bottom: 16px; }

.feature-list { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    background: var(--green-700); display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.feature-item h4 { margin-bottom: 4px; color: var(--green-900); }
.feature-item p { font-size: 0.95rem; color: var(--gray-500); }

/* Testimonials */
.testimonials-stack { display: flex; flex-direction: column; gap: 20px; }
.testimonial-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.featured-testimonial { background: var(--green-50); border-color: var(--green-200); }

.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card > p { font-size: 0.97rem; color: var(--gray-700); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--green-700); color: var(--white);
    font-size: 0.85rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--green-900); }
.testimonial-author span  { font-size: 0.82rem; color: var(--gray-500); }

/* ── SERVICE AREA ─────────────────────────────────────────────── */
.bg-dark-section { background: var(--green-900); }
.area-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 60px; align-items: center;
}
.area-text h2 { color: var(--white); margin-bottom: 16px; }
.cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 28px; }
.city-list { display: flex; flex-direction: column; gap: 10px; }
.city-list li { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.area-map iframe { border-radius: var(--radius-lg); display: block; }

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-section { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info p  { color: var(--gray-500); font-size: 1.05rem; line-height: 1.75; margin-bottom: 36px; }

.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
    display: flex; gap: 16px; padding: 20px 22px;
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
    align-items: flex-start; transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); }
.info-icon {
    width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
    background: var(--green-700); display: flex; align-items: center; justify-content: center;
}
.info-card h4 { margin-bottom: 4px; }
.info-card p  { font-size: 0.95rem; color: var(--gray-500); margin: 0; }
.info-link { font-size: 1.1rem; font-weight: 700; color: var(--green-700); }
.info-link:hover { text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 44px; box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--green-700);
}
.contact-form h3 { margin-bottom: 6px; color: var(--green-900); }
.form-sub { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--green-900); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 13px 16px;
    border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
    font-family: var(--font-sans); font-size: 1rem; color: var(--gray-900);
    background: var(--gray-50); transition: border-color var(--transition-fast);
    appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--green-700);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.75); }
.footer-inner {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 50px 40px;
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-col p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; max-width: 280px; }
.footer-phone {
    display: inline-flex; font-weight: 700; font-size: 1.1rem;
    color: var(--green-400); transition: var(--transition-fast);
}
.footer-phone:hover { color: var(--white); }

.footer-links-col h4 {
    color: var(--white); font-family: var(--font-sans); font-size: 0.85rem;
    font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 18px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col li { font-size: 0.95rem; }
.footer-links-col a { color: rgba(255,255,255,0.6); transition: var(--transition-fast); }
.footer-links-col a:hover { color: var(--green-400); }
.footer-links-col li:not(:has(a)) { color: rgba(255,255,255,0.45); }

.footer-bottom-bar { padding: 22px 0; text-align: center; }
.footer-bottom-bar p { font-size: 0.83rem; color: rgba(255,255,255,0.3); }

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

@media (max-width: 900px) {
    .why-us-grid  { grid-template-columns: 1fr; gap: 50px; }
    .area-grid    { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links  { display: none; }
    .hamburger  { display: flex; }

    h1 { font-size: 2.6rem; }
    h2 { font-size: 1.9rem; }

    .hero-overlay {
        background: rgba(0,0,0,0.6);
    }
    .hero-ctas  { flex-direction: column; }
    .btn-xl     { width: 100%; justify-content: center; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
    .stat-card:nth-child(3), .stat-card:nth-child(4) { border-bottom: none; }

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

    .slide-img   { height: 55vw; min-height: 250px; }
    .slide-caption { padding: 24px 20px; }
    .slide-caption h3 { font-size: 1.3rem; }
    .arrow-prev  { left: 14px; }
    .arrow-next  { right: 14px; }
    .arrow-btn   { width: 46px; height: 46px; }

    .form-row    { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 22px; }

    .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 50px 0 40px; }
}

@media (max-width: 480px) {
    .hero-trust  { gap: 10px; }
    .trust-item  { padding: 7px 11px; font-size: 0.82rem;}
    .stat-number { font-size: 2.6rem; }
    .slide-caption { padding: 20px 16px; }
}
