/* Global */
body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
    line-height: 1.6;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    background: #1e4620;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.logo {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.nav a:hover {
    opacity: 0.7;
}

/* Hero */
.hero {
    background: url('/images/bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 140px 20px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

.hero h2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Buttons */
.cta-btn {
    background: #1e4620;
    border: none;
    padding: 14px 28px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.15s ease, background 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: #163a18;
}

/* Sections */
.services, .contact, .vendors {
    padding: 70px 20px;
    text-align: center;
}

.services h2,
.contact h2,
.vendors h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

/* Contact / Form */
.contact form {
    max-width: 520px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea,
.contact select {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.2s ease;
}

.contact input:focus,
.contact textarea:focus,
.contact select:focus {
    outline: none;
    border-color: #1e4620;
}

/* Vendors section */
.vendors {
    background: #1e4620;
    color: #fff;
    border-top: 4px solid #163a18;
    border-bottom: 4px solid #163a18;
}

.vendor-btn {
    background: #fff;
    color: #1e4620;
}

.vendor-btn:hover {
    background: #f0f0f0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px;
    background: #1e4620;
    color: #fff;
    margin-top: 40px;
    font-size: 0.95rem;
}
/* Updated Quote Card – Matches Full Site Theme */
.quote-card {
    background: #ffffff;
    text-align: center;
    padding: 10px 10px;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 10px;
    border: 2px solid #1e4620;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.quote-card h2 {
    margin-bottom: 35px;
    font-size: 2rem;
    font-weight: 700;
    color: #1e4620;
}

/* Inputs */
.quote-card input,
.quote-card textarea,
.quote-card contact,
.quote-card select {
    background: #fff;
    border: 2px solid #dcdcdc;
    border-radius: 6px;
max-width: 400px;
    padding: 14px;
    font-size: 1rem;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.quote-card input:focus,
.quote-card textarea:focus,
.quote-card select:focus {
    border-color: #1e4620;
    background: #f3f8f3;
    outline: none;
}

/* Submit Button */
.quote-card button {
    width: 100%;
    margin-top: 10px;
}

/* Smooth Fade */
.quote-card {
    animation: fadeInUp 0.4s ease-out;
}

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

