:root {
    --primary-color: #15222d;
    --secondary-color: #0d5d36;
    --accent-color: #007643;
    --accent-hover: #005a33;
    --highlight-color: #007643;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-alt: #f4f7f6;
    --border-color: #e0e0e0;
    --font-family: 'Inter', sans-serif;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.section-padding {
    padding: 80px 0
}

.bg-alt {
    background-color: var(--bg-alt)
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto
}

.section-cta {
    text-align: center;
    margin-top: 50px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: .95rem
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color)
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-2px)
}

.btn-quote {
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 800
}

.btn-quote:hover {
    background-color: var(--accent-hover)
}

.btn-call-now {
    background-color: var(--highlight-color);
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 800;
    letter-spacing: .5px
}

.btn-call-now:hover {
    background-color: #005a33;
    transform: scale(1.02)
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem
}

.btn-block {
    display: flex;
    width: 100%
}

.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000
}

.header-main {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 0
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    flex: 0.7
}

.logo a {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px
}

.nav-links {
    display: flex;
    gap: 25px
}

.nav-links a {
    color: #fff;
    font-size: .95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition)
}

.nav-links a:hover {
    opacity: .8
}

.nav-links span {
    font-size: .7rem
}

.header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem
}

.header-phone svg {
    margin-top: -2px
}

.header-sub {
    background-color: var(--secondary-color);
    padding: 12px 0
}

.sub-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #fff
}

.sub-inner a {
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem
}

.sub-inner p {
    font-size: 1.05rem
}

.sub-inner p strong {
    font-weight: 800
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 48px;
    height: 48px;
    background: 0 0;
    border: none;
    cursor: pointer;
    z-index: 1010;
    padding: 12px 8px;
    box-sizing: border-box;
    outline: 0
}

.hamburger:focus {
    outline: 0
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: var(--transition)
}

.hamburger.open .bar:first-child {
    transform: translateY(10.5px) rotate(45deg)
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0
}

.hamburger.open .bar:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg)
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 140px;
    transform: translateY(-100%);
    transition: transform .4s ease-in-out;
    overflow-y: auto
}

.mobile-menu.active {
    transform: translateY(0)
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    width: 100%
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    display: block;
    width: 100%;
    padding: 10px 0
}

.mobile-menu-actions {
    width: 80%;
    max-width: 300px;
    padding-bottom: 40px
}

section {
    scroll-margin-top: 140px
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0, #1e3040 100%);
    color: #fff;
    padding: 100px 0 120px;
    text-align: center
}

.eyebrow {
    display: inline-block;
    background-color: rgba(255, 255, 255, .1);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 25px;
    text-transform: uppercase
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.hero .sub-headline {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px
}

.hero .btn-primary {
    background-color: var(--highlight-color);
    color: #fff
}

.hero .btn-primary:hover {
    background-color: #00d666
}

.hero .btn-secondary {
    border-color: #fff;
    color: #fff
}

.hero .btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color)
}

.trust-line {
    font-size: .95rem;
    font-weight: 500;
    color: #cbd5e1
}

.stats-section {
    margin-top: -50px;
    position: relative;
    z-index: 10
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.stat-card {
    text-align: center;
    padding: 15px
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px
}

.stat-subtext {
    font-size: .9rem;
    color: var(--text-light)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color)
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color)
}

.service-content {
    padding: 25px;
    flex-grow: 1
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px
}

.why-us-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.why-us-list li {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500
}

.why-us-list .check {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 15px;
    font-weight: 700
}

.connected-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
}

.connected-card {
    background-color: var(--bg-alt);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color)
}

.connected-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.review-card {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow)
}

.review-card .stars {
    margin-bottom: 15px;
    font-size: 1.2rem
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color)
}

.review-author {
    font-weight: 700;
    color: var(--primary-color)
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.faq-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden
}

.faq-question {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #fff;
    list-style: none;
    position: relative;
    transition: var(--transition)
}

.faq-question::-webkit-details-marker {
    display: none
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color)
}

details[open] .faq-question::after {
    content: '-'
}

details[open] .faq-question {
    background-color: var(--bg-alt)
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-color);
    background-color: var(--bg-alt)
}

.site-footer {
    background-color: var(--primary-color);
    color: #e0e0e0;
    text-align: center;
    padding: 60px 0 40px;
    font-size: .9rem
}

.site-footer p {
    margin-bottom: 10px
}

.sticky-footer-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 990;
    background-color: var(--primary-color);
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .2)
}

.sticky-footer-call .btn {
    border-radius: 4px
}

@media (max-width:1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .desktop-nav {
        gap: 20px
    }

    .nav-links {
        gap: 15px
    }

    .sub-inner p {
        font-size: .95rem
    }
}

@media (max-width:900px) {

    .desktop-actions,
    .desktop-nav {
        display: none
    }

    .hamburger {
        display: flex
    }
}

@media (max-width:768px) {
    .header-sub {
        padding: 15px 0
    }

    .sub-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px
    }

    .hero {
        padding: 60px 0 80px
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .hero-ctas {
        flex-direction: column
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px
    }

    .connected-grid,
    .reviews-grid,
    .services-grid {
        grid-template-columns: 1fr
    }

    .section-padding {
        padding: 60px 0
    }

    body {
        padding-bottom: 70px
    }

    .sticky-footer-call {
        display: block
    }
}

@media (max-width:480px) {
    .logo a {
        font-size: 1.3rem
    }

    .sub-inner a {
        font-size: .95rem
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 1.8rem
    }

    .stat-number {
        font-size: 2rem
    }
}

.floating-call-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 995
}

.floating-call-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #007643 0, #00a859 100%);
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 118, 67, .4);
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1)
}

.floating-call-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 118, 67, .5)
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid #00a859;
    animation: popupPulse 2s infinite;
    pointer-events: none
}

@keyframes popupPulse {
    0% {
        transform: translate(-50%, -50%) scale(.95);
        opacity: .8
    }

    70% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 0
    }

    100% {
        transform: translate(-50%, -50%) scale(.95);
        opacity: 0
    }
}

.live-dot {
    width: 9px;
    height: 9px;
    background-color: #00ff75;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff75
}

.call-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 22, 33, .8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease
}

.call-modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    z-index: 999999 !important
}

.call-modal-card {
    position: relative;
    background: var(--primary-color, #15222d);
    border: 4px solid #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 720px;
    padding: 30px 40px 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .5);
    color: #fff;
    transform: scale(.88);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1)
}

.call-modal-overlay.active .call-modal-card {
    transform: scale(1)
}

.call-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    background: #000;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3)
}

.call-modal-close:hover {
    background: #007643;
    transform: scale(1.1)
}

.call-modal-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 20px
}

.call-modal-text {
    flex: 1;
    text-align: left
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 118, 67, .25);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, .3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 12px
}

.pulse-green {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, .7);
    animation: greenPulse 1.6s infinite
}

@keyframes greenPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, .7)
    }

    70% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0)
    }
}

.modal-headline {
    font-size: 1.65rem;
    font-weight: 900;
    color: #ffca28;
    line-height: 1.25;
    margin-bottom: 8px
}

.modal-subtext {
    font-size: 1.05rem;
    color: #e2e8f0;
    font-weight: 600;
    margin: 0
}

.call-modal-cta {
    flex-shrink: 0
}

.call-modal-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #007643 0, #009650 100%);
    color: #fff;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(0, 118, 67, .4);
    transition: all .25s ease;
    border: 1px solid rgba(255, 255, 255, .2)
}

.call-modal-phone-btn:hover {
    background: linear-gradient(135deg, #006037 0, #008244 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 118, 67, .6);
    color: #fff
}

.call-modal-phone-btn i {
    font-size: 1.4rem;
    animation: ringBell 2s infinite
}

@keyframes ringBell {

    0%,
    100% {
        transform: rotate(0)
    }

    10%,
    30% {
        transform: rotate(-15deg)
    }

    20%,
    40% {
        transform: rotate(15deg)
    }

    50% {
        transform: rotate(0)
    }
}

.call-modal-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 15px;
    gap: 10px
}

.call-modal-features span {
    font-size: .85rem;
    font-weight: 700;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 6px
}

.call-modal-features i {
    color: #4ade80
}

@media (max-width:768px) {
    .logo {
        flex: 1;
    }

    .floating-call-widget {
        bottom: 80px;
        right: 15px
    }

    .floating-call-btn {
        padding: 12px 18px;
        font-size: .9rem
    }

    .call-modal-card {
        padding: 24px 20px 18px;
        max-width: 92%
    }

    .call-modal-content {
        flex-direction: column;
        text-align: center;
        gap: 18px
    }

    .call-modal-text {
        text-align: center
    }

    .modal-headline {
        font-size: 1.35rem
    }

    .modal-subtext {
        font-size: .95rem
    }

    .call-modal-phone-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1.15rem
    }

    .call-modal-close {
        top: -12px;
        right: -12px;
        width: 32px;
        height: 32px;
        font-size: .95rem
    }

    .call-modal-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px
    }
}

.logo-img, .footer-logo-img{
    width: 120px;
}