/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* SECTION DIVIDER */
.section-divider {
    display: none;
}

/* TOP CONTACT BAR */
.topbar {
    background: #2f5e3d;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* HEADER */
header {
    background: #ffffff;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo img {
    height: 40px;
    width: auto;
}

@media (max-width: 600px) {
    .logo img {
        height: 48px;
    }
}

/* NAVIGATION */
nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #2f5e3d;
    font-weight: 600;
    font-size: 16px;
    transition: 0.25s ease;
    position: relative;
    padding-bottom: 4px;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2f5e3d;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #1f402a;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active::after {
    width: 100%;
}

/* DROPDOWN MENU */
nav .dropdown {
    position: relative;
}

nav .dropdown > a i {
    font-size: 12px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

nav .dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 10px 0;
    margin-top: 0;
    padding-top: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    list-style: none;
}

/* Bridge the gap between nav link and dropdown */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #2f5e3d;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: #f0f7f3;
    color: #1f402a;
    padding-left: 25px;
}

/* HERO */
.hero {
    padding: 140px 0;
    background: url("../images/hero-bg.jpg") center center/cover no-repeat;
    position: relative;
    margin-bottom: 60px; /* FIX: separates hero from next section */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* HERO TEXT */
.hero-text h1 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text p,
.hero-list li,
.hero-phone {
    color: #ffffff;
}

.hero-phone {
    font-size: 22px;
    margin: 25px 0;
    font-weight: 600;
}

.hero-list {
    list-style: none;
}

.hero-list li {
    margin-bottom: 12px;
    font-size: 18px;
}

.hero-list li::before {
    content: "✔";
    color: #ffffff;
    margin-right: 10px;
}

/* HERO FORM */
.hero-form {
    background: rgba(255, 255, 255, 0.92);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.hero-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    grid-auto-flow: row;
}

.g-recaptcha {
    grid-column: 1 / -1;
}

.form-note {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.hero-form input,
.hero-form textarea {
    padding: 14px;
    border: 1px solid #c7d2cc;
    border-radius: 12px;
    background: #fdfdfd;
    width: 100%;
    box-sizing: border-box;
}

.hero-form textarea {
    grid-column: span 2;
    height: 120px;
}

.btn-submit {
    grid-column: span 2;
    background: #2f5e3d;
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(47, 94, 61, 0.2);
    text-decoration: none;
}

.btn-submit:hover {
    background: #1f402a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 94, 61, 0.35);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(47, 94, 61, 0.2);
}
}

/* SERVICES */
.services-section {
    padding: 80px 0;
    background: #e8efe9;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #2f5e3d;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #d9e2db;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.service-card h3 {
    color: #2f5e3d;
    margin-bottom: 20px;
    font-size: 22px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-card li {
    padding: 8px 0;
    color: #555;
    font-size: 16px;
}

.service-card li::before {
    content: "✓";
    color: #2f5e3d;
    margin-right: 10px;
    font-weight: bold;
}

.service-card a {
    text-decoration: none;
}

.btn-service {
    display: block;
    width: 100%;
    padding: 14px;
    background: #2f5e3d;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-service:hover {
    background: #1f402a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 94, 61, 0.3);
}

/* CTA */
.cta-section {
    background: #2f5e3d;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 80px 0;
    background: #d4e0d8;
}

.testimonials-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 0 20px;
}

.testimonial-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.testimonial-card p {
    flex-grow: 1;
    margin-bottom: 12px;
}

.read-more-link {
    display: inline-block;
    color: #2f5e3d;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #1f402a;
    text-decoration: underline;
}

.review-author {
    display: block;
    font-style: italic;
    color: #666;
    margin-top: auto;
}

.review-stars {
    color: #ffa724 !important;
    font-size: 16px;
    margin-bottom: 15px;
}

.review-stars i {
    margin-right: 2px;
    color: #ffa724 !important;
}

.review-stars .fas,
.review-stars .far {
    color: #ffa724 !important;
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 20px;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: #2f5e3d;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #2f5e3d;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(47, 94, 61, 0.2);
}

.reviews-link:hover {
    background: #1f402a;
    border-color: #1f402a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 94, 61, 0.4);
}

.reviews-link i {
    font-size: 20px;
    color: #ffffff;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #e8efe9;
}

.faq-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.faq-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* CERTIFICATIONS */
.certifications-section {
    padding: 20px 0;
    background: transparent;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.certification-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-item img {
    max-width: 280px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.certification-item img:hover {
    transform: scale(1.05);
}

/* TEAM */
.team-section {
    padding: 80px 0;
    background: #d4e0d8;
}

.team-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 35px;
    padding: 0 20px;
}

.team-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #d9e2db;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 12px auto;
}

.team-card h3 {
    color: #2f5e3d;
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.team-card .role {
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.3;
}

.team-card .phone,
.team-card .email {
    font-size: 11px;
    color: #555;
    margin: 4px 0;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.4;
}

.team-card i {
    color: #2f5e3d;
    width: 16px;
    margin-right: 4px;
    font-size: 12px;
}

.team-card a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-card a:hover {
    color: #2f5e3d;
}

.team-card .phone,
.team-card .email {
    margin-top: auto;
}

/* FOOTER */
.footer {
    background: #2f5e3d;
    color: #ffffff;
    padding: 60px 0 0 0;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-left p,
.footer-right p {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-btn {
    display: inline-block;
    margin-top: 15px;
    margin-right: 10px;
    padding: 12px 22px;
    background: #ffffff;
    color: #2f5e3d;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    /* NAVIGATION */
    nav ul {
        gap: 16px;
    }

    nav ul li a {
        font-size: 14px;
    }
    
    /* DROPDOWN MOBILE */
    .dropdown-menu {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
        margin-top: 5px;
    }
    
    nav .dropdown > a i {
        font-size: 10px;
    }

    /* HERO */
    .hero {
        padding: 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 20px;
    }

    /* TESTIMONIALS */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }
    
    .reviews-cta {
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .reviews-link {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 320px;
    }

    /* FAQ */
    .faq-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    /* TEAM */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }

    .team-card {
        padding: 15px;
    }

    .team-card img {
        width: 120px;
        height: 120px;
    }

    /* FORM */
    .hero-form form {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-form input[name="address"] {
        grid-column: 1;
    }

    .hero-form textarea {
        grid-column: auto;
        height: 100px;
    }

    .btn-submit {
        grid-column: auto;
    }

    /* CERTIFICATIONS */
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .certification-item img {
        max-width: 150px;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .topbar-flex {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .container {
        width: 95%;
    }

    header {
        padding: 6px 0;
    }

    .logo img {
        height: 35px;
    }

    /* NAVIGATION */
    nav ul {
        gap: 12px;
        justify-content: center;
    }

    nav ul li a {
        font-size: 13px;
        padding: 4px 0;
    }
    
    /* DROPDOWN MOBILE SMALL */
    .dropdown-menu {
        min-width: 180px;
        font-size: 13px;
    }
    
    .dropdown-menu li a {
        padding: 10px 15px;
        font-size: 13px;
    }

    /* TOPBAR */
    .topbar {
        padding: 8px 0;
        font-size: 11px;
    }

    .topbar-flex {
        flex-direction: column;
        gap: 5px;
    }

    /* HERO */
    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-phone {
        font-size: 18px;
    }

    .hero-list li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .hero-form {
        padding: 20px;
    }

    .hero-form h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .hero-form input,
    .hero-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    /* SERVICES */
    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .service-card li {
        font-size: 14px;
    }

    .btn-service {
        font-size: 14px;
        padding: 12px;
    }

    /* TESTIMONIALS */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-card p {
        font-size: 14px;
    }
    
    .read-more-link {
        font-size: 13px;
    }
    
    .reviews-link {
        font-size: 14px;
        padding: 12px 20px;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        padding: 15px;
        margin-bottom: 12px;
    }

    /* TEAM */
    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }

    .team-card {
        padding: 12px;
    }

    .team-card img {
        width: 100px;
        height: 100px;
        margin: 0 auto 8px auto;
    }

    .team-card h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .team-card .role {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .team-card .phone,
    .team-card .email {
        font-size: 10px;
        margin: 3px 0;
    }

    /* CTA */
    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 16px;
    }

    /* FOOTER */
    .footer {
        padding: 40px 0 0 0;
    }

    .footer-grid {
        padding: 40px 0 30px 0;
        gap: 20px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-left p,
    .footer-right p {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .footer-btn {
        padding: 10px 16px;
        font-size: 13px;
        margin-top: 10px;
        margin-right: 5px;
    }

    .footer-bottom {
        padding: 15px 0;
        font-size: 12px;
    }

    /* CERTIFICATIONS */
    .certifications-section {
        padding: 15px 0;
    }

    .certifications-grid {
        gap: 15px;
    }

    .certification-item img {
        max-width: 120px;
    }

    /* FORM */
    .hero-form form {
        gap: 10px;
    }

    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }
}

/* Extra Small Screens (320px and below) */
@media (max-width: 375px) {
    nav ul {
        gap: 8px;
    }
    
    nav ul li a {
        font-size: 12px;
    }
    
    .hero-text h1 {
        font-size: 22px;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
    }
    
    .topbar {
        font-size: 10px;
    }
}

/* ========================================
   BLOG PAGES
   ======================================== */

/* Blog Listing Page */
.blog-page {
    padding: 60px 0;
    min-height: 70vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-size: 42px;
    color: #2f5e3d;
    margin-bottom: 15px;
}

.blog-header p {
    font-size: 18px;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e8efe9;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-title {
    margin-bottom: 10px;
}

.blog-card-title a {
    text-decoration: none;
    color: #2f5e3d;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #1f402a;
}

.blog-card-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-card-date i {
    margin-right: 5px;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2f5e3d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: #1f402a;
    gap: 12px;
}

.blog-card-link i {
    font-size: 14px;
}

/* Single Post Page */
.post-single {
    padding: 60px 0;
    min-height: 70vh;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.post-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e5e5;
}

.post-header h1 {
    font-size: 38px;
    color: #2f5e3d;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-meta {
    color: #888;
    font-size: 15px;
}

.post-meta i {
    margin-right: 8px;
}

.post-featured-image {
    margin: 0 -40px 30px -40px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-body {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

.post-body h2 {
    font-size: 28px;
    color: #2f5e3d;
    margin: 20px 0 10px;
    font-weight: 700;
}

.post-body h3 {
    font-size: 22px;
    color: #2f5e3d;
    margin: 15px 0 8px;
    font-weight: 600;
}

.post-body p {
    margin-bottom: 1em;
    line-height: 1.4;
}

.post-body ul, .post-body ol {
    margin: 0 0 0 30px;
    line-height: 1.4;
}

.post-body li {
    margin-bottom: 0;
}

.post-body a {
    color: #2f5e3d;
    font-weight: 600;
    text-decoration: underline;
}

.post-body a:hover {
    color: #1f402a;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.post-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e5e5e5;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2f5e3d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #1f402a;
    gap: 12px;
}

.back-link i {
    font-size: 14px;
}

/* No posts / Error messages */
.no-posts, .error-message {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-posts p, .error-message p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.error-message h1 {
    font-size: 32px;
    color: #2f5e3d;
    margin-bottom: 15px;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-header h1 {
        font-size: 32px;
    }
    
    .post-content {
        padding: 30px 20px;
    }
    
    .post-featured-image {
        margin: 0 -20px 30px -20px;
    }
    
    .post-header h1 {
        font-size: 28px;
    }
    
    .post-body {
        font-size: 16px;
    }
}

/* ========================
   SERVICE PAGE STYLES
   ======================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2f5e3d 0%, #1f402a 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
}

/* Content Section */
.content-section {
    padding: 40px 0 80px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 50px;
}

.intro-text p {
    margin-bottom: 20px;
}

.intro-text a {
    color: #2f5e3d;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #2f5e3d;
}

.intro-text a:hover {
    color: #1f402a;
}

/* Service Blocks */
.service-block {
    background: #f9f9f9;
    border-left: 4px solid #2f5e3d;
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-block h2 {
    font-size: 32px;
    color: #2f5e3d;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-block h3 {
    font-size: 24px;
    color: #1f402a;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-block h4 {
    font-size: 18px;
    color: #2f5e3d;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-block p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.checklist li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #444;
    line-height: 1.6;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: #2f5e3d;
    font-weight: bold;
    font-size: 20px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-item h3,
.feature-item h4 {
    color: #2f5e3d;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
}

.feature-item ul {
    margin-top: 12px;
    padding-left: 20px;
}

.feature-item ul li {
    margin-bottom: 8px;
    color: #555;
}

/* Feature List */
.feature-list {
    margin: 30px 0;
}

.feature-list .feature-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

/* Feature Bullets */
.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-bullets li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #444;
    line-height: 1.7;
}

.feature-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2f5e3d;
    font-weight: bold;
    font-size: 24px;
}

.feature-bullets strong {
    color: #2f5e3d;
}

/* CTA Text */
.cta-text {
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    padding: 20px;
    background: #f0f7f3;
    border-radius: 8px;
    text-align: center;
}

.cta-text a {
    color: #2f5e3d;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #2f5e3d;
}

.cta-text a:hover {
    color: #1f402a;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #2f5e3d;
    color: #fff;
    border: 2px solid #2f5e3d;
}

.btn-primary:hover {
    background: #1f402a;
    border-color: #1f402a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 94, 61, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #2f5e3d;
    border: 2px solid #2f5e3d;
}

.btn-secondary:hover {
    background: #f0f7f3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 94, 61, 0.2);
}

/* Remove underlines from all anchor tags containing buttons */
a:has(.btn), a:has(.btn-service), a:has(.btn-submit) {
    text-decoration: none;
}

/* Projects Gallery Section */
.projects-section {
    margin: 60px 0 50px;
}

.projects-section h2 {
    font-size: 36px;
    color: #2f5e3d;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.projects-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(47, 94, 61, 0.95), rgba(47, 94, 61, 0.7));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

/* Responsive Service Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .service-block {
        padding: 25px 20px;
    }
    
    .service-block h2 {
        font-size: 26px;
    }
    
    .service-block h3 {
        font-size: 20px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .projects-section h2 {
        font-size: 28px;
    }
    
    .projects-intro {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .projects-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(47, 94, 61, 0.9), rgba(47, 94, 61, 0.6));
    }
}