/* ---------- RESET ---------- */

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

/* ---------- COLORS ---------- */

:root {
    --green: #587533;
    --dark: #222222;
    --light: #fafaf8;
    --white: #ffffff;
}

/* ---------- BODY ---------- */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--);
}

/* ---------- CONTAINER ---------- */

.container {
    width: min(92%, 1100px);
    margin: 0 auto;
}

/* ---------- NAVBAR ---------- */

.navbar {
    background: var(--white);
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

/* ---------- LOGO ---------- */

.logo {
    text-decoration: none;
    color: var(--dark);

    font-size: 1.8rem;
    font-weight: 900;
}

/* ---------- LOGO ---------- */

.logo img {
    height: 90px;
    display: block;
}

/* ---------- NAVIGATION ---------- */

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: .25s;
}

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

/* ---------- BUTTON ---------- */

.quote-button {

    background: var(--green);

    color: white;

    text-decoration: none;

    padding: 12px 24px;

    border-radius: 8px;

    font-weight: bold;

    transition: .25s;

}

.quote-button:hover {

    transform: translateY(-2px);

}/* ---------- HERO ---------- */

.hero {
    padding: 60px 0 170px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.hero-text {
    flex: 0 0 50%;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-text h1 span {
    color: var(--green);
}

.hero-text p {

    font-size: 1.3rem;
    color: #555;
    max-width: 460px;
    line-height: 1.8;
    margin-bottom: 45px;

}

.primary-button,
.secondary-button {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;

    padding: 18px 36px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 700;

    transition: all .25s ease;

}

.primary-button {

    background: var(--green);
    color: white;

}

.primary-button:hover {

    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(88,117,51,.25);

}

.secondary-button {

    border: 2px solid var(--green);
    color: var(--green);
    background: white;

}

.secondary-button:hover {

    background: var(--green);
    color: white;

}

.hero-image {
    flex: 0 0 54%;
    display: flex;
    justify-content: flex-end;
    align-items: center;

    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 160%;
    max-width: 1000px;

    margin-left: -140px;
    margin-top: 15px;
}
/* ---------- FEATURES ---------- */

.features {

    background: white;
    padding: 90px 0;

}

.features h2 {

    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;

}

.feature-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.feature-card {

    background: var(--light);

    border-radius: 18px;

    padding: 40px 30px;

    text-align: center;

    transition: .25s;

}

.feature-card:hover {

    transform: translateY(-8px);

}

.feature-icon {

    font-size: 2.4rem;
    margin-bottom: 20px;

}

.feature-card h3 {

    margin-bottom: 15px;

}

.feature-card p {

    color: #666;
    line-height: 1.7;

}
/* ---------- PRICING PAGE ---------- */

.pricing-page {
    padding: 50px 0;
    background: var(--light);
}

.pricing-page h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pricing-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

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

.pricing-card {
    background: white;
    border-radius: 18px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .25s;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card h2 {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 10px;
}

.price span {
    font-size: 1.2rem;
    color: #666;
}

.billing {
    color: #888;
    font-size: .95rem;
    margin-bottom: 30px;
}

.pricing-card p:last-child {
    color: #555;
    line-height: 1.8;
}

.pricing-note {
    text-align: center;
    color: #666;
    margin-top: 50px;
}

.pricing-cta {
    text-align: center;
    margin-top: 45px;
}
.service-area-badge {
    display: inline-block;
    background: rgba(88,117,51,.10);
    color: var(--green);

    padding: 10px 22px;
    border-radius: 999px;

    font-weight: 600;
    font-size: .95rem;

    margin: 0 auto 50px;
}

.pricing-page .container {
    text-align: center;
}

.pricing-grid {
    text-align: left;
}
/* ---------- FAQ PAGE ---------- */

.faq-page {
    padding: 110px 0;
    background: var(--light);
}

.faq-page h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 18px;
    padding: 35px 40px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: all .25s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.faq-item h2 {
    color: var(--green);
    font-size: 1.45rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-page .pricing-cta {
    margin-top: 55px;
    text-align: center;
}
.faq-question {

    width: 100%;

    background: none;
    border: none;

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

    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 700;

    color: var(--green);

    cursor: pointer;

    padding: 8px 0;

    transition: color .2s ease;

}

.faq-question:hover {

    color: #6f9142;

}

.faq-icon {

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green);

    transition: transform .25s ease;

}

.faq-icon svg {

    width: 100%;
    height: 100%;

}

.faq-icon.rotate {

    transform: rotate(180deg);

}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    margin-top: 20px;
    color: #555;
    line-height: 1.8;
}
/* ---------- CONTACT PAGE ---------- */

.contact-page {
    padding: 50px 0;
    background: var(--light);
}

.contact-page h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.contact-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

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

.form-group > label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;

    border: 1px solid #ddd;
    border-radius: 12px;

    font-family: inherit;
    font-size: 1rem;

    transition: .25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    outline: none;
    border-color: var(--green);

    box-shadow: 0 0 0 4px rgba(88,117,51,.12);

}

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

.checkbox-group {
    margin: 10px 0 35px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    cursor: pointer;

    color: #555;
    line-height: 1.6;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;

    accent-color: var(--green);

    margin-top: 2px;
}

.contact-form .primary-button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

   .checkbox-options {

    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-top: 12px;

}

.checkbox-option {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border: 1px solid #ddd;
    border-radius: 12px;

    cursor: pointer;

    transition: .25s;

    font-weight: 500;

}

.checkbox-option:hover {

    border-color: var(--green);
    background: rgba(88,117,51,.05);

}

.checkbox-option input {

    width: 18px;
    height: 18px;

    margin: 0;

    accent-color: var(--green);

}

.checkbox-option span {

    color: var(--dark);

}

.checkbox-option:hover {

    border-color: var(--green);
    background: rgba(88,117,51,.05);

}

.checkbox-option input {

    width: 18px;
    height: 18px;

    accent-color: var(--green);

    margin: 0;

}

.checkbox-option span {

    font-weight: 500;

}
.checkbox-option {

    display: inline-flex !important;
    align-items: center;
    gap: 10px;

}

.checkbox-option input {

    flex-shrink: 0;

}

.checkbox-options {

    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;

}
/* ---------- THANK YOU PAGE ---------- */

.thanks-page {

    padding: 120px 0;

}

.thanks-card {

    max-width: 700px;

    margin: auto;

    background: white;

    border-radius: 24px;

    padding: 70px 60px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,.06);

}

.checkmark {

    width: 90px;
    height: 90px;

    margin: 0 auto 35px;

    border-radius: 50%;

    background: var(--green);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 3rem;
    font-weight: 700;

}

.thanks-card h1 {

    font-size: 3rem;

    margin-bottom: 25px;

}

.thanks-text {

    font-size: 1.2rem;

    color: #555;

    line-height: 1.8;

    margin-bottom: 45px;

}

.thanks-contact {

    background: var(--light);

    border-radius: 16px;

    padding: 25px;

    margin-bottom: 35px;

}

.thanks-contact p {

    margin: 8px 0;

}

.thanks-small {

    color: #777;

    line-height: 1.8;

    margin-bottom: 45px;

}

.thanks-card .primary-button {

    display: inline-flex;

}
/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

/* ---------- MOBILE NAVBAR ---------- */

.navbar .container {

    height: auto;
    padding: 5px 0;

    flex-direction: column;
    gap: 0px;

}

.logo img {

    height: 100px;

}

nav ul {

    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;

}

nav a {

    font-size: .95rem;

}

.quote-button {

    width: 100%;
    max-width: 220px;

    text-align: center;

}
/* ---------- MOBILE HERO ---------- */

.hero {

    padding: 60px 0 80px;

}

.hero-content {

    flex-direction: column;
    gap: 25px;

}

.hero-text {

    order: 1;
    text-align: center;

}

.hero-image {

    order: 2;
    width: 100%;

}

.hero-image img {

    width: 110%;
    max-width: 460px;

    margin: 0 auto;

    display: block;

}

.hero-text h1 {

    font-size: 2.7rem;
    line-height: 1.1;

}

.hero-text p {

    font-size: 1.1rem;

    margin-left: auto;
    margin-right: auto;

}

.hero-buttons {

    display: flex;
    flex-direction: column;

    gap: 15px;

}

.primary-button,
.secondary-button {

    width: 100%;

}

.feature-grid {

    grid-template-columns: 1fr;

    gap: 20px;

}
/* ---------- MOBILE PRICING ---------- */

.pricing-page {

    padding: 20px 0;

}

.pricing-page h1 {

    font-size: 2.5rem;

}

.pricing-intro {

    font-size: 1.05rem;
    margin-bottom: 20px;

}

.pricing-grid {

    grid-template-columns: 1fr;

    gap: 15px;

}

.pricing-card {

    padding: 10px 30px;

}

.pricing-card h2 {

    font-size: 2rem;

}

.pricing-note {

    font-size: .95rem;

}
/* ---------- MOBILE FAQ ---------- */

.faq-page {

    padding: 20px 0;

}

.faq-page h1 {

    font-size: 2.5rem;

}

.faq-intro {

    font-size: 1.05rem;

    margin-bottom: 20px;

}

.faq-item {

    padding: 15px;

}

.faq-question {

    font-size: 1.15rem;

}

.faq-answer p {

    font-size: 1rem;

}
/* ---------- MOBILE CONTACT ---------- */

.contact-page {

    padding: 20px 0;

}

.contact-page h1 {

    font-size: 2.5rem;

}

.contact-intro {

    font-size: 1.05rem;

    margin-bottom: 20px;

}

.contact-form {

    padding: 30px 22px;

}

.form-group {

    margin-bottom: 22px;

}
/* ---------- MOBILE THANK YOU ---------- */

.thanks-page {

    padding: 20px 0;

}

.thanks-card {

    padding: 40px 25px;

}

.thanks-card h1 {

    font-size: 2.4rem;

}

.checkmark {

    width: 70px;
    height: 70px;

    font-size: 2.3rem;

}

.thanks-text {

    font-size: 1.05rem;

}

}