:root {
    --black: #111111;
    --charcoal: #1a1a1a;
    --green: #7ab317;
    --green-dark: #5a8610;
    --green-light: #eaf3d4;
    --blue: #0b74c9;
    --blue-dark: #085fa0;
    --blue-light: #eaf4ff;
    --white: #ffffff;
    --grey-light: #f5f7f8;
    --grey-mid: #e8ecf0;
    --grey-text: #6d7482;
    --grey: #6d7482;
    --navy: #071d2b;
    --card: #1e1e1e;
    --mid: #252525;
    --green-glow: rgba(139, 195, 74, 0.18);
    --green-border: rgba(139, 195, 74, 0.25);
    --font-head: "Sora", sans-serif;
    --font-body: "Lato", sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
    --transition: 0.25s ease;
    --tr: 0.25s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
ul {
    list-style: none;
}
.section-intro span{
    color: var(--green-dark);
}
/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 80px 0;
}
.section-sm {
    padding: 60px 0;
}
.tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.tag-blue {
    background: var(--blue-light);
    color: var(--blue-dark);
}
h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.2;
    color: var(--black);
}
h1 {
    font-size: clamp(2rem, 3.1vw, 3rem);
    font-weight: 700;
}
h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 700;
}
h3 {
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 600;
}
p {
    font-size: 1.02rem;
    color: var(--grey);
    line-height: 1.6;
    font-weight: 500;
}
.txt_box p,
.txt_box ul li,
.txt_box ol li{
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.75;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn-green {
    background: var(--green);
    color: var(--white);
}
.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(122, 179, 23, 0.35);
}
.btn-blue {
    background: var(--blue);
    color: var(--white);
}
.btn-blue:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 116, 201, 0.35);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}
.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}
.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement {
    background: var(--green);
    color: var(--white);
    text-align: center;
    padding: 9px 24px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.announcement a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: 1240px;
    margin: 0 auto;
    gap: 20px;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 3px solid var(--green);
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(122, 179, 23, 0.25);
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-text .name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 14px;
    line-height: 1.2;
    color: var(--black);
}
.logo-text .sub {
    font-size: 12px;
    color: var(--green-dark);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--black);
    padding: 8px 6px;
    border-radius: 6px;
    transition: all var(--transition);
    position: relative;
    line-height: 1.1;
}
.nav-link:hover {
    color: var(--green);
    background: var(--green-light);
}

.dropdown {
    position: relative;
    line-height: 0;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 25px;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 290px;
    padding: 12px 0;
    border-top: 3px solid var(--green);
    z-index: 100;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-head);
    font-size: 0.86rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--black);
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
    color: var(--green);
    background: var(--green-light);
    border-left-color: var(--green);
    padding-left: 24px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.phone-link {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 6px;
}
.phone-link:hover {
    color: var(--green);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    /*background: var(--navy);*/
    color: var(--white);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 50%, rgba(139, 195, 74, 0.09) 0%, transparent 55%),
        linear-gradient(180deg, #0d0d0d 0%, #111 100%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(139, 195, 74, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 195, 74, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero_slider {
    position: relative;
    overflow: hidden;
}

.hero_slider .item {
    min-height: 750px;
    display: flex !important;
    align-items: center;
}

.hero_slider .slick-slide {
    height: auto;
}

.hero_slider .slick-dots {
    bottom: 30px;
}

.hero_slider .slick-dots li button:before {
    color: #8bc34a;
    font-size: 12px;
    opacity: .5;
}

.hero_slider .slick-dots li.slick-active button:before {
    color: #8bc34a;
    opacity: 1;
}

.hero_slider .slick-prev,
.hero_slider .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
}

.hero_slider .slick-prev {
    left: 30px;
}

.hero_slider .slick-next {
    right: 30px;
}

.hero_slider .slick-prev:before,
.hero_slider .slick-next:before {
    font-size: 40px;
    color: #8bc34a;
}

/* Animation */
.hero_slider .hero-left,
.hero_slider .hero-right {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.hero_slider .slick-active .hero-left,
.hero_slider .slick-active .hero-right {
    opacity: 1;
    transform: translateY(0);
}

.hero_slider .slick-active .hero-left {
    transition-delay: .2s;
}

.hero_slider .slick-active .hero-right {
    transition-delay: .5s;
}

/* Airflow animated lines */
.airflow-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.airflow-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 179, 23, 0.25), rgba(11, 116, 201, 0.3), transparent);
    animation: airflow 6s linear infinite;
    opacity: 0;
}
@keyframes airflow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.hero-orb-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-orb {
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 40% 35%,
        rgba(139, 195, 74, 0.18),
        rgba(139, 195, 74, 0.02) 60%,
        transparent
    );
    border: 1px solid rgba(139, 195, 74, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-orb::before {
    content: "";
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    border: 1px solid rgba(139, 195, 74, 0.07);
    animation: rotate 20s linear infinite;
}
.hero-orb::after {
    content: "";
    position: absolute;
    inset: -60px;
    border-radius: 50%;
    border: 1px dashed rgba(139, 195, 74, 0.04);
    animation: rotate 35s linear infinite reverse;
}
.orb-center {
    text-align: center;
    animation: float 4s ease-in-out infinite;
}
.orb-logo {
    /*width: 180px;
    height: 180px;*/
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(139, 195, 74, 0.3));
}
.orb-label {
    font-family: var(--font-d);
    font-size: 16px;
    color: var(--green);
    letter-spacing: 3px;
    display: block;
    margin-top: 10px;
}
.orb-sub {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.fb {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--green-border);
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    animation: float 5s ease-in-out infinite;
}
.fb.fb1 {
    top: 55px;
    right: -35px;
    animation-delay: 0s;
}
.fb.fb2 {
    top: 15px;
    left: 45px;
    animation-delay: 1.5s;
}
.fb.fb3 {
    top: 185px;
    left: -55px;
    animation-delay: 0.8s;
}
.fb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}
.fb-t {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 1px;
}
.fb-s {
    font-size: 10px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.h  ero-orb::before {
    content: "";
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    border: 1px solid rgba(139, 195, 74, 0.07);
    animation: rotate 20s linear infinite;
}
.hero-orb::after {
    content: "";
    position: absolute;
    inset: -60px;
    border-radius: 50%;
    border: 1px dashed rgba(139, 195, 74, 0.04);
    animation: rotate 35s linear infinite reverse;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122, 179, 23, 0.15);
    border: 1px solid rgba(122, 179, 23, 0.4);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}
.hero h1 {
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
}
.hero h1 .accent {
    color: var(--green);
}
.hero-sub p{
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 520px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-trust-bar {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}
.trust-item .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-right {
    position: relative;
}
.hero-visual-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(10px);
}
.hero-img-placeholder {
    width: 100%;
    height: 280px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d3a5e, #1a5276);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-img-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/hero.jpg")
        center/cover;
    background-position: top;
}
.floating-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.float-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.float-card .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.float-card .text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
.float-card .text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--green);
    padding: 20px 24px;
}
.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
}
.trust-strip-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--grey-light);
}
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}
.section-intro h2 {
    margin-bottom: 14px;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.problem-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    border-left: 4px solid var(--blue);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}
.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-left-color: var(--green);
}
.problem-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.problem-card h4 {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--black);
}
.problem-card p {
    font-size: 0.85rem;
    color: var(--grey-text);
}
.problem-bottom {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--blue);
}
.problem-bottom p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== SERVICES ===== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: all var(--transition);
    border-bottom: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--green);
}
.service-card-img {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/*.service-card-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(26, 82, 118, 0.3));
}*/
.service-card-body {
    padding: 24px;
}
.service-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}
.service-card-body p {
    font-size: 0.88rem;
    margin-bottom: 16px;
}
.learn-more {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.learn-more:hover {
    gap: 12px;
}

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

/* ===== WHY US ===== */
.why-section {
    background: var(--navy);
    color: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start; /* important */
}
.why-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-left .tag {
    background: rgba(122, 179, 23, 0.15);
    color: var(--green);
    border: 1px solid rgba(122, 179, 23, 0.3);
}
.why-left h2 {
    color: var(--white);
}
.why-left p {
    color: rgba(255, 255, 255, 0.7);
}
.why-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}
.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}
.why-feature:hover {
    background: rgba(122, 179, 23, 0.1);
    border-color: rgba(122, 179, 23, 0.25);
}
.why-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.why-feature-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    line-height: 0.9;
    margin-bottom: 0px;
}
.why-feature-text span {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
}
.why-right {
    position: relative;
    align-self: start;
}
.why-image-box {
    position: sticky;
    top: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px;
    text-align: center;
}
.why-img-placeholder {
    width: 100%;
    height: 510px;
    border-radius: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.years-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 90px;
    height: 90px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(122, 179, 23, 0.5);
    font-family: var(--font-head);
}
.years-badge .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.years-badge .txt {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    text-align: center;
}

/* ===== PROCESS ===== */
.process-section {
    background: var(--grey-light);
}
.process-section .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-section .process-steps::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    z-index: 0;
}
.process-section .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.process-section .step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(122, 179, 23, 0.2);
    flex-shrink: 0;
}
.process-section .process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}
.process-section .process-step p {
    font-size: 0.86rem;
}
.process-section .process-cta {
    text-align: center;
    margin-top: 48px;
}
.process-section .process-micro {
    text-align: center;
    color: var(--grey-text);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BEFORE AFTER ===== */
.ba-section {
    background: var(--black);
    color: var(--white);
}
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.ba-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.ba-card-inner {
    display: block;
    width: 100%;
    height: 200px;
    text-align: center;
}
.ba-card-inner img{
    width: 100%;
    height: 200px;
}
/*.ba-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 200px;
}*/
.ba-side {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ba-side.before {
    background: linear-gradient(135deg, #3d1a1a, #6b2c2c);
    color: rgba(255, 255, 255, 0.8);
}
.ba-side.after {
    background: linear-gradient(135deg, #1a3d1a, #2c6b2c);
    color: rgba(255, 255, 255, 0.9);
}
.ba-icon {
    font-size: 2.5rem;
}
.ba-card-label {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.ba-card-label h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}
.ba-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== SPLIT SECTION ===== */
.split-section {
    background: var(--grey-light);
}
.split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.split-card {
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.split-card.residential {
    background: linear-gradient(135deg, #0d2f45, #1a5276);
    color: var(--white);
}
.split-card.commercial {
    background: linear-gradient(135deg, #1a2f0d, #2d5214);
    color: var(--white);
}
.split-card-icon {
    font-size: 3rem;
}
.split-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}
.split-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}
.split-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.split-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}
.split-feature::before {
    content: "✓";
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    font-weight: 700;
}

/* ===== REBATE ===== */
.rebate-section {
    background: linear-gradient(135deg, var(--blue-light), #f0f8ff);
    border-top: 4px solid var(--blue);
}
.rebate-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    justify-content: center;
}
.rebate-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rebate-note {
    background: rgba(11, 116, 201, 0.1);
    border: 1px solid rgba(11, 116, 201, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.84rem;
    color: var(--blue-dark);
    font-style: italic;
}
.rebate-right {
    text-align: center;
}
.rebate-icon-box {
    width: 120px;
    height: 120px;
    background: var(--blue);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 16px;
    box-shadow: 0 12px 32px rgba(11, 116, 201, 0.3);
}

/* ===== SERVICE AREAS ===== */
.areas-section {
    background: var(--white);
}
.cities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
.city-tag {
    background: var(--grey-light);
    border: 1px solid var(--grey-mid);
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
    font-family: var(--font-head);
    font-size: 0.82rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--charcoal);
    transition: all var(--transition);
    cursor: default;
}
.city-tag:hover {
    background: var(--green-light);
    border-color: var(--green);
    color: var(--green-dark);
}
.areas-cta {
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--grey-light);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 4px solid var(--green);
}
.stars {
    display: flex;
    gap: 4px;
}
.star {
    color: #f5a623;
    font-size: 1.1rem;
}
.testimonial-text p{
    font-size: 0.95rem;
    color: var(--charcoal);
    font-style: italic;
    line-height: 1.7;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}
.author-info strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
}
.author-info span {
    font-size: 0.8rem;
    color: var(--grey-text);
}

/* ===== BLOG ===== */
.blog-section {
    background: var(--white);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    transition: all var(--transition);
    border-bottom: 4px solid transparent;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--blue);
}
.blog-img {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #1a5276, #0b74c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.blog-body {
    padding: 24px;
    background: var(--white);
}
.blog-cat {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
    margin-bottom: 8px;
    display: block;
}
.blog-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
    line-height: 1.4;
}
.blog-body p {
    font-size: 0.86rem;
    margin-bottom: 14px;
}
.read-more {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}
.final-cta::after {
    content: "";
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}
.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.final-cta h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}
.final-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 36px;
}
.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-white {
    background: var(--white);
    color: var(--green-dark);
}
.btn-white:hover {
    background: var(--grey-light);
}
.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    background: transparent;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--green);
}
.footer-logo .name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
}
.footer-logo .sub {
    font-size: 0.7rem;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--green);
}
.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(122, 179, 23, 0.4);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-links a {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.1;
}
.footer-links a:hover {
    color: var(--green);
    padding-left: 6px;
}
.footer-cta-box {
    background: rgba(122, 179, 23, 0.12);
    border: 1px solid rgba(122, 179, 23, 0.25);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-cta-box p {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
}
.footer-cta-box .btn:hover{
    color: var(--green) !important;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}
.footer-bottom-links {
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}
.footer-bottom-links a:hover {
    color: var(--green);
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--black);
    padding: 12px 20px;
    gap: 12px;
}
.mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}
.mobile-cta-call {
    background: var(--green);
}
.mobile-cta-quote {
    background: var(--blue);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0px;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    flex-direction: column;
    padding: 80px 12px 28px;
    gap: 6px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
    transition: right 0.35s ease;
    overflow-y: auto;
}
.mobile-nav.open {
    right: 0;
    display: block;
}
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
}
.mobile-nav-overlay.open {
    display: block;
}
.mobile-nav a {
    display: block;
    padding: 12px 14px;
    font-family: var(--font-head);
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--black);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all var(--transition);
}
.mobile-nav a:hover {
    color: var(--green);
    background: var(--green-light);
    border-left-color: var(--green);
}
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--grey-light);
}
.mobile-nav-sub {
    padding-left: 12px;
    display: block;
}
.mobile-nav-sub.open {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mobile-nav-sub a {
    font-size: 0.88rem;
    color: var(--grey-text);
    padding: 8px 14px;
    line-height: 1.6;
}
.mobile-services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    font-family: var(--font-head);
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--black);
    border-radius: 8px;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    border-left: 3px solid transparent;
    transition: all var(--transition);
}
.mobile-services-toggle.open {
    color: var(--green);
    background: var(--green-light);
    border-left-color: var(--green);
}
.mobile-cta-section {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--grey-mid);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: all var(--tr);
    white-space: nowrap;
}
.btn-green {
    background: var(--green);
    color: #fff;
}


.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.col-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3  { flex: 0 0 25%;        max-width: 25%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6  { flex: 0 0 50%;        max-width: 50%; }
.col-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9  { flex: 0 0 75%;        max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%;       max-width: 100%; }
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

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

/* Padding Top */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; } /* 4px */
.pt-2 { padding-top: 0.5rem !important; }  /* 8px */
.pt-3 { padding-top: 1rem !important; }    /* 16px */
.pt-4 { padding-top: 1.5rem !important; }  /* 24px */
.pt-5 { padding-top: 3rem !important; }    /* 48px */

/* Padding Bottom */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

@media (min-width: 768px) {
    .pt-md-0 { padding-top: 0 !important; }
    .pt-md-1 { padding-top: 0.25rem !important; }
    .pt-md-2 { padding-top: 0.5rem !important; }
    .pt-md-3 { padding-top: 1rem !important; }
    .pt-md-4 { padding-top: 1.5rem !important; }
    .pt-md-5 { padding-top: 3rem !important; }

    .pb-md-0 { padding-bottom: 0 !important; }
    .pb-md-1 { padding-bottom: 0.25rem !important; }
    .pb-md-2 { padding-bottom: 0.5rem !important; }
    .pb-md-3 { padding-bottom: 1rem !important; }
    .pb-md-4 { padding-bottom: 1.5rem !important; }
    .pb-md-5 { padding-bottom: 3rem !important; }
}
.w-100{
    width: 100%;
}

.page-hero {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a:hover {
    color: var(--green);
}
.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.3);
}


.final-cta-section {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    text-align: center;
    padding: 70px 24px;
    position: relative;
    overflow: hidden;
}
.final-cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}
.final-cta-section::after {
    content: "";
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}
.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.steps-wrap{padding-left:40px;position:relative;}
.steps-wrap::before{content:'';position:absolute;left:15px;top:0;bottom:0;width:2px;background:linear-gradient(180deg,var(--green),var(--blue));}
.steps-wrap.government .step-item {
    position: relative;
    padding-bottom: 32px;
}
.steps-wrap.government .step-item:last-child {
    padding-bottom: 0;
}
.steps-wrap.government .step-num {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(122, 179, 23, 0.35);
}
.steps-wrap.government .step-item h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}
.steps-wrap.government .step-item p {
    font-size: 0.92rem;
}
.txt_box ul, ol, p, h2, h3, h4, h5, h6{
    margin-bottom: 15px;
}
.txt_box ul, ol{
    padding-left: 15px;
}
.txt_box ul{
    display: inline-block;
    list-style: disc;
}
.txt_box ol{
    display: inline-block;
    list-style: decimal;
}

/* Contact */
.contact-form-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.form-group label {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--grey-mid);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    outline: none;
    transition: border-color var(--tr);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
/* Trust strip */
.trust-strip {
    background: var(--green);
    padding: 20px 24px;
}
.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
}
/* Service layout */
.service-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}
.sidebar-card {
    background: var(--grey-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    border-top: 4px solid var(--green);
    margin-bottom: 20px;
}
.sidebar-card h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff;
    border-left: 3px solid transparent;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 8px;
    transition: all var(--tr);
}
.sidebar-links a:hover,
.sidebar-links a.active {
    color: var(--green);
    border-left-color: var(--green);
    background: var(--green-light);
}
.sidebar-cta {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
/* Checklist */
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--grey-light);
    border-radius: 10px;
    margin-bottom: 10px;
}
.checklist-item strong{
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 7px;
    display: block;
}
.checklist-item p{
    font-size: 16px;
    line-height: 1.4;
}
.checklist-item .check-icon{
    margin-top: 3px;
}
.check-icon {
    width: 28px;
    height: 28px;
    background: var(--green);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    color: #fff;
    font-weight: 700;
}
/* Signs */
.signs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 34px 0;
}
.sign-card {
    background: #fff;
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    border-top: 3px solid var(--blue);
}
.sign-card .si {
    font-size: 2rem;
    margin-bottom: 10px;
}
.sign-card h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}
.sign-card p {
    font-size: 0.88rem;
}
/* Process steps */
.steps-wrap {
    padding-left: 40px;
    position: relative;
}
.steps-wrap::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--green), var(--blue));
}
.step-item {
    position: relative;
    padding-bottom: 32px;
}
.step-item:last-child {
    padding-bottom: 0;
}
.service-layout .step-num {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(122, 179, 23, 0.35);
}
.step-item h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}
.step-item p {
    font-size: 0.92rem;
}
/* FAQ */
.faq-item {
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 10px;
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    background: #fff;
    gap: 16px;
}
.faq-q:hover {
    background: var(--green-light);
}
.faq-q .fi {
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.faq-a {
    display: none;
    padding: 20px 22px 18px;
    font-size: 0.93rem;
    color: var(--grey-text);
    line-height: 1.75;
    background: #fff;
}
/* Reviews */
.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--green);
}
.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 0px;
}
.star {
    color: #f5a623;
    font-size: 1.1rem;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    flex-shrink: 0;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.slider-container {
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 350px;
    border-radius: 0.7rem 0.7rem 0 0;
    overflow: hidden;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    overflow: hidden;
}

/* Styling the Before/After text */
.before-text,
.after-text {
    position: absolute;
    font-family: system-ui;
    font-size: 14px;
    font-weight: 600;
    color: #3a3a3a;
    z-index: 4;
    padding: 10px 20px;
    background-color: #ffffff9e;
    border-radius: 0.3rem;
    letter-spacing: 2px;
    transition: opacity 0.3s ease-in-out;
}

/* Before text */
.before-text {
    left: 20px; /* Position text to the left */
    top: 20px;
    z-index: 5;
}

/* After text */
.after-text {
    right: 20px; /* Position text to the right */
    top: 20px;
    z-index: 3;
}

/* Hide the After text initially */
.after-image .after-text {
    visibility: visible;
    z-index: 3;
}

.after-image {
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0px;
    height: 100%;
    background-color: #fff;
    cursor: pointer;
    z-index: 2;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    z-index: 1;
}
.pulse-container {
    position: relative;
    display: inline-block;
}

.pulse-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px; /* Larger than the SVG */
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff; /* Color of the pulse */
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.slider-line svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
}
/* Prevent text/image selection while dragging */
.slider-container,
.before-image img,
.after-image img {
    user-select: none; /* Disable selection on most browsers */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
}

.slider-handle,
.slider-line {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.footer-socials {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.social-btn {
    width: 36px;
    height: 36px;
    background: var(--faint);
    border: 1px solid var(--green-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--muted);
}
.social-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--black);
}

/* Modal Background */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    box-sizing: border-box;
}

/* Modal Box */
.custom-modal-content {
    background: linear-gradient(135deg, #f6f6f6, #fff);
    color: #fff;
    max-width: 700px;
    width: 100%;
    margin: 60px auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-sizing: border-box;
    border: 3px solid var(--brand-line);
}

/* Close Button */
.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: inherit;
    border: none;
    color: var(--green);
    font-size: 30px;
    cursor: pointer;
}

/* Title */
.custom-title {
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--green);
}

/* Responsive */
@media (max-width: 768px) {
    .custom-modal-content {
        padding: 20px;
        margin: 30px auto;
    }

    .custom-title {
        font-size: 22px;
    }
}
.city_box p{
    font-size: 1rem;
}