.elementor-kit-4{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-4 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ========================================
   HEADER / NAVIGATION
======================================== */
.header,
.stead-page .header {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: var(--white) !important;
    z-index: 1000 !important;
    padding: 16px 0 !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05) !important;
}

.header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.logo,
.stead-page .logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.logo-icon,
.stead-page .logo-icon {
    width: 48px !important;
    height: 48px !important;
    background-color: var(--primary-green) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--white) !important;
    font-family: var(--font-heading) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-align: center !important;
    line-height: 1.1 !important;
}

.nav-menu,
.stead-page .nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 40px !important;
}

.nav-menu a,
.stead-page .nav-menu a {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--dark-text) !important;
    position: relative !important;
    text-decoration: none !important;
}

.nav-menu a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -4px !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background-color: var(--primary-green) !important;
    transition: width 0.3s ease !important;
}

.nav-menu a:hover::after {
    width: 100% !important;
}

.nav-menu a:hover {
    color: var(--primary-green) !important;
}

.header-right,
.stead-page .header-right {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

.header-phone,
.stead-page .header-phone {
    font-weight: 500 !important;
    color: var(--dark-text) !important;
}

.header-phone:hover {
    color: var(--primary-green) !important;
}



/* ========================================
   FOOTER
======================================== */
.footer,
.stead-page .footer {
    padding: 40px 0 !important;
    background-color: var(--primary-green) !important;
    text-align: center !important;
}

.footer p {
    color: var(--white) !important;
    margin-bottom: 4px !important;
    font-size: 14px !important;
}

.footer .firm-name {
    font-family: var(--font-heading) !important;
    font-size: 18px !important;
    margin-bottom: 8px !important;
    color: var(--white) !important;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .hero-content {
        max-width: 100% !important;
    }

    .hero-image::before {
        display: none !important;
    }

    .built-for-grid,
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .reviews-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }

    .about .container,
    .contact .container {
        grid-template-columns: 1fr !important;
    }

    .about-image {
        order: -1 !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    .nav-menu {
        display: none !important;
    }

    .hero {
        padding: 60px 0 60px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        text-align: center !important;
    }

    .steps-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-form {
        grid-template-columns: 1fr !important;
    }

    .form-group.full-width {
        grid-column: 1 !important;
    }
 
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0 !important;
        transform: translateY(30px) !important;
    }
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

.hero-content,
.hero-image,
.section-header,
.service-card,
.step,
.feature,
.review-card {
    animation: fadeInUp 0.6s ease forwards !important;
}

.hero-image {
    animation-delay: 0.2s !important;
}

/* ========================================
   ELEMENTOR SPECIFIC OVERRIDES
======================================== */
.elementor-section,
.elementor-container,
.elementor-row,
.elementor-column,
.elementor-widget-wrap,
.elementor-widget {
    margin: 0 !important;
    padding: 0 !important;
}

.elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

/* Override Elementor link defaults */
.elementor a,
.elementor a:hover,
.elementor a:focus,
.elementor a:visited {
    text-decoration: none !important;
}

/* Override Elementor button defaults */
.elementor .elementor-button {
    font-family: var(--font-body) !important;
}

/* Override Elementor heading defaults */
.elementor .elementor-heading-title {
    font-family: var(--font-heading) !important;
    color: var(--primary-green) !important;
}

/* Override WordPress defaults */
.entry-content a,
.post-content a {
    text-decoration: none !important;
}

.wp-block-button__link {
    font-family: var(--font-body) !important;
}


.logo-img {
    height: auto; /* adjust as needed */
    width: 60px;
}/* End custom CSS */