:root {
    --bg-color: #ffffff; /* clean white page background */
    --text-dark: #1e352f;
    --text-light: #ffffff;
    --primary-lime: #a2b72f; /* yellowish green */
    --primary-lime-hover: #8e9e2a;
    --dark-green: #113c27;
    --dark-green-hover: #0c2a1c;
    --font-main: 'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-dark);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #eef0ea;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: -0.5px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark-green);
    cursor: pointer;
    padding: 5px;
    z-index: 100;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    margin-left: 40px;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    background-color: #f0f0f0; /* slightly darker than body */
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-lime {
    background-color: var(--primary-lime);
    color: var(--dark-green);
}

.btn-lime:hover {
    background-color: var(--primary-lime-hover);
}

.btn-dark {
    background-color: var(--dark-green);
    color: var(--text-light);
}

.btn-dark:hover {
    background-color: var(--dark-green-hover);
}

.btn-dark-transparent {
    background-color: rgba(17, 60, 39, 0.85); /* Dark green with some transparency */
    color: var(--text-light);
}

.btn-dark-transparent:hover {
    background-color: var(--dark-green);
}


/* HERO SECTION (GSAP SCROLLTRIGGER PIN/SCRUB FRAME ANIMATION) */
.hero-scroll-section {
    position: relative;
    width: 100%;
    height: calc(100vh + 2600px);
    background-color: #0b1a13;
}

.hero-pin-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b1a13;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-canvas-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 35% 50%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, transparent 25%, transparent 70%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 720px;
    will-change: transform, opacity;
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

.hero-content-end {
    opacity: 0;
    pointer-events: none;
}

.hero-transform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(162, 183, 47, 0.22);
    border: 1px solid var(--primary-lime);
    color: var(--primary-lime);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    font-size: 76px;
    line-height: 1.1;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-hook-copy {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-supporting-copy {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-subline-lead {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-subline-tag {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-lime);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content .highlight {
    color: var(--primary-lime);
    position: relative;
    display: inline-block;
}

/* Custom brush underline */
.underline {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 30px;
    z-index: -1;
}

.underline path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw 1.2s ease-out forwards;
}

.underline path:nth-child(2) {
    animation-delay: 0.3s; /* slight delay for second brush stroke */
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator svg {
    animation: bounceDown 1.8s ease-in-out infinite;
    color: var(--primary-lime);
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(7px); }
}

.hero-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(17, 60, 39, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(162, 183, 47, 0.35);
    padding: 14px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hero-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-loader-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(162, 183, 47, 0.25);
    border-top-color: var(--primary-lime);
    border-radius: 50%;
    animation: heroSpin 0.8s linear infinite;
}

@keyframes heroSpin {
    to { transform: rotate(360deg); }
}

/* RATING BADGE */
.customer-rating {
    position: absolute;
    bottom: 60px;
    right: 80px;
    z-index: 5;
}

.rating-badge {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 10px 25px 10px 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-flower {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.rating-flower svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.rating-score {
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: var(--dark-green);
    font-size: 16px;
}

.rating-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-green);
}

/* FEATURES BAR */
.features-bar {
    display: flex;
    justify-content: space-around;
    padding: 40px 60px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 20px; /* Increased font size */
}

@keyframes revolve {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature svg {
    animation: revolve 6s linear infinite;
    width: 28px;
    height: 28px;
}

/* ABOUT SECTION */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 50px;
    padding: 100px 60px;
    background-color: var(--bg-color);
}

.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-left h2 {
    font-size: 48px;
    line-height: 1.1;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 60px;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.about-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arch-image-container {
    width: 100%;
    height: 400px;
    border-radius: 200px 200px 0 0; /* Arch shape */
    overflow: hidden;
}

.arch-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-action-card {
    background-color: var(--primary-lime);
    width: 100%;
    padding: 30px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-top: -1px; /* seamless connection to the arch */
}

.btn-grey {
    background-color: rgba(255, 255, 255, 0.4);
    color: var(--dark-green);
    font-weight: 700;
    padding: 15px 30px;
    width: 100%;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-grey:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.about-list li:last-child {
    border-bottom: none;
}

/* SERVICES SECTION */
.services-section {
    padding: 100px 60px;
    background-color: var(--bg-color);
    text-align: center;
}

.services-header {
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    clip-path: none !important;
    text-align: left;
    transition: none !important;
    color: inherit;
}

.service-card:hover {
    background: transparent !important;
    color: inherit !important;
    transform: none !important;
    box-shadow: none !important;
}

.service-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f0f2ed;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    border: none;
    box-shadow: none;
}

.service-info {
    padding-top: 18px;
    text-align: left;
}

.service-info h3 {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: left;
}

.service-info p {
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.78;
    font-weight: 400;
    margin: 0;
    text-align: left;
}

.btn-services {
    background-color: var(--primary-lime);
    color: var(--text-dark);
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 35px;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-services:hover {
    background-color: var(--dark-green);
    color: var(--text-light);
}

/* WHY CHOOSE US SECTION */
.why-section {
    padding: 120px 40px;
    background-color: #f4f5f6; /* light grey to distinguish section */
    text-align: center;
    overflow: hidden;
}

.why-header {
    margin-bottom: 80px;
}

.why-header h2 {
    font-size: 46px;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 500;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.why-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 450px;
}

.why-left { text-align: right; }
.why-right { text-align: left; }

.why-item {
    position: relative;
    padding: 0 20px;
    z-index: 2;
}

.why-item h3 {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 8px;
    font-weight: 600;
}

.why-item p {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Connecting Lines */
.why-item::after {
    content: '';
    position: absolute;
    height: 1px;
    background-color: var(--primary-lime);
}

/* Left side lines */
.why-left .why-item::after { right: -60px; width: 60px; }
.why-left .why-item-1::after { top: 50%; transform: rotate(25deg); transform-origin: left center; }
.why-left .why-item-2::after { top: 50%; right: -50px; width: 50px; }
.why-left .why-item-3::after { top: 50%; transform: rotate(-25deg); transform-origin: left center; }

/* Right side lines */
.why-right .why-item::after { left: -60px; width: 60px; }
.why-right .why-item-4::after { top: 50%; transform: rotate(-25deg); transform-origin: right center; }
.why-right .why-item-5::after { top: 50%; left: -50px; width: 50px; }
.why-right .why-item-6::after { top: 50%; transform: rotate(25deg); transform-origin: right center; }

.why-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
}

.rotating-leaves-wrapper {
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: 1;
    will-change: transform;
}

.leaves-svg {
    width: 100%;
    height: 100%;
}

.center-image {
    position: relative;
    z-index: 2;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
}

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

/* PROJECTS CAROUSEL SECTION */
.projects-section {
    padding: 100px 0 100px 0;
    background-color: #f4f5f6; /* Same as why-section */
    overflow: hidden;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    padding: 0 60px;
}

.projects-title h2 {
    font-size: 46px;
    line-height: 1.2;
    color: var(--dark-green);
    font-weight: 500;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 60px 20px 60px; /* Left and right padding */
    scrollbar-width: none; /* hide scrollbar firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* hide scrollbar chrome/safari */
}

.project-card {
    flex: 0 0 450px; /* Fixed width for cards */
    scroll-snap-align: start;
}

.project-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.project-info h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.project-info .category {
    font-size: 12px;
    color: var(--dark-green);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carousel-btn {
    position: absolute;
    top: 150px; /* center of image height */
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(210, 214, 203, 0.85); /* grayish button */
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* GOOGLE REVIEWS SECTION */
.google-reviews-section {
    padding: 80px 60px;
    background-color: #f9fafb; /* light grey/off-white background */
}

.gr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.gr-header-left h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.gr-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.gr-stars {
    display: flex;
    gap: 2px;
}

.gr-stars svg {
    width: 20px;
    height: 20px;
}

.btn-google-review {
    background-color: #1a73e8; /* Google blue */
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s;
}

.btn-google-review:hover {
    background-color: #1557b0;
}

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

.gr-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.gr-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.gr-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    background-size: cover;
    background-position: center;
}

.gr-user-info {
    display: flex;
    flex-direction: column;
}

.gr-user-info strong {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.gr-user-info span {
    font-size: 13px;
    color: #6b7280;
}

.gr-google-icon {
    display: flex;
}

.gr-card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.gr-card-stars svg {
    width: 18px;
    height: 18px;
}

.gr-card-text {
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 20px;
    flex-grow: 1;
}

.gr-card-text strong {
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
}

.gr-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #e8f0fe;
    color: #1a73e8;
    padding: 10px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s;
}

.gr-card-btn:hover {
    background-color: #d2e3fc;
}

/* CONTACT SECTION */
.contact-section {
    position: relative;
    padding: 100px 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: flex-end;
    gap: 0;
}

.contact-left {
    flex: 1;
    background-color: var(--dark-green);
    color: white;
    padding: 60px 50px;
    border-radius: 20px;
    position: relative;
    z-index: 3;
}

.contact-left h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.5;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
}

.icon-asterisk {
    background-color: #99ab3a;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 14px;
    color: #99ab3a;
    margin-bottom: 2px;
}

.phone-number {
    font-size: 24px;
    font-weight: 600;
}

.contact-right {
    flex: 1.1;
    background-color: #99ab3a;
    border-radius: 20px;
    padding: 60px 50px;
    position: relative;
    z-index: 2;
    margin-left: -30px;
    margin-bottom: 20px;
}

.leaf-decoration {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
}

.form-desc {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 30px;
    line-height: 1.4;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 6px;
    padding: 15px;
    font-size: 14px;
    color: var(--dark-green);
    font-family: inherit;
    width: 100%;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: rgba(17, 60, 39, 0.6);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.7);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
}

.select-wrapper::after {
    content: "▼";
    font-size: 10px;
    color: var(--dark-green);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.btn-submit {
    background-color: var(--dark-green);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 10px;
    transition: opacity 0.2s;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* FOOTER SECTION */
.site-footer {
    background-color: var(--dark-green);
    color: white;
    padding: 80px 80px 40px;
    border-radius: 30px;
    margin: 20px;
}

.footer-top {
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    color: #99ab3a;
    margin-bottom: 60px;
}

.footer-top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-cta h2 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
}

.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-phone {
    display: flex;
    flex-direction: column;
}

.footer-phone-label {
    font-size: 12px;
    color: #99ab3a;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.footer-phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
}

.footer-info {
    display: flex;
    gap: 60px;
}

.footer-info-block h4 {
    font-size: 12px;
    color: #99ab3a;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-info-block p {
    font-size: 15px;
    color: #e5e5e5;
    margin: 0;
}

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

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #99ab3a;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #99ab3a;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: #a3a3a3;
}

.footer-copyright a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.btn-scroll-top {
    background: none;
    border: none;
    color: #99ab3a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   ANIMATIONS & MOTION
   ========================================================================== */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Sticky Navbar Motion */
.navbar {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.navbar.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Hero Entrance Animations */
.hero-content h1,
.hero-content .hero-buttons,
.hero-content p,
.hero-content .customer-rating {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-content .hero-buttons {
    transition-delay: 0.2s;
}

.customer-rating {
    transition-delay: 0.4s;
}

body.hero-loaded .hero-content h1,
body.hero-loaded .hero-content .hero-buttons,
body.hero-loaded .hero-content p,
body.hero-loaded .customer-rating {
    opacity: 1;
    transform: translateY(0);
}

/* Base Reveal Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
}

/* Button Micro-Interactions */
.btn {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn:active {
    transform: scale(0.98);
}

/* Card Hover Interactions */
.gr-card {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gr-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Project Image Hover */
.project-card {
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-image img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-card:hover .project-image img {
    transform: scale(1.05) !important;
}

/* Floating Decorative Elements */
@keyframes float-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.float-anim {
    animation: float-subtle 6s ease-in-out infinite;
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal-up, .reveal-fade, .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* ===================================================
   RESPONSIVE STYLES (MAIN SITE)
   =================================================== */

/* Prevent horizontal scroll globally and improve touch behavior */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Tactile mobile press effect for interactive elements */
.btn:active,
button:active {
    transform: scale(0.97);
}

@media (max-width: 1024px) {
    /* Navbar & Mobile Menu */
    .navbar {
        padding: 16px 30px;
        position: sticky;
        top: 0;
        background: #ffffff !important;
        z-index: 1000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 8px;
        background: rgba(17, 60, 39, 0.06);
        cursor: pointer;
        padding: 0;
        transition: background-color 0.2s;
    }
    .mobile-toggle:active {
        background: rgba(17, 60, 39, 0.12);
    }
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px 25px 35px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
        pointer-events: none;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }
    .navbar.mobile-menu-open .nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-links {
        flex-direction: column;
        margin-left: 0;
        gap: 8px;
        align-items: stretch;
        width: 100%;
    }
    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 13px 20px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        color: var(--dark-green);
        background: rgba(17, 60, 39, 0.03);
        transition: background-color 0.2s, color 0.2s;
    }
    .nav-links a.active,
    .nav-links a:hover,
    .nav-links a:active {
        background-color: var(--dark-green);
        color: #ffffff;
    }
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 20px;
    }
    .nav-actions .btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        font-size: 15px;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .why-center {
        order: -1;
    }
    .gr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-container {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-right {
        margin-left: 0;
        margin-top: -30px;
        margin-bottom: 0;
    }
    
    /* Section Paddings */
    .about-section, .services-section, .why-section, .projects-section, .contact-section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    /* Global Section Padding */
    .about-section, .services-section, .why-section, .projects-section, .contact-section, .google-reviews-section {
        padding: 55px 20px;
    }
    .hero-scroll-section {
        height: calc(100vh + 1800px);
    }
    .hero-scroll-indicator {
        bottom: 85px;
    }
    .hero-content {
        left: 18px;
        right: 18px;
        text-align: center;
    }
    .hero-content h1 {
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.18;
        margin-bottom: 20px;
    }
    .hero-hook-copy,
    .hero-subline-lead {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.45;
    }
    .hero-subline-tag {
        font-size: 13px;
        letter-spacing: 0.6px;
    }
    .underline {
        bottom: -8px;
        height: 18px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-buttons .btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        font-size: 15px;
    }
    .customer-rating {
        bottom: 20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: max-content;
        max-width: 90%;
    }
    .rating-badge {
        padding: 8px 18px 8px 10px;
        gap: 10px;
    }
    .rating-flower {
        width: 38px;
        height: 38px;
    }
    .rating-flower svg {
        width: 38px;
        height: 38px;
    }
    .rating-score {
        font-size: 14px;
    }
    .rating-text {
        font-size: 13px;
    }

    /* Features Bar */
    .features-bar {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
        padding: 22px 20px;
        background: #fbfcf9;
        border-radius: 16px;
        margin: 12px 15px 30px;
        border: 1px solid rgba(162, 183, 47, 0.22);
    }
    .feature {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        font-weight: 600;
    }
    .feature svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    /* About Section */
    .about-section {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .about-left h2 {
        font-size: clamp(28px, 7vw, 36px);
        margin-bottom: 30px;
    }
    .award-badge {
        justify-content: center;
        margin-top: 15px;
    }
    .arch-image-container {
        height: 280px;
        max-width: 300px;
        border-radius: 150px 150px 0 0;
        margin: 0 auto;
    }
    .about-action-card {
        max-width: 300px;
        margin: -1px auto 0;
        padding: 20px;
        justify-content: center;
    }
    .about-description {
        margin-bottom: 25px;
    }
    .about-list {
        display: flex;
        flex-direction: column;
        text-align: left;
        margin: 0 auto 30px;
        max-width: 360px;
        width: 100%;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Why Choose Us */
    .why-center {
        width: 100%;
        max-width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    .rotating-leaves-wrapper {
        width: 280px;
        height: 280px;
    }
    .center-image {
        width: 180px;
        height: 180px;
    }
    .why-col {
        height: auto;
        gap: 25px;
    }
    .why-left, .why-right {
        text-align: center;
    }
    .why-item {
        padding: 0;
    }
    .why-item::after {
        display: none !important;
    }

    /* Projects Carousel */
    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 0 20px;
        margin-bottom: 35px;
    }
    .projects-title h2 {
        font-size: clamp(28px, 7vw, 36px);
    }
    .carousel-track {
        padding: 0 20px 15px 20px;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .project-card {
        flex: 0 0 82vw;
        max-width: 320px;
        scroll-snap-align: center;
    }
    .project-image {
        height: 210px;
        border-radius: 16px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        top: 105px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }
    .prev-btn { left: 8px; }
    .next-btn { right: 8px; }

    /* Google Reviews */
    .gr-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 30px;
    }
    .btn-google-review {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
    }
    .gr-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .gr-card {
        padding: 20px;
    }

    /* Contact Section */
    .contact-left, .contact-right {
        padding: 35px 22px;
        border-radius: 20px;
    }
    .contact-left h2 {
        font-size: 28px;
    }
    .leaf-decoration {
        top: -45px;
    }
    .leaf-decoration svg {
        width: 85px;
        height: 50px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    /* Prevent iOS viewport zoom on form inputs */
    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        font-size: 16px !important;
        padding: 14px 16px;
        border-radius: 8px;
    }
    .btn-submit {
        width: 100%;
        min-height: 50px;
        font-size: 16px;
    }
    .contact-phone a {
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Footer */
    .site-footer {
        padding: 45px 20px 30px;
        margin: 0;
        border-radius: 0;
    }
    .footer-cta h2 {
        font-size: clamp(26px, 7vw, 32px);
    }
    .footer-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        width: 100%;
    }
    .footer-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .footer-info {
        flex-direction: column;
        gap: 25px;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Extra small devices (<= 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 14px 16px;
    }
    .logo {
        font-size: 20px;
    }
    .hero-content h1 {
        font-size: 29px;
    }
    .project-card {
        flex: 0 0 88vw;
    }
    .contact-left, .contact-right {
        padding: 28px 18px;
    }
}

/* ===================================================
   GARDERING PAGE STYLES
   =================================================== */

.gardening-hero-container {
    padding: 20px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.gardening-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 30px;
    align-items: stretch;
}

.gardening-hero-card {
    background-color: #b9baaF;
    border-radius: 28px;
    padding: 55px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gardening-corner-icon {
    position: absolute;
    top: 35px;
    right: 35px;
    opacity: 0.85;
}

.gardening-hero-card .service-badge {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.gardening-hero-card h1 {
    font-size: 58px;
    line-height: 1.1;
    color: var(--dark-green);
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.gardening-hero-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #243d32;
    margin-bottom: 35px;
    max-width: 520px;
}

.gardening-hero-card .btn-quote {
    align-self: flex-start;
    background-color: var(--dark-green);
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gardening-hero-card .btn-quote:hover {
    background-color: var(--dark-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 60, 39, 0.2);
}

.gardening-hero-img-wrap {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.gardening-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 420px;
}

/* TABS SECTION */
.gardening-tabs-section {
    padding: 80px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.gardening-tabs-header {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.tabs-header-left .section-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.tabs-header-left h2 {
    font-size: 46px;
    line-height: 1.15;
    color: var(--dark-green);
    font-weight: 600;
    letter-spacing: -0.8px;
}

.tabs-header-right p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4a5850;
}

/* TAB NAVIGATION */
.services-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #d2d5cc;
    margin-bottom: 50px;
    overflow-x: auto;
    scrollbar-width: none;
}

.services-tab-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 16px 28px 18px 0;
    margin-right: 35px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: #425247;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
}

.tab-btn .tab-flower-icon {
    width: 20px;
    height: 20px;
    color: #a2b72f;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    color: var(--dark-green);
}

.tab-btn:hover .tab-flower-icon {
    transform: rotate(45deg);
}

.tab-btn.active {
    color: var(--dark-green);
    font-weight: 600;
    border-bottom: 2px solid #5a665e;
}

/* TAB CONTENT PANELS */
.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    animation: fadeInTab 0.4s ease forwards;
}

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

.tab-info-col p {
    font-size: 16px;
    line-height: 1.7;
    color: #3b4a41;
    margin-bottom: 35px;
    max-width: 480px;
}

.tab-info-col .btn-quote {
    display: inline-block;
    background-color: var(--dark-green);
    color: var(--text-light);
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tab-info-col .btn-quote:hover {
    background-color: var(--dark-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 60, 39, 0.2);
}

.tab-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tab-feature-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #a2b72f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(162, 183, 47, 0.25);
}

.tab-feature-badge svg {
    width: 18px;
    height: 18px;
    color: var(--dark-green);
}

.tab-feature-text {
    font-size: 16px;
    color: #1e352f;
    font-weight: 500;
}


/* ===================================================
   MORE GARDENING SERVICES WE OFFER (IMAGE 1)
   =================================================== */
.more-services-wrapper {
    padding: 60px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.leaf-crown-container {
    display: flex;
    justify-content: center;
    margin-bottom: -5px;
    position: relative;
    z-index: 2;
}

.leaf-crown-container img {
    height: 65px;
    width: auto;
    display: block;
}

.more-services-card {
    background-color: #124424;
    border-radius: 32px;
    padding: 65px 60px 70px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(18, 68, 36, 0.15);
}

.more-services-corner-left {
    position: absolute;
    top: 32px;
    left: 32px;
    opacity: 0.85;
}

.more-services-corner-right {
    position: absolute;
    top: 32px;
    right: 32px;
    opacity: 0.85;
}

.more-services-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 40px;
}

.more-services-header .sub-badge {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a6b835;
    margin-bottom: 16px;
    display: inline-block;
}

.more-services-header h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 22px;
    letter-spacing: -0.6px;
}

.more-services-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
}

.more-services-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin-bottom: 45px;
}

.more-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.more-service-item {
    display: flex;
    flex-direction: column;
}

.more-service-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #a6b835;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.more-service-badge svg {
    width: 18px;
    height: 18px;
    color: #124424;
}

.more-service-item h3 {
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.more-service-item p {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

/* ===================================================
   EXPERIENCE THE DIFFERENCE (IMAGE 2)
   =================================================== */
.experience-section {
    padding: 60px 40px 90px;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 30px;
    align-items: stretch;
}

.experience-card {
    background-color: #f3f5ee;
    border-radius: 28px;
    padding: 55px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-corner-icon {
    position: absolute;
    top: 35px;
    right: 35px;
    opacity: 0.85;
}

.experience-card .section-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.experience-card h2 {
    font-size: 44px;
    line-height: 1.15;
    color: var(--dark-green);
    font-weight: 600;
    letter-spacing: -0.8px;
    margin-bottom: 24px;
}

.experience-card p.experience-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #38483f;
    margin-bottom: 35px;
    max-width: 500px;
}

.experience-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.experience-bullet-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.experience-bullet-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #a6b835;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(166, 184, 53, 0.25);
}

.experience-bullet-badge svg {
    width: 18px;
    height: 18px;
    color: var(--dark-green);
}

.experience-bullet-text {
    font-size: 15.5px;
    font-weight: 500;
    color: #1e352f;
}

.experience-img-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.experience-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 440px;
}

/* ===================================================
   FAQ & TESTIMONIAL SECTION (IMAGE 3)
   =================================================== */
.faq-section {
    padding: 60px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-left .section-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.faq-left h2 {
    font-size: 44px;
    line-height: 1.2;
    color: var(--dark-green);
    font-weight: 600;
    letter-spacing: -0.8px;
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e5df;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: #c4cabf;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-main);
    font-size: 16.5px;
    font-weight: 600;
    color: #1a3328;
    cursor: pointer;
}

.faq-icon {
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
    color: #707e74;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--dark-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    color: #4a5850;
    font-size: 15px;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

/* FAQ RIGHT TESTIMONIAL CARD */
.faq-testimonial-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gardening-hero-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.gardening-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.06);
}

.gardening-hero-img-wrap img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gardening-hero-img-wrap:hover img {
    transform: scale(1.04);
}

.experience-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.05);
}

.experience-img-wrap img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-img-wrap:hover img {
    transform: scale(1.04);
}

.more-service-item {
    padding: 12px;
    border-radius: 16px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.more-service-item:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-item {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    transform: translateX(4px);
    border-color: #a6b835;
}

.faq-testimonial-wrap img {
    width: 100%;
    max-width: 440px;
    height: auto;
    display: block;
    border-radius: 36px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.faq-testimonial-wrap:hover img {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE ADDITIONS FOR GARDERING PAGE */
@media (max-width: 1024px) {
    .gardening-hero-container {
        padding: 20px;
    }
    .gardening-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .tab-panel.active {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .more-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .faq-testimonial-wrap {
        margin-top: 10px;
        text-align: center;
    }
    .faq-testimonial-wrap img {
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gardening-hero-container {
        padding: 12px 14px;
    }
    .gardening-hero-card {
        padding: 32px 20px;
        border-radius: 20px;
    }
    .gardening-hero-card h1 {
        font-size: clamp(30px, 8vw, 40px);
        line-height: 1.15;
        margin-bottom: 18px;
    }
    .gardening-hero-card p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    .gardening-hero-card .btn-quote {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 15px;
    }
    .gardening-hero-img-wrap {
        border-radius: 20px;
        min-height: 250px;
        max-height: 360px;
    }
    .gardening-corner-icon {
        top: 20px;
        right: 20px;
        opacity: 0.6;
    }

    .gardening-tabs-section {
        padding: 45px 15px 55px;
    }
    .tabs-header-left h2 {
        font-size: clamp(26px, 7vw, 34px);
    }
    .services-tab-nav {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 10px;
        margin-bottom: 28px;
        padding-bottom: 8px;
        border-bottom: 2px solid #e2e5dc;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .services-tab-nav::-webkit-scrollbar {
        display: none;
    }
    .tab-btn {
        padding: 10px 18px;
        background: #f0f3eb;
        border-radius: 24px;
        border: 1px solid transparent;
        font-size: 14px;
        margin-right: 0;
        flex-shrink: 0;
    }
    .tab-btn.active {
        background: var(--dark-green);
        color: #ffffff;
    }
    .tab-btn.active .tab-flower-icon {
        color: var(--primary-lime);
    }
    .tab-panel.active {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tab-info-col p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    .tab-info-col .btn-quote {
        width: 100%;
        text-align: center;
        padding: 14px;
        margin-bottom: 25px;
    }
    .tab-features-list {
        gap: 15px;
    }

    .more-services-wrapper {
        padding: 30px 14px 50px;
    }
    .leaf-crown-container img {
        height: 42px;
        margin-bottom: -3px;
    }
    .more-services-card {
        padding: 35px 18px 40px;
        border-radius: 20px;
    }
    .more-services-corner-left,
    .more-services-corner-right {
        width: 45px;
        height: 45px;
        opacity: 0.35;
        top: 15px;
    }
    .more-services-corner-left { left: 15px; }
    .more-services-corner-right { right: 15px; }
    .more-services-header h2 {
        font-size: clamp(24px, 6.5vw, 32px);
        line-height: 1.25;
        margin-bottom: 15px;
    }
    .more-services-header p {
        font-size: 14.5px;
    }
    .more-services-divider {
        margin-bottom: 30px;
    }
    .more-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .experience-section {
        padding: 35px 14px 50px;
    }
    .experience-card {
        padding: 28px 18px;
        border-radius: 20px;
    }
    .experience-card h2 {
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.2;
    }
    .experience-img-wrap {
        border-radius: 20px;
        min-height: 250px;
        max-height: 350px;
    }

    .faq-section {
        padding: 35px 14px 55px;
    }
    .faq-left h2 {
        font-size: clamp(26px, 7vw, 32px);
        margin-bottom: 20px;
    }
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
        min-height: 52px;
    }
    .faq-testimonial-wrap {
        margin-top: 20px;
        text-align: center;
    }
    .faq-testimonial-wrap img {
        width: 100%;
        max-width: 320px;
        border-radius: 22px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .leaf-crown-container img {
        height: 34px;
    }
    .gardening-hero-card {
        padding: 25px 16px;
    }
    .more-services-card {
        padding: 28px 15px 32px;
    }
    .experience-card {
        padding: 24px 15px;
    }
}




