:root {
    --bg: #F8F4EF;
    --green: #2D5016;
    --green-light: #3D6B20;
    --green-dark: #1E3610;
    --accent: #C4622D;
    --accent-light: #D4724D;
    --text: #2C2416;
    --text-light: #6B5E4E;
    --cream: #F0EAE0;
    --white: #FFFFFF;
    --divider: rgba(45,80,22,0.12);
    --font-h: 'DM Serif Display', serif;
    --font-b: 'DM Sans', sans-serif;
    --ease: cubic-bezier(0.16,1,0.3,1);
    --ease-io: cubic-bezier(0.4,0,0.2,1);
    --sh-sm: 0 2px 12px rgba(45,80,22,0.10);
    --sh-md: 0 8px 32px rgba(45,80,22,0.13);
    --sh-lg: 0 20px 64px rgba(45,80,22,0.18);
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-full: 100px;
}

*, ::before, ::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
    background: none;
    font-family: inherit;
}

address {
    font-style: normal;
}

input, textarea, select {
    font-family: inherit;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-h);
    line-height: 1.18;
    color: var(--text);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
}

.lead {
    font-size: 1.15rem;
}

.container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 24px;
}

section {
    padding: 96px 0px;
}

.section-sm {
    padding: 56px 0px;
}

.section-tag {
    display: inline-block;
    background: rgba(45, 80, 22, 0.1);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--r-full);
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0px auto 3.5rem;
}

.section-header p {
    margin-top: 1rem;
    font-size: 1.08rem;
}

.bg-cream {
    background: var(--cream);
}

.bg-green {
    background: var(--green);
}

.bg-white {
    background: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--r-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn:hover {
    transform: scale(1.03);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

.btn-outline-green {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

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

.btn-lg {
    padding: 17px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.88rem;
}

.cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.site-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 999;
    transition: background 0.35s var(--ease),box-shadow 0.35s var(--ease);
}

.site-header.transparent {
    background: transparent;
}

.site-header.solid {
    background: var(--white);
    box-shadow: var(--sh-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-h);
    font-size: 1.05rem;
    color: var(--white);
    transition: color 0.3s;
}

.logo-sub {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

.site-header.solid .logo-name {
    color: var(--green);
}

.site-header.solid .logo-sub {
    color: var(--text-light);
}

.main-nav {
    flex: 1 1 0%;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-list > li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 11px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    border-radius: var(--r-sm);
    transition: 0.2s;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.site-header.solid .nav-link {
    color: var(--text-light);
}

.site-header.solid .nav-link:hover, .site-header.solid .nav-link.active {
    color: var(--green);
    background: rgba(45, 80, 22, 0.08);
}

.dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.2s;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    min-width: 190px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s var(--ease);
    border: 1px solid var(--divider);
}

.dropdown-menu li a {
    display: block;
    padding: 9px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--r-sm);
    transition: 0.18s;
}

.dropdown-menu li a:hover {
    background: rgba(45, 80, 22, 0.08);
    color: var(--green);
}

.nav-phone-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all 0.25s var(--ease);
    flex-shrink: 0;
}

.nav-phone-cta:hover {
    background: var(--accent-light);
    transform: scale(1.03);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.site-header.solid .hamburger span {
    background: var(--green);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0px;
    right: 0px;
    background: var(--white);
    box-shadow: var(--sh-lg);
    padding: 16px 24px 28px;
    z-index: 998;
    max-height: calc(-76px + 100vh);
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.35s var(--ease);
}

.mobile-nav.open {
    transform: translateY(0px);
    opacity: 1;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav ul li a {
    display: block;
    padding: 11px 16px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--r-sm);
    transition: 0.18s;
    font-size: 0.95rem;
}

.mobile-nav ul li a:hover {
    background: rgba(45, 80, 22, 0.08);
    color: var(--green);
}

.mobile-nav-sub {
    padding-left: 24px !important;
    font-size: 0.88rem !important;
    color: var(--text-light) !important;
}

.mobile-nav-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 14px 16px 4px;
    display: block;
}

.mobile-nav-cta {
    margin-top: 12px;
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--accent);
    border-radius: var(--r-full);
    color: var(--white) !important;
    font-weight: 600 !important;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--green-dark);
}

.hero-bg {
    position: absolute;
    inset: 0px;
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: 66% 5%;
    z-index: 0;
    will-change: transform;
    animation: 22s ease-in-out 0s infinite alternate none running heroBgDrift;
}

.hero-overlay, .hero-blob, .hero-blob-2 {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 76px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.hero-tag {
    display: inline-block;
    background: rgba(196, 98, 45, 0.94);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: var(--r-full);
    margin-bottom: 0px;
    animation: fadeInUp 0.6s var(--ease) 0.2s both;
    box-shadow: var(--sh-sm);
}

.hero-title-frame, .hero-sub-frame, .hero-cta-frame {
    background: rgba(30, 54, 16, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: rgba(12, 24, 6, 0.22) 0px 14px 34px;
}

.hero-title-frame {
    padding: 18px 22px 16px;
    border-radius: 28px;
    max-width: 720px;
}

.hero-sub-frame {
    padding: 16px 20px;
    border-radius: 24px;
    max-width: 640px;
}

.hero-cta-frame {
    padding: 16px 20px 18px;
    border-radius: 24px;
    display: grid;
    gap: 14px;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.05;
    margin-bottom: 0px;
    animation: fadeInUp 0.8s var(--ease) 0.4s both;
    text-shadow: rgba(0, 0, 0, 0.18) 0px 2px 20px;
}

.hero h1 .accent-word {
    color: rgb(232, 160, 112);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0px;
    max-width: 540px;
    animation: fadeInUp 0.6s var(--ease) 0.65s both;
    line-height: 1.65;
}

.hero-ctas {
    animation: fadeInUp 0.6s var(--ease) 0.85s both;
    margin: 0px;
}

.hero-cta-frame .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.48);
}

.hero-cta-frame .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-service-marquee {
    display: grid;
    gap: 10px;
    min-width: 0px;
}

.hero-service-marquee-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-service-marquee-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgb(232, 160, 112);
    box-shadow: rgba(232, 160, 112, 0.12) 0px 0px 0px 6px;
}

.hero-service-marquee-window {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0px, rgb(0, 0, 0) 7%, rgb(0, 0, 0) 93%, transparent 100%);
}

.hero-service-track {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    will-change: transform;
    transform: translate3d(0px, 0px, 0px);
    animation: heroMarqueeLoop var(--hero-marquee-duration,22s) linear infinite;
}

.hero-service-marquee-window:hover .hero-service-track {
    animation-play-state: paused;
}

.hero-service-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    white-space: nowrap;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 0.25s var(--ease),background 0.25s var(--ease),border-color 0.25s var(--ease);
}

.hero-service-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.24);
}

.hero-service-pill.is-clone {
    pointer-events: none;
}

.hero-service-pill-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 160, 112, 0.16);
    color: rgb(247, 211, 183);
    flex-shrink: 0;
}

.hero-service-pill-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentcolor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-badges {
    display: none;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-badge-icon {
    color: rgb(232, 160, 112);
}

.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0px;
    right: 0px;
    z-index: 3;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: auto;
    display: block;
}

.trust-bar {
    background: var(--white);
    padding: 22px 0px;
    border-bottom: 1px solid var(--divider);
    box-shadow: var(--sh-sm);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.trust-item-icon {
    color: var(--green);
    font-size: 1.1rem;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: var(--divider);
}

.stats-section {
    background: var(--green);
    padding: 72px 0px;
}

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

.stat-number {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-suffix {
    font-size: 0.7em;
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.04em;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: all 0.3s var(--ease);
    border: 1px solid var(--divider);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 3px;
    background: linear-gradient(90deg,var(--accent) 0%,#E8A070 45%,var(--green) 100%);
    transform: scaleX(0.32);
    transform-origin: left center;
    opacity: 0;
    transition: transform 0.35s var(--ease),opacity 0.35s var(--ease);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--green);
}

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

.service-card-img-ph {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg,var(--green-dark) 0%,var(--green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.7s var(--ease),filter 0.35s var(--ease);
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
    filter: saturate(1.05);
}

.service-card-body {
    padding: 24px;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
}

.service-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: transform 0.3s var(--ease),background 0.3s var(--ease),color 0.3s var(--ease);
}

.service-card:hover .service-card-icon {
    transform: translateY(-3px) rotate(-4deg);
    background: rgba(45, 80, 22, 0.16);
    color: var(--green);
}

.service-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text);
}

.service-card-body p {
    font-size: 0.875rem;
    color: var(--text-light);
    flex: 1 1 0%;
    margin-bottom: 16px;
}

.service-card-link {
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
    margin-top: auto;
}

.service-card-link:hover {
    gap: 8px;
}

.page-hero {
    background: linear-gradient(135deg,var(--green-dark) 0%,var(--green) 100%);
    padding: 148px 0px 88px;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.85);
}

.page-hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: 14s ease-in-out 0s infinite normal none running morphBlob;
}

.page-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0px;
    right: 0px;
    z-index: 3;
    line-height: 0;
}

.page-hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

.page-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.page-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumbs a:hover {
    color: var(--white);
}

.page-breadcrumbs span {
    color: rgba(255, 255, 255, 0.45);
}

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

.why-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--divider);
    transition: all 0.3s var(--ease);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--green);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg,var(--green-dark) 0%,var(--green) 100%);
    padding: 80px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-img {
    position: absolute;
    inset: 0px;
    background-image: url("../img/cta-section-bg.png");
    background-size: cover;
    background-position: 33% 14%;
    opacity: 0.1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0px auto 2rem;
}

.mid-cta {
    background: var(--cream);
    border-radius: var(--r-lg);
    padding: 52px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border: 1px solid var(--divider);
}

.mid-cta-text h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 0.5rem;
}

.mid-cta-text p {
    font-size: 0.95rem;
}

.testimonials-section {
    background: var(--cream);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--divider);
    transition: all 0.3s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

.testimonial-stars {
    color: rgb(245, 166, 35);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.testimonial-city {
    font-size: 0.78rem;
    color: var(--text-light);
}

.faq-list {
    max-width: 800px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--divider);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    gap: 16px;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(45, 80, 22, 0.04);
}

.faq-question.active {
    color: var(--green);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--divider);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
    color: var(--green);
}

.faq-question.active .faq-icon {
    background: var(--green);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
    padding: 0px 24px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
}

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

.area-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 20px;
    border: 1px solid var(--divider);
    box-shadow: var(--sh-sm);
    transition: all 0.25s var(--ease);
}

.area-card:hover {
    border-color: var(--green);
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
}

.area-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--green);
}

.area-card p {
    font-size: 0.82rem;
    color: var(--text-light);
}

.map-placeholder {
    background: linear-gradient(135deg,var(--cream) 0%,var(--divider) 100%);
    border-radius: var(--r-lg);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 2px dashed var(--divider);
    margin: 2.5rem 0px;
    gap: 12px;
}

.map-placeholder p {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--r-lg);
    display: block;
    background: linear-gradient(135deg,var(--green-dark) 0%,var(--green-light) 100%);
}

.about-img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--accent);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--r-md);
    text-align: center;
    box-shadow: var(--sh-md);
}

.badge-num {
    font-family: var(--font-h);
    font-size: 2.4rem;
    display: block;
    line-height: 1;
}

.badge-txt {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.88;
}

.about-content h2 {
    margin-bottom: 1.2rem;
}

.about-content p {
    margin-bottom: 1.2rem;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 1.5rem 0px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
}

.credential-check {
    width: 22px;
    height: 22px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    box-shadow: var(--sh-md);
    border: 1px solid var(--divider);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(45, 80, 22, 0.1);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-info-text a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: block;
}

.contact-info-text a:hover {
    color: var(--green);
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 4px;
    color: var(--text-light);
}

.contact-hours-row span:first-child {
    font-weight: 600;
    color: var(--text);
}

.contact-form {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    box-shadow: var(--sh-md);
    border: 1px solid var(--divider);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--divider);
    border-radius: var(--r-sm);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: 0.2s;
    outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: rgba(45, 80, 22, 0.08) 0px 0px 0px 3px;
}

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

.form-radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.form-radio input[type="radio"] {
    accent-color: var(--green);
    width: 16px;
    height: 16px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.trust-note {
    background: rgba(45, 80, 22, 0.06);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 24px;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--divider);
}

.process-num {
    width: 42px;
    height: 42px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.process-body h4 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.process-body p {
    font-size: 0.88rem;
    color: var(--text-light);
}

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

.all-service-item {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--divider);
    box-shadow: var(--sh-sm);
    transition: all 0.25s var(--ease);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

.all-service-item:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

.all-service-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--divider);
    transition: all 0.3s var(--ease);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
}

.blog-card-img-ph {
    height: 180px;
    background: linear-gradient(135deg,var(--green-dark),var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.blog-card-body {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    background: rgba(45, 80, 22, 0.1);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--r-full);
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.35;
}

.blog-card-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.blog-read-more {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.blog-read-more:hover {
    gap: 8px;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: start;
}

.blog-post-content h1 {
    margin-bottom: 1.2rem;
    line-height: 1.18;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-post-content h2 {
    font-size: 1.4rem;
    margin: 2.5rem 0px 1rem;
    color: var(--text);
}

.blog-post-content h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0px 0.75rem;
}

.blog-post-content p {
    margin-bottom: 1.2rem;
    font-size: 0.97rem;
}

.blog-post-content ul, .blog-post-content ol {
    margin: 1rem 0px 1.2rem 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.blog-cta-box {
    background: var(--green);
    border-radius: var(--r-lg);
    padding: 32px;
    text-align: center;
    margin: 2.5rem 0px;
}

.blog-cta-box h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.blog-sidebar-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--divider);
    margin-bottom: 20px;
}

.blog-sidebar-card h4 {
    font-size: 0.95rem;
    margin-bottom: 14px;
    color: var(--text);
}

.blog-sidebar-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-sidebar-card ul li a {
    font-size: 0.875rem;
    color: var(--green);
    font-weight: 500;
}

.blog-sidebar-card ul li a:hover {
    text-decoration: underline;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--green);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .bc-sep {
    color: var(--text-light);
}

.related-reading {
    background: var(--cream);
    border-radius: var(--r-lg);
    padding: 28px;
    margin-top: 2rem;
    border: 1px solid var(--divider);
}

.related-reading h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.related-reading ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-reading ul li a {
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.related-reading ul li a:hover {
    text-decoration: underline;
}

.blog-faq {
    margin-top: 2.5rem;
}

.blog-faq h2 {
    margin-bottom: 1.5rem;
}

.site-footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.78);
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
}

.footer-logo-wrap .logo-name {
    color: var(--white);
    font-family: var(--font-h);
    font-size: 1rem;
}

.footer-logo-wrap .logo-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-list a, .footer-contact-list address {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s;
}

.footer-contact-list a:hover {
    color: var(--white);
}

.footer-heading {
    font-family: var(--font-b);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s;
}

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

.footer-hours {
    margin-bottom: 1.5rem;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.84rem;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-hours-row span:first-child {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

.footer-areas-text {
    font-size: 0.84rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 10px;
}

.footer-area-link {
    font-size: 0.84rem;
    color: rgb(232, 160, 112);
    font-weight: 500;
}

.footer-area-link:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 28px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-trust-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-trust-list span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-review-link {
    color: rgb(245, 166, 35);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-review-link:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
}

.floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--r-full);
    padding: 13px 20px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: var(--sh-lg);
    z-index: 9999;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    animation: 2.5s ease-in-out 0s infinite normal none running floatingPulse;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: transform 0.25s var(--ease),opacity 0.25s var(--ease),background 0.25s var(--ease),box-shadow 0.25s var(--ease);
}

.floating-cta.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0px);
}

.floating-cta:hover {
    transform: scale(1.05);
    background: var(--accent-light);
    animation: auto ease 0s 1 normal none running none;
}

.floating-cta-icon {
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30%;
    }

    50% {
        border-radius: 50% 50% 30% 70% / 30% 70% 60% 40%;
    }

    75% {
        border-radius: 40% 60% 50% 50% / 60% 40% 50% 60%;
    }
}

@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(196,98,45,0.5),var(--sh-lg);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(196,98,45,0),var(--sh-lg);
    }
}

@keyframes heroBgDrift {
    0% {
        transform: translate3d(-6px, -3px, 0px) scale(1.03);
    }

    100% {
        transform: translate3d(8px, 4px, 0px) scale(1.055);
    }
}

@keyframes heroMarqueeLoop {
    0% {
        transform: translate3d(0px, 0px, 0px);
    }

    100% {
        transform: translate3d(var(--hero-marquee-distance,-420px),0,0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease),transform 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0px);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

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

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

.text-accent {
    color: var(--accent);
}

.text-white {
    color: var(--white);
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-6 {
    margin-top: 3rem;
}

.inline-link {
    color: var(--green);
    font-weight: 600;
    text-decoration: underline transparent;
    transition: text-decoration-color 0.2s;
}

.inline-link:hover {
    text-decoration-color: var(--green);
}

.divider {
    height: 1px;
    background: var(--divider);
    margin: 3rem 0px;
}

.badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(45, 80, 22, 0.1);
    color: var(--green);
    border-radius: var(--r-full);
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
}

.service-areas-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.area-chip {
    background: var(--cream);
    border: 1px solid var(--divider);
    border-radius: var(--r-full);
    padding: 6px 16px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text);
    transition: 0.2s;
    display: inline-block;
}

.area-chip:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

.priority-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
}

.priority-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 28px;
    border: 1px solid var(--divider);
    box-shadow: var(--sh-sm);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.priority-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--green);
}

.priority-card-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.priority-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.priority-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img {
        height: 360px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .blog-post-layout {
        grid-template-columns: 1fr;
    }

    .mid-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

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

@media (max-width: 768px) {
    section {
        padding: 64px 0px;
    }

    .main-nav {
        display: none;
    }

    .nav-phone-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .trust-bar-inner {
        gap: 16px;
    }

    .trust-divider {
        display: none;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .all-services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .floating-cta {
        display: flex;
    }

    .hero-bg {
        background-position: 77% center;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 112px;
        padding-bottom: 110px;
        gap: 12px;
    }

    .hero-title-frame, .hero-sub-frame, .hero-cta-frame {
        width: 100%;
        max-width: none;
    }

    .hero-title-frame {
        padding: 16px 18px 14px;
    }

    .hero-sub-frame, .hero-cta-frame {
        padding: 15px 16px;
    }

    .hero-service-pill {
        padding: 9px 12px;
        font-size: 0.82rem;
    }

    .hero-service-pill-icon {
        width: 24px;
        height: 24px;
    }

    .hero-service-pill-icon svg {
        width: 14px;
        height: 14px;
    }

    .hero-cta-frame .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-frame .btn {
        width: 100%;
        justify-content: center;
    }

    .about-img-badge {
        right: 0px;
        bottom: -16px;
    }

    .priority-services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0px 16px;
    }

    h1 {
        font-size: 1.9rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-tag {
        padding: 9px 14px;
        font-size: 0.72rem;
    }

    .hero-service-marquee-label {
        font-size: 0.64rem;
        letter-spacing: 0.14em;
    }

    .hero-service-track {
        gap: 10px;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .area-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    :not(.hero-bg):not(.hero-service-track), :not(.hero-bg):not(.hero-service-track)::before, :not(.hero-bg):not(.hero-service-track)::after {
        animation: auto ease 0s 1 normal none running none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

.nav-phone-cta {
    display: none !important;
}
