/* ================================
   RIVERSIDE LANDSCAPING STYLES
   Earthy Water Theme - Warm & Natural
   ================================ */

:root {
    --primary: #3A5A40;
    --primary-light: #588157;
    --primary-dark: #1B4332;
    --accent: #A3B18A;
    --accent-warm: #DDA15E;
    --text-dark: #1A1A1A;
    --text-light: #5C5C5C;
    --white: #FFFFFF;
    --off-white: #F5F5F0;
    --sand: #E9EDC9;
    --border: #D4D4C8;
    --shadow: rgba(58, 90, 64, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 1px 15px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 56px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.02);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 12px 26px !important;
    border-radius: 4px;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(27, 67, 50, 0.65) 0%, rgba(58, 90, 64, 0.45) 50%, rgba(27, 67, 50, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 140px 24px 100px;
    color: var(--white);
    animation: fadeIn 1.2s ease;
}

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

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.9;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 20px;
}

.hero h1 {
    font-family: 'Crimson Text', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.95;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-block;
    padding: 15px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent-warm);
    color: var(--white);
}

.btn-primary:hover {
    background: #C68E4E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(221, 161, 94, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

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

.btn-submit {
    width: 100%;
}

.hero-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 60px, 0 0);
    z-index: 2;
}

/* Section Labels */
.section-label {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

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

.section-header h2 {
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    width: 85%;
    border-radius: 8px;
    box-shadow: 0 20px 50px var(--shadow);
}

.about-img-sub {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 15px 40px var(--shadow);
    border: 4px solid var(--white);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 22px 28px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(58, 90, 64, 0.3);
}

.exp-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content h2 {
    font-family: 'Crimson Text', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
}

.promise-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: var(--off-white);
    border-radius: 8px;
    transition: var(--transition);
}

.promise-item:hover {
    background: var(--sand);
    transform: translateX(4px);
}

.promise-icon {
    color: var(--primary-light);
    font-size: 18px;
    font-weight: 700;
}

.promise-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.promise-item p {
    font-size: 13px;
    margin: 0;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px var(--shadow);
    border-color: transparent;
}

.service-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 14px;
}

.service-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-warm);
    letter-spacing: 1px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Crimson Text', serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-list li {
    background: var(--sand);
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
}

/* Service Area */
.service-area {
    padding: 80px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.area-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.area-content .section-label {
    color: var(--accent);
}

.area-content h2 {
    font-family: 'Crimson Text', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
}

.area-content p {
    opacity: 0.85;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.area-tag:hover {
    background: rgba(255, 255, 255, 0.2);
}

.area-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.area-stat {
    text-align: center;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.area-stat-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-warm);
    line-height: 1;
    margin-bottom: 6px;
}

.area-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

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

.contact-info-panel h2 {
    font-family: 'Crimson Text', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-info-panel > p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: var(--off-white);
    border-radius: 8px;
    transition: var(--transition);
}

.info-row:hover {
    background: var(--sand);
}

.info-icon {
    font-size: 22px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
}

.info-label {
    display: block;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.info-row a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.info-row a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-panel {
    background: var(--off-white);
    padding: 44px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.contact-form-panel h3 {
    font-family: 'Crimson Text', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-form-panel form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.1);
}

.contact-form-panel textarea {
    resize: vertical;
    min-height: 110px;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand p {
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent-warm);
}

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

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--accent-warm);
}

.footer-contact p {
    opacity: 0.75;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-warm);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 13px;
}

.footer-bottom p:last-child {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper,
    .area-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }

    .about-images {
        order: 2;
    }

    .hero-ribbon {
        height: 40px;
        clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 40px, 0 0);
    }
}

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        box-shadow: 0 10px 40px var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .about-content h2,
    .area-content h2,
    .contact-info-panel h2 {
        font-size: 28px;
    }

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

    .about-img-main {
        width: 100%;
    }

    .about-img-sub {
        display: none;
    }

    .experience-badge {
        top: auto;
        bottom: -20px;
        right: 10px;
    }

    .contact-form-panel {
        padding: 28px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 26px;
    }
}
