/*
Theme Name: Green Project
Theme URI: https://greenpro.asuperstition.com
Author: Green Project
Author URI: https://greenpro.asuperstition.com
Description: Тема за Green Project - озеленяване и градински услуги
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: green-project
Tags: custom-theme, green, garden, landscaping, responsive
*/

/* ===================================
   FONTS & VARIABLES
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --color-green: #3A7028;
    --color-green-light: #4A8535;
    --color-green-dark: #2A5018;
    --color-green-bg: rgba(58, 112, 40, 0.07);
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    --color-gray: #666666;
    --color-gray-light: #F5F5F5;
    --color-cream: #FAF8F5;
    --color-dark: #2A5018;
    --font-main: 'Montserrat', sans-serif;
    --container-width: 1400px;
    --header-height: 90px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black);
    background-color: #F1F5F0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

#page {
    overflow-x: hidden;
    position: relative;
}

/* ===================================
   HEADER
   =================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 0 66px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 66px;
    right: 66px;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: -1;
}

.header-container {
    width: 100%;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.site-logo .custom-logo {
    display: block;
    margin-bottom: 5px;
}

.site-logo .custom-logo img,
a.custom-logo-link img {
    width: 265px;
    height: auto;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    font-style: normal;
}

.logo-text .green {
    color: var(--color-green);
    font-weight: 800;
}

.logo-text .project {
    font-weight: 300;
    font-style: normal;
    color: var(--color-green);
}

.tagline {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0.3px;
    font-style: normal;
}

.tagline strong {
    font-weight: 700;
    color: var(--color-green);
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    position: relative;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-green);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.current-menu-item::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--color-green);
}

.header-cta {
    background-color: #3A7028;
    color: var(--color-white);
    padding: 12px 16px 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta:hover {
    background-color: var(--color-green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 112, 40, 0.3);
}

.header-cta svg {
    width: 14px;
    height: 14px;
}

.header-cta .arrow-circle {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-cta .arrow-circle svg {
    width: 14px;
    height: 14px;
    transform: rotate(-45deg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    z-index: 1001;
    position: relative;
}

.menu-toggle:hover {
    background-color: rgba(58, 112, 40, 0.08);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-green);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    transform-origin: center;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile CTA inside menu */
.mobile-menu-cta {
    display: none;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 90vh;
    min-height: 600px;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0) 100%);
    border-radius: 0 0 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Fallback background for when JS hasn't loaded yet */
.hero-section[data-fallback-bg] {
    background-size: cover;
    background-position: center;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 80px 60px;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.15;
    color: var(--color-white);
    text-align: left;
    max-width: 830px;
}

.hero-title strong {
    font-weight: 700;
}

.hero-title .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-title .reveal-word.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title .highlight {
    font-weight: 700;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   WHAT MAKES US DIFFERENT SECTION
   =================================== */
.different-section {
    background-color: #F1F5F0;
    padding: 100px 0;
}

.section-container {
    width: 100%;
    padding: 0 128px;
}

.section-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    color: #2A5018;
    margin-bottom: 50px;
    line-height: 1.1;
}

.different-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.different-box {
    padding: 0;
}

.different-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    font-style: normal;
    color: #2A5018;
    margin-bottom: 40px;
    line-height: 1.15;
}

.different-title strong {
    font-weight: 700;
    font-style: normal;
    display: block;
}

.different-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: var(--color-green);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.icon-wrapper:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(58, 112, 40, 0.3);
}

.icon-wrapper svg {
    width: 36px;
    height: 36px;
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.icon-wrapper:hover svg {
    transform: scale(1.1);
}

.icon-wrapper dotlottie-player {
    width: 72px;
    height: 72px;
    --dotlottie-player-color: #ffffff;
    filter: brightness(0) invert(1);
}

.icon-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-green);
}

.icon-item p {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.6;
}

.different-image {
    height: 100%;
    display: flex;
    align-items: stretch;
    position: relative;
    padding-right: 16px;
}

.different-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 20px;
    width: 16px;
    background-color: var(--color-green);
    border-radius: 0 12px 12px 0;
}

.different-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ===================================
   SERVICES SECTION - HORIZONTAL ACCORDION
   =================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.services-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    font-style: normal;
    color: #2A5018;
    line-height: 1.15;
    margin: 0;
}

.services-title strong {
    font-weight: 700;
    font-style: normal;
}

.services-view-more {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
    white-space: nowrap;
    margin-top: 12px;
}

.services-view-more:hover {
    color: var(--color-green);
}

.view-more-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    background-color: rgba(58, 112, 40, 0.08);
    transition: all 0.3s ease;
}

.view-more-link:hover {
    gap: 12px;
    background-color: var(--color-green);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 112, 40, 0.3);
}

.view-more-link svg {
    transition: transform 0.3s ease;
}

.view-more-link:hover svg {
    transform: translateX(4px);
}

.services-accordion {
    display: flex;
    height: 480px;
    gap: 8px;
    width: 100%;
}

.service-accordion-item {
    position: relative;
    flex: 1;
    min-width: 70px;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: flex-grow 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-accordion-item:hover,
.service-accordion-item.active {
    flex-grow: 6;
}

.service-accordion-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-accordion-item:hover .service-accordion-image img,
.service-accordion-item.active .service-accordion-image img {
    filter: brightness(0.75);
}

/* Vertical title for collapsed state */
.service-vertical-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.5px;
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
    text-align: center;
    z-index: 2;
}

.service-accordion-item:hover .service-vertical-title,
.service-accordion-item.active .service-vertical-title {
    opacity: 0;
}

/* Arrow circle links to service page */
.service-accordion-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
                background 0.3s ease, border-color 0.3s ease;
    z-index: 3;
    text-decoration: none;
}

.service-accordion-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
}

.service-accordion-arrow svg {
    width: 18px;
    height: 18px;
    color: #fff;
    transform: rotate(-45deg);
}

.service-accordion-item:hover .service-accordion-arrow,
.service-accordion-item.active .service-accordion-arrow {
    opacity: 1;
    transform: translateY(0);
}

.service-accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
    color: var(--color-white);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
    z-index: 2;
}

.service-accordion-item:hover .service-accordion-content,
.service-accordion-item.active .service-accordion-content {
    opacity: 1;
    transform: translateY(0);
}

.service-accordion-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--color-white);
    line-height: 1.2;
}

.service-accordion-desc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 14px;
    max-width: 400px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.25s,
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.service-accordion-item:hover .service-accordion-desc,
.service-accordion-item.active .service-accordion-desc {
    opacity: 1;
    transform: translateY(0);
}

.service-accordion-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s,
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s,
                background 0.3s ease, border-color 0.3s ease;
}

.service-accordion-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.service-accordion-item:hover .service-accordion-link,
.service-accordion-item.active .service-accordion-link {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   PROJECTS SECTION - Featured + Grid
   =================================== */
.projects-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.projects-header {
    text-align: left;
    margin-bottom: 50px;
}

.projects-showcase-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    font-style: normal;
    color: #2A5018;
    line-height: 1.15;
    letter-spacing: -0.5px;
    max-width: 700px;
}

.projects-showcase-title strong {
    font-weight: 700;
    font-style: normal;
}

/* Showcase Images */
.projects-showcase-images {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 16px;
    height: 480px;
    margin-bottom: 0;
}

.showcase-slide-main {
    display: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.showcase-slide-main.active {
    display: block;
}

.showcase-slide-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-slide-main:hover img {
    transform: scale(1.03);
}

/* Next slide preview */
.showcase-slide-next {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.showcase-slide-next img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.showcase-slide-next:hover img {
    transform: scale(1.05);
}

.showcase-next-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    cursor: pointer;
    transition: all 0.35s ease;
}

.showcase-next-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: scale(1.08);
}

.showcase-next-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Info row below images */
.projects-showcase-info {
    margin-top: 30px;
    position: relative;
    min-height: 80px;
}

.showcase-info-slide {
    display: none;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    animation: showcaseInfoIn 0.5s ease;
}

.showcase-info-slide.active {
    display: grid;
}

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

.showcase-info-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.showcase-label {
    font-size: 16px;
    color: var(--color-gray);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.showcase-project-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.3;
}

.showcase-location {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.3;
}

.showcase-info-desc p {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Progress bar */
.showcase-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.showcase-progress-bar {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.showcase-progress-fill {
    height: 100%;
    background: var(--color-green);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.showcase-counter {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-gray);
    white-space: nowrap;
}

.showcase-counter .showcase-current {
    color: var(--color-black);
    font-weight: 700;
}

/* ===================================
   CTA SECTION - Green bg with rounded image card
   =================================== */
.cta-section {
    position: relative;
    width: 100%;
    background-color: #3A7028;
    padding: 60px 0 80px;
    margin-top: 0;
    overflow: visible;
}

.cta-container {
    width: 100%;
    padding: 0 128px;
}

.cta-card {
    position: relative;
    display: block;
    width: 100%;
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.cta-card:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-arrow-circle {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-card:hover .cta-arrow-circle {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-arrow-circle svg {
    width: 22px;
    height: 22px;
    color: var(--color-green);
    transform: rotate(-45deg);
}

.cta-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 2;
}

.cta-card-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.2;
    max-width: 600px;
}

.cta-card-content h2 strong {
    font-weight: 700;
}

.cta-card-watermark {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
    font-size: 16px;
    font-style: normal;
    opacity: 0.5;
    color: #fff;
}

.cta-card-watermark .green {
    font-weight: 700;
}

.cta-card-watermark .project {
    font-weight: 300;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background-color: #F1F5F0;
    padding: 80px 0 0;
}

.footer-container {
    width: 100%;
    padding: 0 128px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo .site-logo {
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-logo .custom-logo img {
    max-height: 260px;
    width: auto;
}

.footer-logo .logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 6px;
    font-style: normal;
}

.footer-logo .logo-text .green {
    color: var(--color-green);
    font-weight: 800;
}

.footer-logo .logo-text .project {
    font-weight: 300;
    font-style: normal;
    color: var(--color-green);
}

.footer-logo .tagline {
    font-size: 16px;
    color: var(--color-gray);
    margin: 0 0 24px 0;
    font-style: normal;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-green);
    color: #fff;
    padding: 12px 16px 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-cta:hover {
    background-color: var(--color-green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 112, 40, 0.3);
}

.footer-cta .arrow-circle {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-cta .arrow-circle svg {
    width: 14px;
    height: 14px;
    transform: rotate(-45deg);
    color: #fff;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 24px;
    text-transform: none;
    letter-spacing: 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 16px;
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-green);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 16px;
    color: var(--color-gray);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--color-gray);
}

.footer-legal a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-green);
}

.footer-legal span {
    color: rgba(0, 0, 0, 0.2);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
    .site-header {
        padding: 0 40px;
    }

    .site-header::before {
        left: 40px;
        right: 40px;
    }

    .header-container {
        padding: 0 30px;
    }

    .section-container,
    .footer-container,
    .cta-container {
        padding: 0 40px;
    }

    .hero-container {
        padding: 0 50px 50px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .different-image {
        order: -1;
        max-height: 400px;
    }

    .different-image img {
        max-height: 400px;
    }

    .projects-showcase-images {
        grid-template-columns: 1fr 220px;
        height: 380px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .site-header {
        position: fixed;
        height: 80px;
        padding: 0 24px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .site-header::before {
        display: none;
    }

    a.custom-logo-link img {
        width: 200px;
    }

    .page-hero-container {
        padding: 0 40px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: #1a2e10;
        padding: 120px 40px 40px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.77, 0, 0.18, 1),
                    visibility 0.4s cubic-bezier(0.77, 0, 0.18, 1);
        pointer-events: none;
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-y: auto;
    }

    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        width: 100%;
    }

    .main-navigation ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .main-navigation.active ul li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-navigation.active ul li:nth-child(1) { transition-delay: 0.1s; }
    .main-navigation.active ul li:nth-child(2) { transition-delay: 0.15s; }
    .main-navigation.active ul li:nth-child(3) { transition-delay: 0.2s; }
    .main-navigation.active ul li:nth-child(4) { transition-delay: 0.25s; }
    .main-navigation.active ul li:nth-child(5) { transition-delay: 0.3s; }
    .main-navigation.active ul li:nth-child(6) { transition-delay: 0.35s; }
    .main-navigation.active ul li:nth-child(7) { transition-delay: 0.4s; }

    .main-navigation a {
        color: rgba(255, 255, 255, 0.85);
        font-size: 24px;
        font-weight: 500;
        padding: 18px 0;
        display: block;
        letter-spacing: -0.3px;
    }

    .main-navigation a:hover,
    .main-navigation .current-menu-item > a {
        color: #fff;
    }

    .main-navigation a::after {
        display: none;
    }

    .menu-toggle.active span {
        background-color: #fff;
    }

    /* Mobile CTA in menu */
    a.mobile-menu-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        background-color: var(--color-green);
        color: #fff;
        padding: 16px 28px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 500;
        margin-top: 32px;
        transition: all 0.3s ease;
        text-decoration: none;
        opacity: 0;
        transform: translateY(20px);
        white-space: nowrap;
    }

    .main-navigation.active a.mobile-menu-cta {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.45s;
    }

    .mobile-menu-cta .arrow-circle {
        width: 32px;
        height: 32px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-cta .arrow-circle svg {
        width: 14px;
        height: 14px;
        transform: rotate(-45deg);
    }

    .header-cta {
        display: none;
    }

    .different-icons {
        grid-template-columns: 1fr 1fr;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services-accordion {
        height: 400px;
    }

    .service-accordion-content h3 {
        font-size: 20px;
    }

    .service-accordion-desc {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-accordion-content {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-logo .custom-logo img {
        width: 140px;
        height: auto;
    }

    .footer-logo .custom-logo img {
        max-height: 80px;
    }

    .site-header {
        padding: 0 16px;
        height: 70px;
    }

    .header-container {
        padding: 0 16px;
    }

    .section-container,
    .footer-container,
    .cta-container {
        padding: 0 20px;
    }

    .hero-container {
        padding: 0 20px 40px;
    }

    .hero-section {
        min-height: 450px;
        height: 45vh;
        width: calc(100% - 12px);
        border-radius: 0 0 20px 20px;
        background-size: cover;
    }

    .hero-section::before {
        border-radius: 0 0 20px 20px;
    }

    .hero-title {
        max-width: 100%;
    }

    .main-navigation {
        padding: 100px 30px 30px;
    }

    .main-navigation a {
        font-size: 22px;
        padding: 16px 0;
    }

    .different-grid {
        gap: 30px;
    }

    .different-title {
        margin-bottom: 30px;
    }

    .different-icons {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }

    .icon-wrapper dotlottie-player {
        width: 48px;
        height: 48px;
    }

    .different-image {
        padding-right: 12px;
    }

    .different-image img {
        border-radius: 16px;
        max-height: 350px;
    }

    .different-image::after {
        width: 12px;
        border-radius: 0 8px 8px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo .site-logo {
        justify-content: center;
    }

    .footer-logo .tagline {
        text-align: center;
    }

    .footer-cta {
        margin: 0 auto;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 16px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .cta-section {
        padding: 40px 0 50px;
    }

    .cta-card {
        height: 360px;
        border-radius: 20px;
    }

    .cta-card-content h2 {
        font-size: 26px;
    }

    /* === VERTICAL MOBILE ACCORDION === */
    .services-accordion {
        flex-direction: column;
        height: auto;
        gap: 4px;
        border-radius: 16px;
        overflow: hidden;
    }

    .service-accordion-item {
        flex: none !important;
        flex-grow: 0 !important;
        min-width: 100%;
        height: auto;
        min-height: 60px;
        border-radius: 0;
        overflow: hidden;
        transition: none;
    }

    .service-accordion-item:hover,
    .service-accordion-item.active {
        flex-grow: 0 !important;
    }

    /* Image stays absolute — visible as background on every item */
    .service-accordion-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .service-accordion-image img {
        filter: brightness(0.35);
    }

    .service-accordion-item.active .service-accordion-image img {
        filter: brightness(0.5);
    }

    /* Vertical title becomes horizontal bar header over the image */
    .service-vertical-title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        align-items: center;
        padding: 20px 60px 20px 20px;
        white-space: normal;
        width: 100%;
        text-align: left;
        font-size: 16px;
        opacity: 1 !important;
        z-index: 2;
    }

    .service-accordion-item:hover .service-vertical-title,
    .service-accordion-item.active .service-vertical-title {
        opacity: 1 !important;
    }

    /* Arrow as toggle indicator on right side of header */
    .service-accordion-arrow {
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        opacity: 1;
        width: 36px;
        height: 36px;
        border: none;
        background: rgba(255,255,255,0.15);
    }

    .service-accordion-item:hover .service-accordion-arrow,
    .service-accordion-item.active .service-accordion-arrow {
        opacity: 1;
        transform: translateY(-50%);
    }

    .service-accordion-arrow svg {
        width: 16px;
        height: 16px;
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

    .service-accordion-item.active .service-accordion-arrow svg {
        transform: rotate(90deg);
    }

    /* Content slides open below title, over the image bg */
    .service-accordion-content {
        position: relative;
        background: transparent;
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: none;
        transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                    opacity 0.3s ease,
                    padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 2;
    }

    .service-accordion-item:hover .service-accordion-content,
    .service-accordion-item.active .service-accordion-content {
        max-height: 300px;
        opacity: 1;
        padding: 0 20px 20px;
    }

    .service-accordion-content h3 {
        display: none;
    }

    .service-accordion-desc {
        display: block;
        opacity: 1;
        transform: none;
        font-size: 16px;
        margin-bottom: 12px;
    }

    .service-accordion-link {
        opacity: 1;
        transform: none;
        font-size: 16px;
        padding: 8px 16px;
    }
    /* === END VERTICAL MOBILE ACCORDION === */

    /* Disable heavy animations on mobile */
    .cursor-glow,
    .hero-ken-burns-bg {
        display: none;
    }

    .animate-ready {
        opacity: 1;
        transform: none !important;
    }

    .hero-title .reveal-word {
        opacity: 1;
        transform: none;
    }

    .hero-subtitle {
        opacity: 1;
        transform: none;
    }
}

/* ===================================
   ARCHIVE & SINGLE PAGES
   =================================== */

/* Archive Pages */
.archive-header {
    text-align: center;
    padding: 60px 0 40px;
}

.archive-title {
    font-size: 56px;
    font-weight: 700;
    color: #2A5018;
    margin-bottom: 20px;
}

.archive-hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 24px;
}

/* Services Archive */
.services-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.service-archive-item {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-archive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-archive-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-archive-image {
    height: 250px;
    overflow: hidden;
}

.service-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-archive-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 15px;
    position: relative;
}

.service-archive-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.service-archive-icon dotlottie-player {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.service-archive-title {
    font-size: 20px;
    font-weight: 600;
    color: #2A5018;
    text-align: center;
    margin-bottom: 10px;
}

.service-archive-excerpt {
    font-size: 16px;
    color: var(--color-gray);
    text-align: center;
    padding: 0 20px 20px;
}

/* ===================================
   SERVICES PAGE (page-services.php)
   =================================== */
.page-services {
    overflow: hidden;
}

.services-hero {
    min-height: 50vh;
}

.services-hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Services Showcase - Alternating rows */
.services-showcase-section {
    padding: 80px 0 40px;
}

.service-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-showcase-row:last-child {
    margin-bottom: 0;
}

.service-row-reverse {
    direction: rtl;
}

.service-row-reverse > * {
    direction: ltr;
}

.service-showcase-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-showcase-image:hover img {
    transform: scale(1.05);
}

.service-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(58, 112, 40, 0.3);
}

.service-row-reverse .service-image-badge {
    left: auto;
    right: 20px;
}

.service-image-badge span {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.service-showcase-content {
    padding: 20px 0;
}

.service-showcase-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-green), #5a9e42);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(58, 112, 40, 0.2);
}

.service-showcase-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.service-showcase-icon dotlottie-player {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.service-showcase-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-showcase-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 28px;
}

.service-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-green);
    text-decoration: none;
    padding: 12px 28px;
    border: 2px solid var(--color-green);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-showcase-link:hover {
    background: var(--color-green);
    color: #fff;
    transform: translateX(4px);
}

.service-showcase-link svg {
    transition: transform 0.3s ease;
}

.service-showcase-link:hover svg {
    transform: translateX(4px);
}

/* Quick Services Grid - navigation cards */
.services-quick-grid-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e3 0%, #f0f7ee 50%, #e3f0de 100%);
}

.services-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-quick-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green), #5a9e42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(58, 112, 40, 0.15);
    border-color: rgba(58, 112, 40, 0.15);
}

.service-quick-card:hover::before {
    transform: scaleX(1);
}

.service-quick-icon {
    width: 56px;
    height: 56px;
    background: var(--color-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(58, 112, 40, 0.2);
}

.service-quick-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.service-quick-icon dotlottie-player {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.service-quick-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.service-quick-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(58, 112, 40, 0.08);
    color: var(--color-green);
    transition: all 0.3s ease;
}

.service-quick-card:hover .service-quick-arrow {
    background: var(--color-green);
    color: #fff;
    transform: translateX(4px);
}

/* Services Page Responsive */
@media (max-width: 992px) {
    .service-showcase-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-row-reverse {
        direction: ltr;
    }

    .service-showcase-image img {
        height: 300px;
    }

    .service-showcase-title {
        font-size: 26px;
    }

    .services-quick-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .services-showcase-section {
        padding: 60px 0 20px;
    }

    .service-showcase-row {
        margin-bottom: 50px;
    }

    .service-showcase-image img {
        height: 250px;
    }

    .service-showcase-title {
        font-size: 24px;
    }

    .service-showcase-excerpt {
        font-size: 16px;
    }

    .service-showcase-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .service-showcase-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-showcase-icon dotlottie-player {
        width: 32px;
        height: 32px;
    }

    .service-image-badge {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .service-image-badge span {
        font-size: 16px;
    }

    .services-quick-grid-section {
        padding: 60px 0;
    }

    .service-quick-card {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .service-showcase-image img {
        height: 220px;
    }

    .service-showcase-title {
        font-size: 22px;
    }

    .service-showcase-link {
        font-size: 16px;
        padding: 10px 22px;
    }

    .services-quick-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-quick-card {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .service-quick-title {
        font-size: 16px;
    }

    .services-hero-badges {
        gap: 8px;
    }
}

/* Projects Archive */
.archive-project-page {
    padding: 60px 0 80px;
}

.archive-project-page .archive-header {
    text-align: center;
    margin-bottom: 30px;
}

.archive-project-page .archive-title {
    font-size: 48px;
    font-weight: 700;
    color: #2A5018;
    margin: 0;
}

.archive-subtitle {
    font-size: 16px;
    color: var(--color-gray);
    margin-top: 8px;
}

.archive-subtitle strong {
    color: var(--color-dark);
}

/* Project Filters Wrapper */
.project-filters-wrapper {
    margin-bottom: 40px;
}

/* Projects Results Header */
.projects-results-header {
    text-align: center;
    margin-bottom: 24px;
}

/* Dropdown Category Selector */
.project-category-select-wrapper {
    position: relative;
    max-width: 360px;
    margin: 0 auto 20px;
}

.project-category-select {
    width: 100%;
    padding: 14px 48px 14px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    background: #fff;
    border: 2px solid rgba(58, 112, 40, 0.2);
    border-radius: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.project-category-select:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 4px rgba(58, 112, 40, 0.1);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-green);
    pointer-events: none;
}

/* Project No-Image Placeholder */
.project-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e3 0%, #f0f7ee 100%);
    color: rgba(58, 112, 40, 0.3);
}

/* Projects Pagination */
.projects-pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination-info {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 16px;
    font-weight: 500;
}

.pagination-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-dark);
    background: var(--color-cream, #f5f5f0);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.pagination-links .page-numbers:hover {
    background: rgba(58, 112, 40, 0.08);
    border-color: rgba(58, 112, 40, 0.2);
    color: var(--color-green);
}

.pagination-links .page-numbers.current {
    background: var(--color-green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(58, 112, 40, 0.25);
}

.pagination-links .page-numbers.dots {
    background: none;
    border: none;
    color: var(--color-gray);
    pointer-events: none;
    min-width: 30px;
    padding: 0;
}

.pagination-links .prev,
.pagination-links .next {
    gap: 6px;
    padding: 0 20px;
    background: rgba(58, 112, 40, 0.06);
}

.pagination-links .prev:hover,
.pagination-links .next:hover {
    background: var(--color-green);
    color: #fff;
}

/* Project Category Filters */
.project-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.project-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-dark);
    background: var(--color-cream, #f5f5f0);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.project-filter-btn:hover {
    background: rgba(58, 112, 40, 0.08);
    border-color: rgba(58, 112, 40, 0.2);
    color: var(--color-green);
}

.project-filter-btn.active {
    background: var(--color-green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(58, 112, 40, 0.25);
}

.filter-count {
    font-size: 16px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.08);
    padding: 2px 8px;
    border-radius: 20px;
}

.project-filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.2);
}

/* Project Category Badges on cards */
.project-archive-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.project-cat-badge {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-green);
    background: rgba(58, 112, 40, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.archive-project-page .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.archive-project-page .pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-cream);
    color: var(--color-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.archive-project-page .pagination .page-numbers:hover,
.archive-project-page .pagination .page-numbers.current {
    background-color: var(--color-green);
    color: var(--color-white);
}

.projects-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.project-archive-item {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-archive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-archive-item.project-featured {
    grid-column: span 2;
}

.project-archive-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-archive-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.project-archive-item.project-featured .project-archive-image {
    height: 350px;
}

.project-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
}

.project-archive-content {
    padding: 20px;
}

.project-archive-title {
    font-size: 20px;
    font-weight: 600;
    color: #2A5018;
    margin-bottom: 10px;
}

.project-archive-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: var(--color-green);
    margin-bottom: 10px;
}

.project-archive-location svg {
    width: 14px;
    height: 14px;
}

.project-archive-excerpt {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Single Service */
/* ===================================
   SINGLE SERVICE — Modern Layout
   =================================== */
.ss-page {
    padding: 0 0 80px;
}

/* Hero */
.ss-hero {
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 0 0 80px 80px;
}

.ss-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
    border-radius: 0 0 80px 80px;
}

.ss-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
    padding-top: 120px;
    max-width: 750px;
}

.ss-breadcrumb {
    margin-bottom: 20px;
}

.ss-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.ss-breadcrumb a:hover {
    color: #fff;
}

.ss-hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(58,112,40,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ss-hero-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

.ss-hero-icon dotlottie-player {
    width: 44px;
    height: 44px;
    filter: brightness(0) invert(1);
}

.ss-hero-title {
    font-size: 50px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.12;
}

.ss-hero-title strong {
    font-weight: 700;
}

.ss-hero-excerpt {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.ss-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ss-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.ss-hero-btn-primary {
    background: var(--color-green);
    color: #fff;
}

.ss-hero-btn-primary:hover {
    background: #2d5a1e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(58,112,40,0.35);
}

.ss-hero-btn-outline {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

.ss-hero-btn-outline:hover {
    background: rgba(255,255,255,0.2);
}

/* Services Navigation Strip */
.ss-nav-strip {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.ss-nav-scroll {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.ss-nav-scroll::-webkit-scrollbar { display: none; }

.ss-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.ss-nav-item:hover {
    background: #f0f8ed;
    color: var(--color-green);
}

.ss-nav-active {
    background: var(--color-green);
    color: #fff;
}

.ss-nav-active:hover {
    background: var(--color-green);
    color: #fff;
}

.ss-nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-nav-icon dotlottie-player {
    width: 22px;
    height: 22px;
}

.ss-nav-active .ss-nav-icon dotlottie-player {
    filter: brightness(0) invert(1);
}

/* Content Section */
.ss-content-section {
    padding: 50px 0 40px;
}

.ss-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.ss-content-text {
    font-size: 17px;
    line-height: 1.85;
    color: var(--color-black);
}

.ss-content-text p {
    margin-bottom: 1.2em;
}

.ss-content-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-green);
    margin: 36px 0 14px;
}

.ss-content-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 28px 0 10px;
}

.ss-content-text ul,
.ss-content-text ol {
    margin: 1em 0;
    padding-left: 1.4em;
}

.ss-content-text li {
    margin-bottom: 0.5em;
}

/* Sidebar */
.ss-content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 80px;
}

.ss-sidebar-card {
    border-radius: 18px;
    padding: 28px;
}

.ss-sidebar-cta {
    background: linear-gradient(135deg, #f0f8ed, #e6f0e3);
    border: 1px solid #d4e4cf;
    text-align: center;
}

.ss-sidebar-icon {
    width: 56px;
    height: 56px;
    background: var(--color-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
}

.ss-sidebar-cta h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ss-sidebar-cta p {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 18px;
    line-height: 1.5;
}

.ss-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--color-green);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.ss-sidebar-btn:hover {
    background: #2d5a1e;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(58,112,40,0.25);
}

.ss-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--color-green);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.ss-sidebar-link:hover {
    gap: 10px;
}

/* Stats sidebar */
.ss-sidebar-stats {
    background: #f8faf7;
    border: 1px solid #e8ede6;
}

.ss-stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #e8ede6;
}

.ss-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ss-stat-row:first-child {
    padding-top: 0;
}

.ss-stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-green);
    min-width: 70px;
}

.ss-stat-label {
    font-size: 16px;
    color: var(--color-gray);
}

/* Related Projects */
.ss-projects-section {
    padding: 20px 0 50px;
}

.ss-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.ss-section-header h2 {
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ss-section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-green);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.ss-section-link:hover {
    gap: 10px;
}

.ss-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ss-project-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ss-project-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 10px;
}

.ss-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ss-project-card:hover .ss-project-img img {
    transform: scale(1.06);
}

.ss-project-no-img {
    width: 100%;
    height: 100%;
    background: #f0f3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.ss-project-hover {
    position: absolute;
    inset: 0;
    background: rgba(58,112,40,0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: all 0.3s;
}

.ss-project-card:hover .ss-project-hover {
    opacity: 1;
    background: rgba(58,112,40,0.35);
}

.ss-project-name {
    font-size: 16px;
    font-weight: 500;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Contact CTA */
.ss-contact-cta {
    padding: 30px 0 50px;
}

.ss-cta-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #1a3a12, #2d5a1e, #3A7028);
    border-radius: 24px;
    padding: 44px 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ss-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    border-radius: 50%;
}

.ss-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ss-cta-icon dotlottie-player {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.ss-cta-content {
    flex: 1;
    min-width: 0;
}

.ss-cta-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ss-cta-content p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.5;
}

.ss-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.ss-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s;
}

.ss-cta-btn-phone {
    background: #fff;
    color: var(--color-green);
}

.ss-cta-btn-phone:hover {
    background: #f0f8ed;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.ss-cta-btn-email {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

.ss-cta-btn-email:hover {
    background: rgba(255,255,255,0.25);
}

.ss-cta-btn-form {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
}

.ss-cta-btn-form:hover {
    background: rgba(255,255,255,0.15);
}

/* Prev / Next Service Navigation */
.ss-post-nav {
    display: flex;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.ss-pn-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background: #f8faf7;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 1px solid #e8ede6;
}

.ss-pn-link:hover {
    background: #f0f8ed;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.ss-pn-empty {
    background: transparent;
    border-color: transparent;
    pointer-events: none;
}

.ss-pn-icon {
    width: 52px;
    height: 52px;
    background: var(--color-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ss-pn-icon dotlottie-player {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.ss-pn-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ss-pn-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-green);
}

.ss-pn-title {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ss-pn-next {
    justify-content: flex-end;
    text-align: right;
}

/* btn-back kept for backward compat */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back:hover {
    gap: 15px;
}

/* Related Services (legacy, kept for archive) */
.related-services {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-services h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-green);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-service-icon dotlottie-player {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.related-service-item {
    background: var(--color-cream);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.related-service-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-service-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -25px auto 10px;
    position: relative;
}

.related-service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.related-service-item h3 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 0 15px 15px;
}

/* ===================================
   SINGLE PROJECT — Modern Layout
   =================================== */

/* Hero */
.single-project-page {
    padding: 0 0 80px;
}

.sp-hero {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 0 0 80px 80px;
}

.sp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    border-radius: 0 0 80px 80px;
}

.sp-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
    padding-top: 120px;
}

/* Breadcrumb */
.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 16px;
}

.sp-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.sp-breadcrumb a:hover {
    color: #fff;
}

.sp-breadcrumb-sep {
    color: rgba(255,255,255,0.4);
}

/* Hero Title */
.sp-hero-title {
    font-size: 52px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
    max-width: 800px;
}

.sp-hero-title strong {
    font-weight: 700;
}

/* Meta Badges */
.sp-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.sp-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.2s, background 0.2s;
    text-decoration: none;
}

.sp-meta-badge:hover {
    transform: translateY(-1px);
}

.sp-meta-cat {
    background: rgba(58, 112, 40, 0.85);
    color: #fff;
}

.sp-meta-cat:hover {
    background: rgba(58, 112, 40, 1);
    color: #fff;
}

.sp-meta-location {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.sp-meta-date {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

.sp-meta-featured {
    background: rgba(255, 193, 7, 0.9);
    color: #1a1a1a;
}

.sp-hero-image-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    cursor: default;
}

/* Article */
.sp-article {
    max-width: 1100px;
    margin: 0 auto;
}

/* Content */
.sp-content {
    padding: 50px 0 20px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-black);
}

.sp-content p {
    margin-bottom: 1.2em;
}

.sp-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-green);
    margin: 40px 0 16px;
}

.sp-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 12px;
}

/* Gallery */
.sp-gallery {
    padding: 20px 0 60px;
}

.sp-gallery-header {
    margin-bottom: 30px;
}

.sp-gallery-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-gallery-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-green);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50%;
}

/* Gallery Grid — dynamic masonry-like */
.sp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    grid-auto-flow: dense;
}

.sp-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.sp-gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.sp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sp-gallery-item:hover img {
    transform: scale(1.08);
}

.sp-gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.sp-gallery-item:hover .sp-gallery-item-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.3);
}

/* Lightbox */
.sp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sp-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.sp-lightbox-image-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-lightbox-image-wrapper img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sp-lightbox-image-wrapper img.loaded {
    opacity: 1;
    transform: scale(1);
}

.sp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}

.sp-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.sp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}

.sp-lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.05);
}

.sp-lightbox-prev {
    left: 20px;
}

.sp-lightbox-next {
    right: 20px;
}

.sp-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 500;
    padding: 6px 16px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    z-index: 10;
}

/* Prev / Next Navigation */
.sp-post-nav {
    display: flex;
    align-items: stretch;
    gap: 20px;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 20px 0 0;
}

.sp-nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--color-black);
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.sp-nav-link:hover {
    background: #f0f3f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.sp-nav-placeholder {
    background: transparent;
    pointer-events: none;
}

.sp-nav-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.sp-nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-nav-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.sp-nav-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-green);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sp-nav-title {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-nav-next {
    justify-content: flex-end;
    text-align: right;
}

.sp-nav-grid-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    color: var(--color-green);
    background: #f0f8ed;
    text-decoration: none;
    transition: all 0.3s;
}

.sp-nav-grid-btn:hover {
    background: var(--color-green);
    color: #fff;
}

/* Related Projects */
.sp-related {
    padding: 60px 0 0;
}

.sp-related-title {
    font-size: 30px;
    font-weight: 700;
    color: #2A5018;
    margin-bottom: 30px;
}

.sp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-related-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sp-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.sp-related-image {
    height: 200px;
    overflow: hidden;
}

.sp-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sp-related-card:hover .sp-related-image img {
    transform: scale(1.06);
}

.sp-related-no-img {
    width: 100%;
    height: 100%;
    background: #f0f3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
}

.sp-related-info {
    padding: 18px 20px;
    flex: 1;
}

.sp-related-cat {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-green);
    margin-bottom: 6px;
    display: block;
}

.sp-related-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.sp-related-loc {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    color: var(--color-gray);
}

.sp-related-arrow {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f8ed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    transition: all 0.3s;
}

.sp-related-card:hover .sp-related-arrow {
    background: var(--color-green);
    color: #fff;
    transform: translateX(3px);
}

/* Pagination */
.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background-color: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
}

/* No posts message */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: var(--color-gray);
}

/* Projects more link */
.projects-more-link {
    text-align: center;
    margin-top: 40px;
}

/* ===================================
   HOME - LATEST BLOG POSTS
   =================================== */
.home-blog-section {
    padding: 80px 0;
    background-color: #fff;
}

.home-blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.home-blog-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(58, 112, 40, 0.1);
    color: var(--color-green);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.home-blog-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.1;
    margin: 0;
}

.home-blog-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-green);
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 0;
    transition: gap 0.3s ease;
}

.home-blog-all:hover {
    gap: 12px;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-blog-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.home-blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.home-blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.home-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-blog-card:hover .home-blog-card-image img {
    transform: scale(1.05);
}

.home-blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e2 0%, #f0f7ed 100%);
    color: var(--color-green);
}

.home-blog-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--color-green);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.home-blog-card-body {
    padding: 20px;
}

.home-blog-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-blog-card-excerpt {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.5;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: var(--color-gray);
}

.home-blog-card-date svg {
    opacity: 0.5;
}

.home-blog-card-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(58, 112, 40, 0.08);
    color: var(--color-green);
    transition: background 0.3s ease, transform 0.3s ease;
}

.home-blog-card:hover .home-blog-card-arrow {
    background: var(--color-green);
    color: #fff;
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 992px) {
    .home-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-blog-grid .home-blog-card:nth-child(3) {
        display: none;
    }

    .home-blog-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .home-blog-section {
        padding: 60px 0;
    }

    .home-blog-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 28px;
    }

    .home-blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-blog-grid .home-blog-card:nth-child(3) {
        display: block;
    }

    .home-blog-title {
        font-size: 28px;
    }

    .home-blog-card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .home-blog-title {
        font-size: 24px;
    }

    .home-blog-card-body {
        padding: 16px;
    }

    .home-blog-card-title {
        font-size: 16px;
    }

    .home-blog-card-image {
        height: 160px;
    }
}

/* Archive & Single Responsive */
@media (max-width: 992px) {
    .archive-title {
        font-size: 42px;
    }

    .services-archive-grid,
    .projects-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-archive-item.project-featured {
        grid-column: span 1;
    }

    .project-archive-item.project-featured .project-archive-image {
        height: 250px;
    }

    .related-services-grid,
    .related-projects-grid,
    .sp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sp-gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .sp-hero-title {
        font-size: 42px;
    }

    .sp-hero {
        min-height: 440px;
    }
}

@media (max-width: 768px) {
    .archive-title {
        font-size: 36px;
    }

    .services-archive-grid,
    .projects-archive-grid {
        grid-template-columns: 1fr;
    }

    .related-services-grid,
    .related-projects-grid,
    .sp-related-grid {
        grid-template-columns: 1fr;
    }

    .sp-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .ss-hero-title,
    .sp-hero-title {
        font-size: 32px;
    }

    .ss-hero {
        min-height: 380px;
    }

    .ss-hero-inner {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .ss-hero-excerpt { font-size: 16px; }

    .ss-hero-actions {
        flex-direction: column;
    }

    .ss-content-grid {
        grid-template-columns: 1fr;
    }

    .ss-content-sidebar {
        position: static;
    }

    .ss-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .ss-cta-actions {
        width: 100%;
    }

    .ss-cta-btn {
        justify-content: center;
    }

    .ss-post-nav {
        flex-direction: column;
        gap: 12px;
    }

    .ss-pn-next {
        justify-content: flex-start;
        text-align: left;
    }

    .ss-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sp-hero {
        min-height: 380px;
    }

    .sp-hero-inner {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .sp-post-nav {
        flex-direction: column;
        gap: 12px;
    }

    .sp-nav-grid-btn {
        width: 100%;
        height: 48px;
    }

    .sp-nav-next {
        justify-content: flex-start;
        text-align: left;
    }

    .sp-lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .sp-lightbox-prev {
        left: 10px;
    }

    .sp-lightbox-next {
        right: 10px;
    }

    .sp-content {
        font-size: 16px;
        padding: 30px 0 10px;
    }

    .service-archive-item,
    .project-archive-item {
        max-width: 400px;
        margin: 0 auto;
    }

    .project-category-filters {
        display: none;
    }

    .project-category-select-wrapper {
        display: block;
    }

    .project-filter-btn {
        font-size: 16px;
        padding: 8px 14px;
    }

    .pagination-links .prev span,
    .pagination-links .next span {
        display: none;
    }

    .pagination-links .prev,
    .pagination-links .next {
        padding: 0 14px;
    }

    .pagination-links .page-numbers {
        min-width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .archive-project-page .archive-title {
        font-size: 32px;
    }
}

/* ===================================
   PAGE HERO (Generic)
   =================================== */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 0 0 80px 80px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 80px 80px;
    z-index: 1;
}

.page-hero.about-hero {
    background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1920&q=80');
}



.page-hero-container {
    position: relative;
    z-index: 2;
    padding: 0 128px;
}

.page-hero-title {
    font-size: 64px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-hero-title strong {
    font-weight: 700;
}

.page-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-story-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content .section-title {
    font-size: 48px;
    margin-bottom: 30px;
}

.about-story-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray);
}

.about-story-text p {
    margin-bottom: 20px;
}

.about-story-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-story-image img {
    width: 100%;
    height: auto;
}

/* Stats Section - Glassmorphism Cards */
.about-stats-section {
    padding: 80px 0;
    background-color: var(--color-cream);
    position: relative;
}

.about-stats-section.about-stats-glass {
    background: linear-gradient(135deg, #e8f5e3 0%, #f0f7ee 50%, #e3f0de 100%);
}

.about-stats-section::before {
    content: none;
}

.about-stats-section .section-container {
    position: relative;
    z-index: 1;
}

.about-stats-section .section-title {
    text-align: center;
    color: #2A5018;
    margin-bottom: 50px;
}

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

.stat-card-glass {
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(58, 112, 40, 0.08);
}

.stat-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green), var(--color-green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card-glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(58, 112, 40, 0.15);
    background: rgba(255, 255, 255, 0.85);
}

.stat-card-glass:hover::before {
    transform: scaleX(1);
}

.stat-card-icon {
    width: 72px;
    height: 72px;
    background: var(--color-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(58, 112, 40, 0.25);
}

.stat-card-glass:hover .stat-card-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(58, 112, 40, 0.35);
}

.stat-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.stat-card-icon dotlottie-player {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
}

.stat-card-glass .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-green-dark);
    margin-bottom: 6px;
    line-height: 1.1;
}

.stat-card-glass .stat-label {
    font-size: 16px;
    color: var(--color-gray);
    font-weight: 500;
    opacity: 1;
}

/* Legacy stat-item fallback */
.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Team Section */
.about-team-section {
    padding: 80px 0;
    background-color: var(--color-cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    height: 250px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 15px 15px 5px;
}

.team-member-role {
    font-size: 16px;
    color: var(--color-gray);
    text-align: center;
    padding: 0 15px 15px;
}

/* Values Section */
.about-values-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 30px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-green-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-green);
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    color: var(--color-gray);
    line-height: 1.6;
}

/* Page CTA Section */
.page-cta-section {
    padding: 100px 0;
    background-color: var(--color-cream);
    text-align: center;
}

.page-cta-section.gradient-bg {
    background: linear-gradient(135deg, #3A7028 0%, #4A8535 50%, #5A9A42 100%);
    position: relative;
    overflow: hidden;
}

.page-cta-section.gradient-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: gradient-pulse 15s ease-in-out infinite;
}

@keyframes gradient-pulse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10%, -10%) scale(1.1); }
}

.page-cta-section.gradient-bg .page-cta-content h2,
.page-cta-section.gradient-bg .page-cta-content > h2 {
    color: var(--color-white);
}

.page-cta-section.gradient-bg .page-cta-content p,
.page-cta-section.gradient-bg .page-cta-content > p {
    color: rgba(255, 255, 255, 0.9);
}

.page-cta-section.gradient-bg .btn-primary {
    background-color: var(--color-white);
    color: var(--color-green);
}

.page-cta-section.gradient-bg .btn-primary:hover {
    background-color: var(--color-cream);
    color: var(--color-green-dark);
}

.page-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 15px;
}

.page-cta-content p {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-green-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(58, 112, 40, 0.3);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* ===================================
   CONTACT PAGE — Modern
   =================================== */

/* Hero */
/* Contact hero now uses .page-hero.contact-hero — see PAGE HERO section */

/* Quick Action Cards */
.contact-actions-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.contact-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-action-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-action-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.contact-action-card:hover::before {
    transform: scaleX(1);
}

.contact-action-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-action-phone { background: #e8f5e9; color: #2e7d32; }
.contact-action-email { background: #e3f2fd; color: #1565c0; }
.contact-action-location { background: #fff3e0; color: #e65100; }

.contact-action-text {
    flex: 1;
    min-width: 0;
}

.contact-action-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray);
    margin-bottom: 4px;
}

.contact-action-text strong {
    font-size: 16px;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-action-arrow {
    color: #ccc;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-action-card:hover .contact-action-arrow {
    color: var(--color-green);
    transform: translateX(4px);
}

/* Main Contact Grid */
.contact-main-section {
    padding: 70px 0 80px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* Info Column */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card,
.contact-hours-card {
    background: #f8faf7;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e8ede6;
}

.contact-info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--color-green);
}

.contact-info-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
}

.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #e8ede6;
}

.contact-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-green);
}

.contact-detail-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray);
    margin-bottom: 2px;
}

.contact-detail-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    text-decoration: none;
}

a.contact-detail-value:hover {
    color: var(--color-green);
}

/* Working Hours */
.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-hours-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px dashed #e0e5de;
}

.contact-hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.hours-dots {
    flex: 1;
    border-bottom: 2px dotted #d0d5ce;
    min-width: 20px;
}

.hours-time {
    font-size: 16px;
    color: var(--color-green);
    font-weight: 600;
    white-space: nowrap;
}

.hours-closed .hours-time {
    color: #c0392b;
}

/* Trust Card */
.contact-trust-card {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(135deg, #3A7028, #2d5a1e);
    border-radius: 20px;
    padding: 24px 20px;
    color: #fff;
}

.contact-trust-item {
    text-align: center;
}

.contact-trust-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.contact-trust-label {
    font-size: 16px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contact-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-header p {
    color: var(--color-gray);
    font-size: 16px;
}

/* Messages */
.contact-msg {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.contact-msg svg { flex-shrink: 0; margin-top: 2px; }

.contact-msg strong { display: block; margin-bottom: 2px; }

.contact-msg p { font-size: 16px; margin: 0; }

.contact-msg-success {
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #c8e6c9;
}

.contact-msg-error {
    background: #fce4ec;
    color: #b71c1c;
    border: 1px solid #f8bbd0;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 16px;
}

.form-row-2 .form-group {
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--color-black);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ede6;
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-main);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafcf9;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 4px rgba(58, 112, 40, 0.08);
    background: #fff;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-green);
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn:hover {
    background: #2d5a1e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(58, 112, 40, 0.3);
}

/* Map Section */
.contact-map-section {
    position: relative;
    background: #f0f3f0;
}

.contact-map-header {
    padding: 40px 0 24px;
    text-align: center;
}

.contact-map-header h2 {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.contact-map-header p {
    color: var(--color-gray);
    font-size: 16px;
}

.contact-map-embed {
    height: 420px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.contact-map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-map-overlay-bar {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.contact-map-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.map-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
}

.map-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-green);
    text-decoration: none;
    transition: gap 0.2s;
}

.map-bar-link:hover {
    gap: 10px;
}

/* CTA Section */
.contact-cta-section {
    padding: 80px 0;
}

.contact-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, #f0f8ed, #e8f0e5);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid #d4e4cf;
}

.contact-cta-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-cta-content p {
    color: var(--color-gray);
    font-size: 16px;
    max-width: 500px;
}

.contact-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.contact-cta-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--color-green);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
}

.contact-cta-actions .btn-primary:hover {
    background: #2d5a1e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58,112,40,0.25);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: var(--color-green);
    border: 2px solid var(--color-green);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: var(--color-green);
    color: #fff;
    transform: translateY(-2px);
}

/* ===================================
   BLOG PAGE
   =================================== */

/* Blog Hero */
.blog-hero {
    position: relative;
    background: linear-gradient(135deg, #1a3a12 0%, #2d5a1e 50%, #1a4a2e 100%);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 20px 100px;
    border-radius: 0 0 80px 80px;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    border-radius: 0 0 80px 80px;
}

.blog-hero-inner {
    position: relative;
    z-index: 2;
}

.blog-hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog-hero-title {
    font-size: 52px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}

.blog-hero-title strong {
    font-weight: 700;
}

.blog-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Featured Post */
.blog-featured-section {
    position: relative;
    z-index: 3;
    padding: 0 0 0;
    margin-top: -50px;
    background: transparent;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.blog-featured-image {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-featured-card:hover .blog-featured-image img {
    transform: scale(1.04);
}

.blog-featured-content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.blog-featured-cat {
    display: inline-block;
    padding: 4px 14px;
    background: var(--color-green);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-featured-date {
    font-size: 16px;
    color: var(--color-gray);
}

.blog-featured-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.blog-featured-excerpt {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-green);
    transition: gap 0.3s ease;
}

.blog-featured-card:hover .blog-featured-link {
    gap: 14px;
}

/* Category Filter */
.blog-filter-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0;
}

.blog-filter-scroll {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 14px 0;
}

.blog-filter-scroll::-webkit-scrollbar {
    display: none;
}

.blog-filter-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-gray);
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.blog-filter-btn:hover {
    color: var(--color-green);
    background: var(--color-green-bg);
}

.blog-filter-active {
    color: #fff;
    background: var(--color-green);
}

.blog-filter-active:hover {
    color: #fff;
    background: var(--color-green-dark);
}

.blog-filter-count {
    font-size: 16px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.06);
    padding: 2px 8px;
    border-radius: 50px;
}

.blog-filter-active .blog-filter-count {
    background: rgba(255, 255, 255, 0.25);
}

/* Posts Grid */
.blog-posts-section {
    padding: 60px 0;
    background: var(--color-cream);
}

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

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--color-green-bg);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    opacity: 0.3;
}

.blog-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--color-green);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 22px 24px;
}

.blog-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: var(--color-gray);
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-reading {
    font-weight: 500;
    color: var(--color-green);
}

/* Blog Pagination */
.blog-pagination {
    text-align: center;
    margin-top: 48px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 4px;
    border-radius: 12px;
    background: #fff;
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.blog-pagination .page-numbers li .current,
.blog-pagination .page-numbers li a:hover {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}

.blog-pagination .page-numbers svg {
    width: 18px;
    height: 18px;
}

/* Blog Empty */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--color-gray);
}

.blog-empty svg {
    margin-bottom: 16px;
    color: var(--color-green);
    opacity: 0.3;
}

/* Blog CTA */
.blog-cta-section {
    padding: 0 0 80px;
    background: var(--color-cream);
}

.blog-cta-card {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    border-radius: 24px;
    padding: 56px;
    text-align: center;
}

.blog-cta-card h2 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.blog-cta-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.blog-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-cta-btn-primary {
    background: #fff;
    color: var(--color-green);
}

.blog-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.blog-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.blog-cta-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ===================================
   RESPONSIVE - All Pages
   =================================== */
@media (max-width: 992px) {
    .page-hero-title {
        font-size: 48px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .contact-actions-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 30px;
    }

    .contact-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .contact-cta-actions {
        justify-content: center;
    }

    .about-story-image {
        order: -1;
    }

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

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

    .values-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .page-hero-container,
    .section-container {
        padding: 0 24px;
    }

    /* === Reduce border-radius on all heroes for mobile === */
    .page-hero,
    .page-hero::before {
        border-radius: 0 0 40px 40px;
    }

    .ss-hero,
    .ss-hero-overlay {
        border-radius: 0 0 40px 40px;
    }

    .sp-hero,
    .sp-hero-overlay {
        border-radius: 0 0 40px 40px;
    }

    .prod-hero {
        border-radius: 0 0 40px 40px;
    }

    .blog-hero,
    .blog-hero::before {
        border-radius: 0 0 40px 40px;
    }

    .blog-hero {
        padding: 100px 20px 70px;
    }

    .blog-featured-section {
        margin-top: -30px;
    }

    .bp-hero,
    .bp-hero-overlay {
        border-radius: 0 0 40px 40px;
    }

    .projects-hero {
        border-radius: 0 0 40px 40px;
    }

    /* === Fix hero paddings for fixed header on mobile === */
    .prod-hero-inner {
        padding: 90px 20px 50px;
    }

    .prod-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .prod-hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .bp-hero-inner {
        padding: 80px 20px 36px;
    }

    .page-hero {
        min-height: 280px;
    }

    .page-hero-title {
        font-size: 36px;
    }

    .about-story-content .section-title {
        font-size: 32px;
    }

    /* Contact page mobile */
    .contact-actions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-map-embed {
        height: 300px;
    }

    .contact-map-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-cta-card {
        padding: 30px 24px;
    }

    .contact-cta-content h2 {
        font-size: 24px;
    }

    .contact-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .contact-cta-actions .btn-primary,
    .btn-outline-white {
        justify-content: center;
        width: 100%;
    }

    .contact-trust-card {
        padding: 20px 12px;
    }

    .contact-trust-number {
        font-size: 22px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .page-cta-content h2 {
        font-size: 32px;
    }
}

/* ===================================
   PRODUCTS PAGE
   =================================== */

/* Hero */
.prod-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3a12 0%, #2d5a1e 50%, #1a4a2e 100%);
    background-size: cover;
    background-position: center;
    border-radius: 0 0 80px 80px;
}

.prod-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(58, 112, 40, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(30, 144, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.prod-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 20px 80px;
}

.prod-hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.prod-hero-title {
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}

.prod-hero-title strong {
    font-weight: 700;
}

.prod-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.prod-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.prod-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.prod-hero-btn-primary {
    background: #fff;
    color: var(--color-green);
}

.prod-hero-btn-primary:hover {
    background: var(--color-green-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.prod-hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.prod-hero-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Categories Section */
.prod-categories-section {
    padding: 100px 0;
    background: var(--color-cream);
}

.prod-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.prod-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.prod-section-desc {
    font-size: 17px;
    color: var(--color-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.prod-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    transition-delay: var(--delay, 0s);
    position: relative;
    overflow: hidden;
}

.prod-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--card-accent, var(--color-green)), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.prod-card:hover::before {
    opacity: 0.06;
}

.prod-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--card-accent, var(--color-green)), color-mix(in srgb, var(--card-accent, var(--color-green)) 70%, #000));
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

.prod-card-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.prod-card-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.prod-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.prod-card:hover .prod-card-title {
    color: var(--card-accent, var(--color-green));
}

.prod-card-desc {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

.prod-card-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-gray);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.prod-card:hover .prod-card-arrow {
    background: var(--card-accent, var(--color-green));
    color: #fff;
    transform: translateX(4px);
}

/* Why Section */
.prod-why-section {
    padding: 100px 0;
    background: #fff;
}

.prod-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.prod-why-card {
    padding: 36px 28px;
    border-radius: 16px;
    background: var(--color-cream);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.prod-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.prod-why-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-green);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.prod-why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.prod-why-card p {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.65;
    margin: 0;
}

/* CTA Section */
.prod-cta-section {
    padding: 80px 0 100px;
    background: var(--color-cream);
}

.prod-cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    border-radius: 24px;
    padding: 64px;
    overflow: hidden;
    text-align: center;
}

.prod-cta-content {
    position: relative;
    z-index: 2;
}

.prod-cta-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.prod-cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.prod-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.prod-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.prod-cta-btn-primary {
    background: #fff;
    color: var(--color-green);
}

.prod-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.prod-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.prod-cta-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.prod-cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.prod-cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prod-cta-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
}

.prod-cta-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -30px;
}

.prod-cta-circle:nth-child(3) {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 15%;
    background: rgba(255, 255, 255, 0.03);
}

/* Default Page */
.default-page-hero {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    min-height: 300px;
}

.page-content-section {
    padding: 60px 0;
    background-color: var(--color-white);
}

.page-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-content-wrapper .entry-content {
    font-size: 18px;
    line-height: 1.8;
}

.page-content-wrapper .entry-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-green);
}

.page-content-wrapper .entry-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content-wrapper .entry-content p {
    margin-bottom: 20px;
}

.page-content-wrapper .entry-content ul,
.page-content-wrapper .entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content-wrapper .entry-content li {
    margin-bottom: 10px;
}

.page-links {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Products Responsive */
@media (max-width: 992px) {
    .prod-hero-title {
        font-size: 36px;
    }

    .prod-grid {
        grid-template-columns: 1fr;
    }

    .prod-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prod-cta-card {
        padding: 48px 32px;
    }

    .prod-cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .prod-hero {
        min-height: 400px;
    }

    .prod-hero-title {
        font-size: 28px;
    }

    .prod-hero-subtitle {
        font-size: 16px;
    }

    .prod-categories-section,
    .prod-why-section {
        padding: 60px 0;
    }

    .prod-section-title {
        font-size: 28px;
    }

    .prod-why-grid {
        grid-template-columns: 1fr;
    }

    .prod-card {
        padding: 20px 24px;
    }

    .prod-cta-card {
        padding: 40px 24px;
    }

    .prod-cta-content h2 {
        font-size: 24px;
    }
}

/* ===================================
   VISUAL ENHANCEMENTS
   =================================== */

/* Wave decoration for sections */
.wave-separator {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    line-height: 0;
}

.wave-separator svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave-separator.top {
    transform: rotate(180deg);
}

/* Floating particles/leaves background */
.floating-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-leaves::before,
.floating-leaves::after {
    content: '';
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A7028'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
    background-size: 30px 30px;
    opacity: 0.1;
}

.floating-leaves::before {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation: float 20s infinite linear;
}

.floating-leaves::after {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 15%;
    animation: float 15s infinite linear reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass morphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

/* Blob shapes */
.blob-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--color-green);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--color-green-light);
    bottom: -50px;
    left: -50px;
}

/* Animated border */
.animated-border {
    position: relative;
    overflow: hidden;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-green), transparent);
    animation: borderMove 3s infinite;
}

@keyframes borderMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hover lift effect with shadow */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(58, 112, 40, 0.2);
}

/* Glowing effect on hover */
.glow-hover {
    transition: all 0.3s ease;
}

.glow-hover:hover {
    box-shadow: 0 0 20px rgba(58, 112, 40, 0.4);
}

/* Image reveal on scroll */
.image-reveal {
    overflow: hidden;
}

.image-reveal img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-reveal.animated img {
    transform: scale(1);
}

/* Split text animation */
.split-text .char {
    display: inline-block;
    transition: transform 0.3s ease;
}

.split-text:hover .char {
    transform: translateY(-5px) rotate(5deg);
    color: var(--color-green);
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Marquee for announcements */
.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Number highlight */
.number-highlight {
    font-size: 4em;
    font-weight: 700;
    color: var(--color-green);
    line-height: 1;
}

/* Accent underline */
.accent-underline {
    position: relative;
    display: inline-block;
}

.accent-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.accent-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Card hover effects */
.card-hover-effect {
    position: relative;
    overflow: hidden;
}

.card-hover-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(58, 112, 40, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.card-hover-effect:hover::before {
    width: 300px;
    height: 300px;
}

/* Background pattern */
.pattern-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233A7028' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Page hero additional styles */
.page-hero.contact-hero {
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1920&q=80');
}



.page-hero.default-page-hero {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
}

/* Gradient overlays for hero sections */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Enhanced stats section - glassmorphism */
.about-stats-glass {
    position: relative;
    overflow: hidden;
}

/* Enhanced team member */
.team-member {
    position: relative;
    overflow: hidden;
}

.team-member::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green), var(--color-green-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover::after {
    transform: scaleX(1);
}

/* Hover glow for buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Icon animations on scroll */
.icon-spin {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bounce animation for CTAs */
@keyframes bounceArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.bounce-arrow {
    animation: bounceArrow 1s ease infinite;
}

/* Fade in up for page loads */
@keyframes fadeInUpPage {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-content-wrapper > * {
    animation: fadeInUpPage 0.6s ease forwards;
}

.page-content-wrapper > *:nth-child(1) { animation-delay: 0.1s; }
.page-content-wrapper > *:nth-child(2) { animation-delay: 0.2s; }
.page-content-wrapper > *:nth-child(3) { animation-delay: 0.3s; }
.page-content-wrapper > *:nth-child(4) { animation-delay: 0.4s; }

/* Hover scale for images */
.hover-zoom img {
    transition: transform 0.5s ease;
}

.hover-zoom:hover img {
    transform: scale(1.05);
}

/* Staggered grid animation */
.stagger-grid > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stagger-grid > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-grid > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-grid > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-grid > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-grid > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-grid > *:nth-child(6) { animation-delay: 0.6s; }

.team-grid,
.values-grid {
    animation-delay: 0.1s !important;
}

/* Text highlight animation */
.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: rgba(58, 112, 40, 0.2);
    z-index: -1;
    transition: height 0.3s ease;
}

.text-highlight:hover::after {
    height: 100%;
}

/* Floating badge */
.floating-badge {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

/* Progress bar animation */
.progress-bar-animated {
    width: 0;
    animation: progressFill 1.5s ease forwards;
}

@keyframes progressFill {
    to { width: 100%; }
}

/* Magnetic effect extended */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Pulse ring animation */
.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-green);
    transform: translate(-50%, -50%);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Glitch effect on hover (optional) */
.glitch-hover {
    position: relative;
}

.glitch-hover:hover {
    animation: glitch 0.3s ease;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* ==========================================
   SINGLE POST STYLES (bp-)
   ========================================== */

/* Hero */
.bp-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: #1a3a12;
    border-radius: 0 0 80px 80px;
    overflow: hidden;
}

.bp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    border-radius: 0 0 80px 80px;
    z-index: 1;
}

.bp-hero-inner {
    position: relative;
    z-index: 2;
    padding: 60px 20px 48px;
    width: 100%;
}

.bp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.bp-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.bp-breadcrumb a:hover {
    color: #fff;
}

.bp-breadcrumb-sep {
    color: rgba(255,255,255,0.4);
    font-size: 16px;
}

.bp-hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.bp-hero-cat {
    padding: 4px 14px;
    background: var(--color-green);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bp-hero-date,
.bp-hero-reading {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.75);
    font-size: 16px;
}

.bp-hero-title {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    max-width: 800px;
}

.bp-hero-title strong {
    font-weight: 700;
}

/* Content Layout */
.bp-content-area {
    padding: 60px 0 0;
    background: var(--color-cream);
}

.bp-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

/* Article */
.bp-article {
    position: relative;
}

.bp-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--color-green);
    z-index: 9999;
    width: 0;
    transition: width 0.1s linear;
}

.bp-article-body {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    font-size: 17px;
    line-height: 1.85;
    color: #333;
    border: 1px solid rgba(0,0,0,0.04);
}

.bp-article-body h2 {
    font-size: 28px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 14px;
    color: var(--color-dark);
}

.bp-article-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.bp-article-body p {
    margin-bottom: 18px;
}

.bp-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.bp-article-body ul,
.bp-article-body ol {
    margin: 0 0 20px 24px;
    line-height: 1.8;
}

.bp-article-body li {
    margin-bottom: 6px;
}

.bp-article-body blockquote {
    margin: 28px 0;
    padding: 20px 28px;
    border-left: 4px solid var(--color-green);
    background: var(--color-green-bg);
    border-radius: 0 12px 12px 0;
    font-style: normal;
    color: #555;
}

.bp-article-body a {
    color: var(--color-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bp-page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-weight: 600;
}

/* Tags */
.bp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.bp-tag {
    padding: 5px 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--color-gray);
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.bp-tag:hover {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}

/* Share */
.bp-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.bp-share-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
}

.bp-share-btns {
    display: flex;
    gap: 8px;
}

.bp-share-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--color-gray);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.bp-share-btn:hover,
.bp-share-btn.copied {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}

.bp-share-fb:hover { background: #1877F2; border-color: #1877F2; }
.bp-share-tw:hover { background: #000; border-color: #000; }

/* Author Card */
.bp-author-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
}

.bp-author-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.bp-author-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-green);
    margin-bottom: 2px;
}

.bp-author-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.bp-author-bio {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* Post Navigation */
.bp-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.bp-nav-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.bp-nav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--color-green);
}

.bp-nav-card svg {
    flex-shrink: 0;
    color: var(--color-green);
}

.bp-nav-next {
    text-align: right;
    justify-content: flex-end;
}

.bp-nav-label {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
    margin-bottom: 2px;
}

.bp-nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
}

/* Sidebar */
.bp-sidebar {
    min-width: 0;
}

.bp-sidebar-sticky {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bp-widget {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.04);
}

.bp-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-green-bg);
}

/* TOC */
.bp-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-toc-item a {
    display: block;
    padding: 6px 0;
    font-size: 16px;
    color: var(--color-gray);
    text-decoration: none;
    border-left: 2px solid transparent;
    padding-left: 12px;
    transition: all 0.2s ease;
}

.bp-toc-item a:hover {
    color: var(--color-green);
    border-left-color: var(--color-green);
}

.bp-toc-3 a { padding-left: 24px; font-size: 16px; }

/* CTA Widget */
.bp-widget-cta {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    color: #fff;
}

.bp-widget-cta .bp-widget-title {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.2);
}

.bp-widget-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bp-widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    color: var(--color-green);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bp-widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Recent Posts Widget */
.bp-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bp-recent-list li + li {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.bp-recent-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.bp-recent-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
}

.bp-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-recent-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.bp-recent-list a:hover .bp-recent-title {
    color: var(--color-green);
}

/* Related Posts */
.bp-related-section {
    padding: 80px 0;
    background: #fff;
}

.bp-related-title {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 40px;
}

.bp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bp-related-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-cream);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

.bp-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.bp-related-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.bp-related-image {
    height: 200px;
    overflow: hidden;
}

.bp-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bp-related-card:hover .bp-related-image img {
    transform: scale(1.06);
}

.bp-related-body {
    padding: 22px 24px;
}

.bp-related-cat {
    display: inline-block;
    padding: 3px 10px;
    background: var(--color-green);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bp-related-body h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.bp-related-date {
    font-size: 16px;
    color: var(--color-gray);
}

/* Blog/Single Post Responsive */
@media (max-width: 1024px) {
    .bp-layout {
        grid-template-columns: 1fr;
    }

    .bp-sidebar {
        display: none;
    }

    .bp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-image {
        min-height: 240px;
    }

    .blog-featured-content {
        padding: 32px;
    }

    .blog-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero-title {
        font-size: 32px;
    }

    .blog-featured-title {
        font-size: 22px;
    }

    .blog-cta-card {
        padding: 40px 24px;
    }

    .blog-cta-card h2 {
        font-size: 24px;
    }

    .bp-hero {
        min-height: 320px;
    }

    .bp-hero-title {
        font-size: 28px;
    }

    .bp-article-body {
        padding: 28px 20px;
    }

    .bp-article-body h2 {
        font-size: 24px;
    }

    .bp-post-nav {
        grid-template-columns: 1fr;
    }

    .bp-related-grid {
        grid-template-columns: 1fr;
    }

    .bp-author-card {
        flex-direction: column;
        text-align: center;
    }

    .bp-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================
   PAGE PROJECTS STYLES
   ========================================== */

.page-projects {
    background-color: var(--color-cream);
}

.projects-hero {
    background: linear-gradient(135deg, var(--color-green) 0%, #2d5a1f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.projects-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 200px;
    opacity: 0.5;
    z-index: 1;
}

.projects-hero .page-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.projects-hero .page-hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 400;
    margin-bottom: 20px;
}

.projects-hero .page-hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* Intro Section */
.projects-intro-section {
    padding: 80px 0;
}

.projects-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.projects-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-top: 30px;
}

/* Stats Section */
.projects-stats-section {
    padding: 60px 0;
    background-color: var(--color-white);
}

.projects-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--color-green-bg);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-green);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Project */
.featured-project-section {
    padding: 80px 0;
}

.featured-project-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.featured-project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58, 112, 40, 0.15);
}

.featured-project-image {
    position: relative;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
}

.featured-badge svg {
    width: 16px;
    height: 16px;
}

.featured-project-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.featured-project-meta {
    margin-bottom: 15px;
}

.featured-project-meta .project-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-green);
    font-size: 16px;
    font-weight: 600;
}

.featured-project-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-project-title a {
    color: #2A5018;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-project-title a:hover {
    color: var(--color-green);
}

.featured-project-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 30px;
}

/* Projects Grid */
.projects-grid-section {
    padding: 80px 0;
    background-color: var(--color-cream);
}

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

.project-page-card {
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(58, 112, 40, 0.2);
}

.project-page-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-page-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-page-card:hover .project-page-image img {
    transform: scale(1.1);
}

.project-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(58, 112, 40, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-page-card:hover .project-page-overlay {
    opacity: 1;
}

.view-project {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-page-content {
    padding: 25px;
}

.project-page-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2A5018;
}

.project-page-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--color-green);
}

.project-page-location svg {
    width: 14px;
    height: 14px;
}

/* Services CTA */
.projects-services-cta {
    padding: 80px 0;
}

.projects-cta-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, var(--color-green) 0%, #2d5a1f 100%);
    padding: 50px;
    border-radius: 30px;
    color: var(--color-white);
}

.projects-cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.projects-cta-icon svg {
    width: 40px;
    height: 40px;
}

.projects-cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.projects-cta-content p {
    font-size: 16px;
    opacity: 0.9;
}

.projects-cta-actions {
    display: flex;
    gap: 15px;
}

.projects-cta-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--color-white);
    color: var(--color-green);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.projects-cta-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.projects-cta-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.projects-cta-actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .projects-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-project-card {
        grid-template-columns: 1fr;
    }

    .featured-project-image img {
        min-height: 300px;
    }

    .projects-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .projects-cta-icon {
        margin: 0 auto;
    }

    .projects-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        padding: 90px 0 50px;
    }

    .projects-stats-grid {
        grid-template-columns: 1fr;
    }

    .projects-page-grid {
        grid-template-columns: 1fr;
    }

    .featured-project-content {
        padding: 30px;
    }

    .featured-project-title {
        font-size: 24px;
    }

    .projects-cta-actions {
        flex-direction: column;
    }

    .projects-cta-card {
        padding: 30px;
    }
}

/* ===================================
   RESPONSIVE TYPOGRAPHY FIX
   Comprehensive font scaling across
   all breakpoints to prevent overflow
   and improve readability.
   =================================== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 72px;
    }

    .section-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .cta-card-content h2 {
        font-size: 38px;
    }

    .page-hero-title {
        font-size: 52px;
    }

    .page-cta-content h2 {
        font-size: 38px;
    }

    .about-story-content .section-title {
        font-size: 42px;
    }

    .main-navigation ul {
        gap: 25px;
    }

    .main-navigation a {
        font-size: 16px;
    }

    .stat-number {
        font-size: 48px;
    }

    .single-project-title {
        font-size: 42px;
    }

    .single-service-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .page-hero-title {
        font-size: 40px;
    }

    .page-hero-subtitle {
        font-size: 17px;
    }

    .cta-card-content h2 {
        font-size: 32px;
    }

    .stat-number {
        font-size: 40px;
    }

    .page-cta-content h2 {
        font-size: 34px;
    }

    .single-service-title {
        font-size: 34px;
    }

    .single-project-title {
        font-size: 36px;
    }

    .projects-showcase-title {
        font-size: 30px;
    }

    .projects-showcase-images {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-slide-main {
        height: 320px;
    }

    .showcase-slide-next {
        height: 200px;
    }

    .showcase-info-slide {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .showcase-info-desc {
        grid-column: 1 / -1;
    }

    .featured-project-title {
        font-size: 26px;
    }

    .projects-cta-content h2 {
        font-size: 24px;
    }

    .related-services h2,
    .related-projects h2,
    .project-gallery h2 {
        font-size: 26px;
    }

    .related-posts-section .section-title,
    .section-title-center {
        font-size: 30px;
    }

    .bp-article-body h2,
    .single-service-content h2,
    .single-project-content h2 {
        font-size: 26px;
    }

    .bp-article-body h3,
    .single-service-content h3 {
        font-size: 20px;
    }

    .about-story-text,
    .bp-article-body,
    .single-service-content,
    .single-project-content {
        font-size: 16px;
    }

    .different-section,
    .services-section,
    .projects-section {
        padding: 70px 0;
    }

    .cta-section {
        margin-top: 70px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .hero-title {
        font-size: 38px;
    }

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

    .hero-subtitle {
        font-size: 16px;
        margin-top: 15px;
    }

    .page-hero-title {
        font-size: 30px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .cta-card-content h2 {
        font-size: 24px;
    }

    .cta-card-content p {
        font-size: 16px;
    }

    .cta-card {
        height: 350px;
    }

    .cta-arrow-circle {
        width: 70px;
        height: 70px;
    }

    .stat-number {
        font-size: 34px;
    }

    .stat-label {
        font-size: 16px;
    }

    .page-cta-content h2 {
        font-size: 28px;
    }

    .page-cta-content p {
        font-size: 16px;
    }

    .icon-item h3 {
        font-size: 16px;
    }

    .icon-item p {
        font-size: 16px;
    }

    .view-more-link {
        font-size: 16px;
        padding: 10px 18px;
    }

    .service-accordion-content h3 {
        font-size: 16px;
    }

    .service-accordion-content p {
        font-size: 16px;
    }

    .showcase-slide-main {
        height: 260px;
    }

    .showcase-slide-next {
        height: 180px;
    }

    .showcase-next-btn {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
    }

    .showcase-info-slide {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .showcase-info-desc {
        grid-column: auto;
    }

    .showcase-project-name {
        font-size: 16px;
    }

    .showcase-location {
        font-size: 16px;
    }

    .about-story-text {
        font-size: 16px;
    }

    .bp-article-body,
    .single-service-content,
    .single-project-content,
    .page-content-wrapper .entry-content {
        font-size: 16px;
    }

    .bp-article-body h2,
    .single-service-content h2,
    .single-project-content h2,
    .page-content-wrapper .entry-content h2 {
        font-size: 22px;
    }

    .bp-article-body h3,
    .single-service-content h3,
    .page-content-wrapper .entry-content h3 {
        font-size: 18px;
    }

    .related-services h2,
    .related-projects h2,
    .project-gallery h2 {
        font-size: 22px;
    }

    .section-title-center {
        font-size: 24px;
    }

    .projects-cta-content h2 {
        font-size: 22px;
    }

    .projects-cta-content p {
        font-size: 16px;
    }

    .featured-project-title {
        font-size: 22px;
    }

    .featured-project-excerpt {
        font-size: 16px;
    }

    .value-item h3 {
        font-size: 18px;
    }

    .blog-post-title {
        font-size: 18px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 16px;
    }

    .footer-logo .logo-text {
        font-size: 18px;
    }

    .different-section,
    .services-section,
    .projects-section {
        padding: 50px 0;
    }

    .cta-section {
        margin-top: 50px;
        padding: 60px 0 80px;
    }

    .cta-card-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .site-header {
        height: 64px;
        padding: 0 12px;
    }

    .site-logo .custom-logo img {
        width: 110px;
    }

    .hero-section {
        min-height: 450px;
        height: 45vh;
        width: calc(100% - 12px);
        border-radius: 0 0 20px 20px;
        background-size: cover;
    }

    /* === Reduce border-radius further on small phones === */
    .page-hero,
    .page-hero::before,
    .ss-hero,
    .ss-hero-overlay,
    .sp-hero,
    .sp-hero-overlay,
    .prod-hero,
    .blog-hero,
    .bp-hero,
    .bp-hero-overlay,
    .projects-hero {
        border-radius: 0 0 28px 28px;
    }

    /* === Reduce hero heights on small phones === */
    .page-hero {
        min-height: 240px;
    }

    .prod-hero {
        min-height: 340px;
    }

    .prod-hero-inner {
        padding: 80px 16px 40px;
    }

    .ss-hero {
        min-height: 320px;
    }

    .ss-hero-inner {
        padding-top: 80px;
        padding-bottom: 24px;
    }

    .ss-hero-title,
    .sp-hero-title {
        font-size: 26px;
    }

    .sp-hero {
        min-height: 320px;
    }

    .sp-hero-inner {
        padding-top: 80px;
        padding-bottom: 24px;
    }

    .bp-hero {
        min-height: 260px;
    }

    .bp-hero-inner {
        padding: 70px 16px 28px;
    }

    .bp-hero-title {
        font-size: 22px;
    }

    .blog-hero,
    .blog-hero::before {
        border-radius: 0 0 28px 28px;
    }

    .blog-hero {
        padding: 80px 16px 50px;
    }

    .blog-featured-section {
        margin-top: -20px;
    }

    .blog-hero-title {
        font-size: 26px;
    }

    .blog-hero-desc {
        font-size: 16px;
    }

    .prod-hero-title {
        font-size: 24px;
    }

    .prod-hero-subtitle {
        font-size: 16px;
    }

    .hero-section::before {
        border-radius: 0 0 20px 20px;
    }

    .hero-container {
        padding: 0 16px 30px;
    }

    .hero-title {
        font-size: 28px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .page-hero-title {
        font-size: 24px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .cta-card-content h2 {
        font-size: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .page-cta-content h2 {
        font-size: 22px;
    }

    .single-service-title,
    .single-project-title {
        font-size: 24px;
    }

    .archive-title {
        font-size: 26px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
    }

    .projects-cta-actions .btn-primary,
    .projects-cta-actions .btn-secondary {
        padding: 12px 24px;
        font-size: 16px;
    }

    .featured-project-content {
        padding: 20px;
    }

    .featured-project-title {
        font-size: 20px;
    }

    .cta-card {
        height: 280px;
        border-radius: 20px;
    }

    .cta-arrow-circle {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }

    .cta-arrow-circle svg {
        width: 22px;
        height: 22px;
    }

    .projects-cta-content h2 {
        font-size: 20px;
    }

    .contact-info h2 {
        font-size: 22px;
    }

    .different-section,
    .services-section,
    .projects-section {
        padding: 40px 0;
    }

    .different-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .different-icons {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .icon-wrapper svg {
        width: 20px;
        height: 20px;
    }

    .icon-wrapper dotlottie-player {
        width: 40px;
        height: 40px;
    }

    .icon-item h3 {
        font-size: 16px;
    }

    .icon-item p {
        font-size: 16px;
    }

    .showcase-slide-main {
        height: 220px;
    }

    .showcase-slide-next {
        height: 150px;
    }

    .showcase-next-btn {
        width: 56px;
        height: 56px;
    }

    .projects-showcase-title {
        font-size: 24px;
    }

    .main-navigation {
        padding: 90px 24px 24px;
    }

    .main-navigation a {
        font-size: 20px;
        padding: 14px 0;
    }

    .mobile-menu-cta {
        font-size: 16px;
        padding: 14px 20px 14px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 16px;
    }

    .footer-legal {
        font-size: 16px;
    }

    .cta-section {
        padding: 30px 0 40px;
    }

    .cta-card-content {
        padding: 20px;
    }
}

/* ===================================
   ABOUT PAGE - NEW SECTIONS
   =================================== */

/* Hero Badges */
.about-hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0;
    transform: translateY(20px);
    animation: badgeFadeIn 0.6s ease forwards;
}

.hero-badge:nth-child(1) { animation-delay: 0.8s; }
.hero-badge:nth-child(2) { animation-delay: 1.0s; }
.hero-badge:nth-child(3) { animation-delay: 1.2s; }

@keyframes badgeFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Work Process Section */
.work-process-section {
    padding: 80px 0;
    background-color: var(--color-cream);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 20px;
}

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.process-step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(58, 112, 40, 0.3);
}

.process-step-number span {
    color: var(--color-white);
    font-size: 22px;
    font-weight: 700;
}

.process-connector {
    position: absolute;
    top: 35px;
    left: calc(50% + 35px);
    width: calc(100% - 70px);
    height: 3px;
    background: var(--color-green-bg);
    z-index: 1;
    overflow: hidden;
}

.process-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-green);
    transition: width 1s ease;
}

.process-step.animated .process-connector::after {
    width: 100%;
}

.process-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #2A5018;
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Services Overview Section */
.about-services-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.service-category-card {
    background: var(--color-white);
    border: 1px solid rgba(58, 112, 40, 0.1);
    border-radius: 20px;
    padding: 40px 30px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(58, 112, 40, 0.12);
    border-color: rgba(58, 112, 40, 0.25);
}

.service-category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-category-card:hover .service-category-icon {
    background: var(--color-green);
}

.service-category-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-green);
    transition: color 0.3s ease;
}

.service-category-card:hover .service-category-icon svg {
    color: var(--color-white);
}

.service-category-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2A5018;
}

.service-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-green);
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--color-green-bg);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

.service-expand-btn:hover {
    background: var(--color-green);
    color: var(--color-white);
}

.service-expand-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-expand-btn[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.service-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.service-list.expanded {
    opacity: 1;
    margin-top: 20px;
}

.service-list ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 16px;
    color: var(--color-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-green);
    flex-shrink: 0;
}

/* Timeline Section */
.about-timeline-section {
    padding: 80px 0;
    background-color: var(--color-cream);
    overflow: hidden;
}

.timeline-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    padding: 20px 0 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-green) var(--color-green-bg);
}

.timeline-wrapper:active {
    cursor: grabbing;
}

.timeline-wrapper::-webkit-scrollbar {
    height: 6px;
}

.timeline-wrapper::-webkit-scrollbar-track {
    background: var(--color-green-bg);
    border-radius: 3px;
}

.timeline-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-green);
    border-radius: 3px;
}

.timeline-track {
    display: flex;
    gap: 0;
    position: relative;
    min-width: max-content;
    padding: 0 40px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--color-green-bg);
}

.timeline-item {
    flex: 0 0 280px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.timeline-year {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 15px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-white);
    border: 4px solid var(--color-green);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--color-green);
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(58, 112, 40, 0.2);
}

.timeline-content {
    background: var(--color-white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-black);
}

.timeline-content p {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.5;
}

/* Client Carousel Section */
.client-carousel-section {
    padding: 80px 0 60px;
    background-color: var(--color-white);
    overflow: hidden;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: carouselScroll 30s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-item {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

.carousel-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Client Name Cards (no logo) */
.carousel-item-name {
    background: linear-gradient(135deg, rgba(58, 112, 40, 0.06) 0%, rgba(58, 112, 40, 0.12) 100%);
    border: 1px solid rgba(58, 112, 40, 0.15);
    border-radius: 14px;
    padding: 14px 28px;
    width: auto;
    min-width: 200px;
    height: auto;
    min-height: 60px;
    opacity: 0.75;
    filter: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-item-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), var(--color-green-light, #5a9e42));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-item-name:hover {
    opacity: 1;
    filter: none;
    background: linear-gradient(135deg, rgba(58, 112, 40, 0.1) 0%, rgba(58, 112, 40, 0.18) 100%);
    border-color: rgba(58, 112, 40, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(58, 112, 40, 0.12);
}

.carousel-item-name:hover::before {
    opacity: 1;
}

.client-name-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

.section-subtitle-center {
    text-align: center;
    color: var(--color-text-light, #666);
    font-size: 16px;
    margin-top: -10px;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Photo Showcase Strip */
.about-photo-strip {
    padding: 0;
    overflow: hidden;
}

.photo-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.photo-strip-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-strip-item:hover img {
    transform: scale(1.08);
}

.photo-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.photo-strip-item:hover .photo-strip-overlay {
    opacity: 1;
}

.photo-strip-overlay span {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===================================
   ABOUT NEW SECTIONS - RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .process-connector {
        display: none;
    }

    .services-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-item {
        flex: 0 0 240px;
    }

    .about-hero-badges {
        gap: 8px;
    }

    .hero-badge {
        font-size: 16px;
        padding: 6px 16px;
    }

    .stat-card-glass {
        padding: 30px 20px;
    }

    .stat-card-glass .stat-number {
        font-size: 40px;
    }

    .stat-card-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .stat-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .stat-card-icon dotlottie-player {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 20px auto 0;
    }

    .process-step-number {
        width: 60px;
        height: 60px;
    }

    .process-step-number span {
        font-size: 18px;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 20px auto 0;
    }

    .service-category-card {
        padding: 30px 20px 20px;
    }

    .timeline-item {
        flex: 0 0 220px;
    }

    .timeline-year {
        font-size: 24px;
    }

    .carousel-track {
        gap: 30px;
    }

    .carousel-item {
        width: 120px;
        height: 60px;
    }

    .carousel-item-name {
        min-width: 160px;
        padding: 10px 20px;
        min-height: 50px;
    }

    .client-name-text {
        font-size: 16px;
    }

    .photo-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-subtitle-center {
        font-size: 16px;
    }

    .work-process-section,
    .about-services-section,
    .about-timeline-section,
    .client-carousel-section {
        padding: 60px 0;
    }

    .about-hero-badges {
        margin-top: 20px;
    }

    .hero-badge {
        font-size: 16px;
        padding: 5px 14px;
    }

    .stat-card-glass {
        padding: 25px 16px;
        border-radius: 20px;
    }

    .stat-card-glass .stat-number {
        font-size: 36px;
    }

    .stat-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        margin-bottom: 14px;
    }

    .stat-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .stat-card-icon dotlottie-player {
        width: 36px;
        height: 36px;
    }

    .stat-card-glass .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .process-step-title {
        font-size: 16px;
    }

    .process-step-desc {
        font-size: 16px;
    }

    .service-category-title {
        font-size: 18px;
    }

    .timeline-item {
        flex: 0 0 200px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 16px;
    }

    .stat-card-glass .stat-number {
        font-size: 28px;
    }

    .stat-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .stat-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .stat-card-icon dotlottie-player {
        width: 30px;
        height: 30px;
    }

    .carousel-item {
        width: 100px;
        height: 50px;
    }

    .carousel-item-name {
        min-width: 140px;
        padding: 8px 16px;
        min-height: 44px;
    }

    .client-name-text {
        font-size: 16px;
    }

    .carousel-track {
        gap: 20px;
    }

    .photo-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-strip-overlay span {
        font-size: 16px;
    }

    .about-hero-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================
   FAQ PAGE
   =================================== */
.faq-hero {
    background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1920&q=80');
}

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-green);
}

.faq-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-green);
    min-width: 28px;
}

.faq-q-text {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-question:hover .faq-q-text {
    color: var(--color-green);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-green-bg);
    color: var(--color-green);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--color-green);
    color: #fff;
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding: 0 0 24px 48px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray);
}

.faq-answer-inner ul {
    margin: 12px 0 0 0;
    padding-left: 20px;
    list-style: disc;
}

.faq-answer-inner ul li {
    margin-bottom: 6px;
}

.faq-answer-inner strong {
    color: var(--color-black);
    font-weight: 600;
}

/* FAQ Page CTA */
.faq-section + .page-cta-section {
    margin-top: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        gap: 14px;
        padding: 20px 0;
    }

    .faq-q-text {
        font-size: 16px;
    }

    .faq-answer-inner {
        padding-left: 42px;
        font-size: 15px;
    }
}
