html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    color: #384e52;
    background-color: #fafbfa;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2.5rem;
    background: #fff;
    color: #384e52;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #384e52;
    flex-shrink: 0;
}

a.logo:hover {
    color: #384e52;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo p {
    display: none;
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #1B4D3E;
    border-radius: 2px;
    transition: all 0.3s;
}

nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #384e52;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

nav a:hover {
    color: #1B4D3E;
}

/* ── Services Dropdown ── */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 220px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0 0.5rem;
    z-index: 200;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.55rem 1.2rem;
    color: #384e52 !important;
    font-size: 0.88rem;
    font-weight: 500;
    margin: 0;
    transition: background 0.2s;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f0f7f0;
    color: #1B4D3E !important;
}

.contact-info {
    font-weight: 600;
}

.contact-info a {
    color: #1B4D3E;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #2d7a4a;
}

#hero {
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #d4ead4 100%);
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #1B4D3E;
    line-height: 1.1;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
}

.cta {
    display: inline-block;
    padding: 1.3rem 2.8rem;
    background: linear-gradient(135deg, #70c048 0%, #5aa834 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(112, 192, 72, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transition: left 0.3s ease;
}

.cta:hover {
    background: linear-gradient(135deg, #5aa834 0%, #4a8a28 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(112, 192, 72, 0.45);
}

.cta:hover::before {
    left: 100%;
}

#hero img {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

section {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}

h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1B4D3E;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: -0.8px;
    line-height: 1.3;
}

h3 {
    color: #2d7a4a;
    margin-top: 3rem;
    margin-bottom: 1.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

ul {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 1rem;
    padding-left: 0;
}

ul li {
    margin-bottom: 1.2rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
}

ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #70c048;
    font-weight: bold;
    font-size: 1.2rem;
}

section img {
    display: block;
    margin: 3rem auto;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border: 1px solid #f0f0f0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, #f5faf8 0%, #eef7f3 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid #d4ead4;
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #70c048 0%, #2d7a4a 100%);
}

.benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(45, 122, 74, 0.15);
}

.benefit h3 {
    color: #2d7a4a;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.benefit p {
    color: #384e52;
    font-size: 1rem;
}

.ba-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.ba-project h3 {
    text-align: center;
    color: #1B4D3E;
    margin: 0 0 1.5rem 0;
    font-size: 1.4rem;
}

.ba-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ba-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #d4ead4;
}

.ba-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.ba-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(27, 77, 62, 0.85);
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ba-combined {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #d4ead4;
    background: #f5f7f5;
}

.ba-combined img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

#areas .section-intro {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

.areas-list {
    max-width: 880px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem 1.5rem;
}

.areas-list li {
    position: relative;
    padding: 0.7rem 0.8rem 0.7rem 1.8rem;
    color: #384e52;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #e8ede8;
    transition: background 0.2s ease, color 0.2s ease;
}

.areas-list li::before {
    content: '';
    position: absolute;
    left: 0.3rem;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #70c048;
    border-radius: 50%;
    transform: translateY(-50%);
}

.areas-list li:hover {
    background: #f5fbf0;
    color: #1B4D3E;
}

.areas-list-extra {
    margin-top: 0.8rem;
}

.areas-list-extra[hidden] {
    display: none;
}

.areas-toggle-wrap {
    text-align: center;
    margin-top: 2rem;
}

.areas-toggle {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: #fff;
    color: #1B4D3E;
    border: 2px solid #70c048;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.areas-toggle:hover {
    background: #70c048;
    color: #fff;
    transform: translateY(-2px);
}

.areas-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(112, 192, 72, 0.25);
}

/* Compact Service Area row — placed above footer */
#areas.areas-compact {
    max-width: 900px;
    margin: 2.5rem auto 3rem;
    padding: 2rem 1.5rem;
    background: #fff;
    border-top: 1px solid #e8ede8;
    border-bottom: 1px solid #e8ede8;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
}

.areas-compact h2 {
    display: none;
}

.areas-compact-line {
    margin: 0 0 1.2rem 0;
    color: #384e52;
    font-size: 1.02rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.areas-compact .areas-toggle {
    padding: 0.7rem 1.6rem;
    font-size: 0.88rem;
}

.areas-compact-list {
    margin: 1.5rem auto 0;
    max-width: 860px;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem 1.2rem;
    text-align: left;
}

.areas-compact-list li {
    padding: 0.55rem 0.5rem 0.55rem 1.4rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.areas-compact-list li::before {
    width: 6px;
    height: 6px;
}

@media (max-width: 768px) {
    #areas.areas-compact {
        margin: 1.8rem 1rem 2.2rem;
        padding: 1.6rem 1rem;
    }
    .areas-compact-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem 0.8rem;
    }
    .areas-compact-line {
        font-size: 0.96rem;
    }
}

.areas-map {
    display: block;
    max-width: 780px;
    margin: 3rem auto 0;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d4ead4;
    box-shadow: 0 8px 24px rgba(27, 77, 62, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.areas-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27, 77, 62, 0.15);
}

.areas-map img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.areas-map-caption {
    display: block;
    padding: 0.9rem 1.2rem;
    background: #f5fbf0;
    color: #1B4D3E;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.2px;
    border-top: 1px solid #d4ead4;
    transition: background 0.2s ease, color 0.2s ease;
}

.areas-map:hover .areas-map-caption {
    background: #eaf5d8;
    color: #70c048;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid #d4ead4;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #70c048;
}

.faq-item summary {
    padding: 1.4rem 1.8rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1B4D3E;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #70c048;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.8rem 1.4rem;
    margin: 0;
    color: #384e52;
    line-height: 1.8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.review {
    text-align: left;
    padding: 1.8rem;
    background: linear-gradient(135deg, #f5faf8 0%, #eef7f3 100%);
    border-radius: 12px;
    border: 2px solid #d4ead4;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(45, 122, 74, 0.12);
}

.review p {
    font-style: italic;
    margin: 0.8rem 0;
    color: #384e52;
    font-size: 0.98rem;
    line-height: 1.7;
    flex: 1;
}

.review cite {
    font-style: normal;
    font-size: 0.85rem;
    color: #1B4D3E;
    font-weight: 600;
    margin-top: 0.6rem;
}

.review .stars {
    color: #d4a947;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.review-link {
    display: inline-block;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, #70c048 0%, #2d7a4a 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(61, 154, 95, 0.3);
}

.review-link:hover {
    background: linear-gradient(135deg, #2d7a4a 0%, #1B4D3E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(61, 154, 95, 0.4);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

a.portfolio-item {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.portfolio-item {
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(45, 122, 74, 0.15);
}

.portfolio-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.portfolio-item h3 {
    margin: 1.2rem 0;
    font-size: 1.1rem;
    color: #1B4D3E;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    margin: 1.5rem;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, #f5faf8 0%, #eef7f3 100%);
    border-radius: 12px;
    border: 2px solid #d4ead4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #70c048 0%, #2d7a4a 100%);
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(45, 122, 74, 0.12);
}

.step h3 {
    color: #1B4D3E;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.step p {
    color: #384e52;
    font-size: 1rem;
}

#testimonials {
    background: linear-gradient(135deg, #f1f8f6 0%, #e8f5e9 100%);
}

.testimonial {
    max-width: 650px;
    margin: 3rem auto;
    text-align: center;
    padding: 3.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    border: 1px solid #e8f5e9;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #70c048 0%, #2d7a4a 100%);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(45, 122, 74, 0.12);
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin: 1.5rem 0;
    color: #384e52;
    font-size: 1.05rem;
    line-height: 1.8;
}

cite {
    font-weight: bold;
    color: #2d7a4a;
}

#video-testimonials {
    background: linear-gradient(135deg, #f5faf8 0%, #eef7f3 100%);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #384e52;
    margin-bottom: 3.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card {
    text-align: left;
    padding: 1.6rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 1px solid #e8ede8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(112, 192, 72, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 0 1.2rem 0;
    background: #f0f0f0;
    cursor: pointer;
    border: none;
    display: block;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.04);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(112, 192, 72, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    padding-left: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background 0.2s ease;
    z-index: 10;
}

.video-card:hover .play-button {
    background: #70c048;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h3 {
    color: #1B4D3E;
    margin: 0.2rem 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.video-card p {
    color: #5a6770;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.2rem 0;
}

.video-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border-radius: 8px;
    margin: 0 0 1.2rem 0;
    background: #000;
}

.video-cta {
    text-align: center;
    margin-top: 3rem;
}

.video-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #70c048 0%, #2d7a4a 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(61, 154, 95, 0.3);
}

.video-link:hover {
    background: linear-gradient(135deg, #2d7a4a 0%, #1B4D3E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(61, 154, 95, 0.4);
}

#contact {
    background: linear-gradient(135deg, #f5fbf0 0%, #e8f5d8 100%);
    color: #384e52;
    border-radius: 12px;
    border: 1px solid #d4ead4;
}

#contact h2 {
    color: #1B4D3E;
    margin-bottom: 2rem;
}

#contact h2 + p {
    text-align: center;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 500px;
    margin: 2.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #d4ead4;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    color: #384e52;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8a9598;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #70c048;
    box-shadow: 0 0 0 3px rgba(112, 192, 72, 0.15);
}

.form-privacy {
    max-width: 500px;
    margin: 1rem auto 0;
    text-align: center;
    color: #5a6770;
    font-size: 0.85rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.form-privacy strong {
    color: #2d6a1f;
    font-weight: 600;
}

.contact-form button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.contact-details {
    max-width: 520px;
    margin: 2.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #d4ead4;
    color: #384e52;
    text-align: center;
}

.contact-details p {
    margin: 0.6rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: #1B4D3E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #70c048;
}

footer {
    background: linear-gradient(135deg, #1B4D3E 0%, #2d6a4a 100%);
    color: #fff;
    padding: 3rem;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-contact p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-contact a:hover {
    opacity: 1;
}

footer nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
}

footer nav a:hover {
    color: #70c048;
}

/* Mobile responsive */
@media (max-width: 768px) {
    /* --- Header & Navigation --- */
    header {
        flex-wrap: wrap;
        padding: 0;
        border-bottom: none;
    }
    /* Row 1: Logo — full width, centered */
    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0.35rem 0 0.2rem;
    }
    .logo-img {
        height: auto;
        width: 92vw;
        max-width: 420px;
        margin: 0 auto;
    }
    /* Row 2: Phone left, hamburger right */
    .contact-info {
        display: block;
        flex: 1;
        order: 2;
        padding: 0 1.2rem 0.6rem;
    }
    .contact-info p {
        margin: 0;
    }
    .contact-info a {
        font-size: 0.88rem;
        font-weight: 600;
        color: #1B4D3E;
        letter-spacing: 0.3px;
    }
    .menu-toggle {
        display: flex;
        flex-shrink: 0;
        align-self: center;
        order: 3;
        padding: 0 1.2rem 0.6rem;
    }
    header nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #fff;
        border-top: 1px solid #e0e0e0;
        padding: 1rem 0;
        gap: 0;
    }
    /* Bottom line under phone/hamburger row */
    header::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #e0e0e0;
    }
    header nav.open {
        display: flex;
    }
    header nav a {
        display: block;
        padding: 0.75rem 1.5rem;
        margin: 0;
        font-size: 1rem;
        border-bottom: 1px solid #f5f5f5;
    }
    .nav-dropdown {
        width: 100%;
    }
    .dropdown-toggle {
        display: block;
        padding: 0.75rem 1.5rem;
        margin: 0;
        border-bottom: 1px solid #f5f5f5;
    }
    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: #f8faf8;
        padding: 0;
        min-width: auto;
    }
    .dropdown-menu a {
        padding-left: 2.5rem !important;
        font-size: 0.9rem !important;
    }

    /* --- Hero --- */
    #hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    .hero-content {
        padding-right: 0;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    #hero > img {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 1.5rem auto 0;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    /* --- General Sections --- */
    section {
        padding: 3rem 1.5rem;
        margin-bottom: 2rem;
    }
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    /* --- Section Images (general) --- */
    section img {
        margin: 1.5rem auto;
    }

    /* --- Benefits --- */
    .benefit {
        padding: 2rem 1.5rem;
    }

    /* --- Portfolio --- */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    /* --- Before & After --- */
    .ba-pair {
        grid-template-columns: 1fr;
    }
    .ba-image img {
        height: 200px;
    }
    .ba-combined {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .ba-combined img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    /* --- Process --- */
    .step {
        margin: 1.2rem 0;
        padding: 2rem 1.5rem;
        min-width: auto;
    }
    .process-steps {
        flex-direction: column;
    }

    /* --- Reviews --- */
    .testimonial {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    /* --- Areas --- */
    .areas-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem 1rem;
    }
    .areas-list li {
        padding: 0.6rem 0.5rem 0.6rem 1.5rem;
        font-size: 0.92rem;
    }
    #areas .section-intro {
        font-size: 0.98rem;
    }
    .areas-map {
        margin: 2.2rem auto 0;
    }

    /* --- Videos --- */
    .video-grid,
    .video-grid-2 {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        margin-top: 2rem;
    }
    .video-card {
        padding: 1.2rem;
    }
    .video-card h3 {
        font-size: 1.1rem;
    }
    .video-card p {
        font-size: 0.92rem;
    }
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    .video-cta {
        margin-top: 2rem;
    }
    .section-intro {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    /* --- Contact --- */
    .contact-details {
        margin: 2rem 0;
    }

    /* --- Footer --- */
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contact {
        flex-direction: column;
        gap: 0.3rem;
    }
    footer nav {
        margin-top: 1rem;
    }
    footer nav a {
        margin: 0 0.8rem;
    }
}

/* Very narrow phones: stack areas list to 1 column */
@media (max-width: 360px) {
    .areas-list {
        grid-template-columns: 1fr;
    }
}