/* -------------------------------------------------------
   GLOBAL VARIABLES & BASE STYLES
------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Jockey+One&display=swap');

:root {
    --brand-green: #1A4D1E;
    --brand-green-dark: #123515;
    --text-main: #1F2933;
    --text-muted: #6B7280;
    --bg-light: #F5F5F5;
    --card-bg: #FFFFFF;
    --border-subtle: #E5E7EB;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
}

h1, h2, h3 {
    font-family: 'Jockey One', sans-serif;
    letter-spacing: 0.02em;
}

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

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* UPDATED container (merged) */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* -------------------------------------------------------
   HEADER (MERGED GLASS + ORIGINAL)
------------------------------------------------------- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    color: var(--brand-green);
    font-weight: bold;
}

/* NAV */
.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    color: #333;
}

/* LOGIN */
.login-link {
    color: #333;
    font-size: 0.95rem;
}

/* -------------------------------------------------------
   HERO SECTION
------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 50vh;
    background: url('/img/public_page_arborist.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 60px 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.15)
    );
}

/* FIXED alignment */
.hero-inner {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: left;
}

.hero-title {
    font-size: clamp(2.4rem, 4.2vw, 3.1rem);
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    margin-bottom: 26px;
    color: #E5E7EB;
}

/* BUTTON */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: var(--brand-green);
    color: #fff;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;

    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    transition: 0.2s;
}

.btn-primary:hover {
    background: var(--brand-green-dark);
    transform: translateY(-1px);
}
/* -------------------------------------------------------
   CONTENT SECTION
------------------------------------------------------- */
.content-section {
    background: #fff;
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
}

/* -------------------------------------------------------
   SERVICES
------------------------------------------------------- */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.service-card {
    flex: 1 1 calc(33% - 16px);
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
    border: 1px solid rgba(148,163,184,0.25);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 14px;
}

.service-card.health img {
    width: 135px;
    height: 135px;
}

.service-title {
    font-size: 22px;
    color: var(--brand-green);
    margin-bottom: 6px;
}

.service-desc {
    font-size: 16px;
    color: var(--text-muted);
}

/* -------------------------------------------------------
   WHY CHOOSE US
------------------------------------------------------- */
.why-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
    border: 1px solid rgba(148,163,184,0.25);
    margin-bottom: 40px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.why-list li {
    display: flex;
    gap: 8px;
}

.why-list li::before {
    content: "✓";
    color: var(--brand-green);
    font-weight: bold;
}

/* -------------------------------------------------------
   CONTACT CARD
------------------------------------------------------- */
.contact-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
    border: 1px solid rgba(148,163,184,0.25);
}

.contact-heading {
    font-size: 1.4rem;
    color: var(--brand-green);
}

.contact-link {
    display: inline-flex;
    gap: 6px;
    margin: 8px 0 16px;
    color: var(--brand-green);
    font-weight: 500;
}

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */
footer {
    border-top: 1px solid var(--border-subtle);
    margin-top: 18px;
    padding-top: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* -------------------------------------------------------
   FORM (NEW - for your contact page)
------------------------------------------------------- */
.form-input input,
.form-input textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

fieldset {
    border: none;
    padding: 0;
}

/* -------------------------------------------------------
   RESPONSIVE
------------------------------------------------------- */
@media(max-width: 992px) {
    .service-card {
        flex: 1 1 calc(50% - 12px);
    }
}

@media(max-width: 640px) {
    .service-card {
        flex: 1 1 100%;
    }

    .hero {
        min-height: 40vh;
        padding: 40px 0;
    }
}

