:root {
    --theme-color: #e8112b;
    --secondary-color: #fec624;
    --title-color: #071a2b;
    --text-color: #53616c;
    --smoke-color: #f5f7fa;
    --white-color: #fff;
    --border-color: #e8edf2;
    --shadow: 0 18px 60px rgba(7, 26, 43, 0.1);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth !important;
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-color);
    background: #fff;
    line-height: 1.55;
    padding-bottom: 0;
}
a {
    text-decoration: none;
    transition: 0.2s;
}
img {
    max-width: 100%;
    height: auto;
}
h1,
h2,
h3,
h4 {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--title-color);
    font-weight: 800;
    line-height: 1.15;
    margin-top: 0;
}
p {
    margin-top: 0;
}
button,
input,
select,
textarea {
    font: inherit;
}
.container {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
}
.vs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 22px;
    border-radius: 7px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s;
}
.service-style2 {
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.service-style2.bg-style1 .img-wrap:before,
.service-style2.bg-style1 .service-content {
    background: var(--smoke-color);
}
.service-style2 .service-content {
    padding: 30px 30px 40px;
    background: #fff;
    text-align: left;
}
.service-style2 .img-wrap {
    position: relative;
}
.service-style2 .img-wrap:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: #fff;
    z-index: 0;
}
.service-style2 .img-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 52%;
    width: 100%;
    height: 36%;
    background: var(--secondary-color);
    z-index: 0;
    border-radius: 20px;
    transition: 0.35s;
}
.service-style2 .service-img {
    position: relative;
    z-index: 1;
    border-radius: 100px 20px 20px 20px;
    overflow: hidden;
    max-width: 90%;
    margin: 0 auto;
}
.service-style2 .service-img img {
    width: 100%;
    transform: scale(1);
    transition: 0.35s;
}
.service-style2 .service-img:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 21, 29, 0.18);
    z-index: 1;
}
.service-style2 .service-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: var(--theme-color);
    border-radius: 20px;
    display: block;
    text-align: center;
    transition: 0.35s;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 3;
}
.service-style2 .service-title {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 15px;
}
.service-style2 .service-title a {
    color: var(--title-color);
}
.service-style2 .service-title a:hover {
    color: var(--theme-color);
}
.service-style2 .service-text {
    color: var(--text-color);
    margin-bottom: 22px;
}
.service-style2 .vs-btn {
    font-size: 16px;
    color: var(--title-color);
    background: transparent;
    border: 1px solid var(--theme-color);
}
.service-style2:hover .vs-btn {
    color: #fff;
    background: var(--theme-color);
}
.service-style2:hover .service-icon {
    background: var(--secondary-color);
    color: var(--title-color);
}
.service-style2:hover .service-img img {
    transform: scale(1.045);
}
.service-style2:hover .img-wrap:after {
    background: var(--theme-color);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 8px 30px rgba(7, 26, 43, 0.08);
}
.header-topbar {
    background: var(--title-color);
    color: #fff;
    font-size: 13px;
}
.vmg-topbar {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.vmg-topbar div {
    display: flex;
    gap: 24px;
}
.vmg-topbar a {
    color: #fff;
}
.vmg-topbar .top-phone {
    color: var(--secondary-color);
    font-weight: 800;
}
.header-main {
    background: #fff;
}
.nav-wrap {
    height: 86px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.brand {
    width: 175px;
    flex: 0 0 175px;
}
.brand img {
    display: block;
    width: 100%;
    height: auto;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    height: 100%;
}
.desktop-nav > a,
.nav-dropdown__toggle {
    border: 0;
    background: transparent;
    padding: 30px 12px;
    color: var(--title-color);
    font-weight: 700;
    /* font-size: 15px; */
    position: relative;
}
.desktop-nav > a:after,
.nav-dropdown__toggle:after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 19px;
    height: 3px;
    background: var(--theme-color);
    transform: scaleX(0);
    transition: 0.2s;
}
.desktop-nav > a:hover:after,
.desktop-nav > a.active:after,
.nav-dropdown:hover .nav-dropdown__toggle:after {
    transform: scaleX(1);
}
.desktop-nav > a:hover,
.desktop-nav > a.active,
.nav-dropdown__toggle:hover {
    color: var(--theme-color);
}
.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-dropdown__menu {
    position: absolute;
    top: 78px;
    left: -150px;
    width: 650px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 25px 65px rgba(7, 26, 43, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.2s;
    border-top: 4px solid var(--theme-color);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.nav-dropdown__menu a {
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--title-color);
}
.nav-dropdown__menu a:hover {
    background: var(--smoke-color);
    color: var(--theme-color);
}
.nav-dropdown__menu strong {
    display: block;
    font-size: 14px;
}
.nav-dropdown__menu small {
    display: block;
    color: #77838d;
    margin-top: 2px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 10px;
}
.header-call {
    display: flex;
    flex-direction: column;
    color: var(--title-color);
    line-height: 1.15;
}
.header-call span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #77838d;
}
.header-call strong {
    font-size: 15px;
}
.vmg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 800;
    transition: 0.2s;
    border: 2px solid transparent;
}
.vmg-btn--primary {
    background: var(--theme-color);
    color: #fff;
}
.vmg-btn--primary:hover {
    background: var(--title-color);
    color: #fff;
}
.vmg-btn--yellow {
    background: #1a8742;
    color: var(--title-color);
}
.vmg-btn--yellow:hover {
    background: #fff;
    color: var(--title-color);
}
.vmg-btn--wa {
    background: #16a34a;
    color: #fff;
}
.menu-open {
    display: none;
    border: 0;
    background: var(--title-color);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    padding: 12px;
}
.menu-open span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}
.hero-new {
    min-height: 660px;
    display: flex;
    align-items: center;
    position: relative;
    background: #061827;
    overflow: hidden;
}
.hero-new:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 18, 29, 0.96) 0%,
        rgba(3, 18, 29, 0.86) 44%,
        rgba(3, 18, 29, 0.25) 72%,
        rgba(3, 18, 29, 0.1) 100%
    );
    z-index: 1;
}
.hero-new__image {
    position: absolute;
    inset: 0;
    margin-left: 42%;
    background: url("../images/hero-electrician.webp") center/cover no-repeat;
}
.hero-new__content {
    position: relative;
    z-index: 2;
    width: min(720px, 64%);
    padding: 82px 0;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    margin-bottom: 18px;
}
.eyebrow:before {
    content: "";
    width: 32px;
    height: 3px;
    background: var(--theme-color);
}
.hero-new h1 {
    font-size: clamp(42px, 5.8vw, 72px);
    line-height: 1.02;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -0.035em;
}
.hero-new h1 span {
    color: var(--secondary-color);
}
.hero-new p {
    font-size: 19px;
    line-height: 1.65;
    color: #d8e0e6;
    max-width: 650px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.hero-actions .vmg-btn {
    min-height: 56px;
    padding: 15px 26px;
}
.hero-proof {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 34px;
    color: #fff;
}
.hero-proof span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.hero-proof span:before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--theme-color);
    font-weight: 900;
}
.trust-strip {
    margin-top: -50px;
    position: relative;
    z-index: 5;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.trust-item {
    padding: 27px;
    border-right: 1px solid var(--border-color);
    display: flex;
    gap: 14px;
    align-items: center;
}
.trust-item:last-child {
    border-right: 0;
}
.trust-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff4f4;
    color: var(--theme-color);
    font-size: 20px;
    font-weight: 900;
}
.trust-item strong {
    display: block;
    color: var(--title-color);
    font-size: 15px;
}
.trust-item small {
    display: block;
    color: #77838d;
    margin-top: 2px;
}
.section-pad {
    padding: 95px 0;
}
.section-smoke {
    background: var(--smoke-color);
}
.section-dark {
    background: var(--title-color);
    color: #fff;
}
.section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}
.section-head.left {
    margin: 0 0 35px;
    text-align: left;
}
.section-head .eyebrow {
    justify-content: center;
}
.section-head.left .eyebrow {
    justify-content: flex-start;
}
.section-head h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    color: var(--title-color);
    margin: 0 0 15px;
    letter-spacing: -0.025em;
}
.section-dark .section-head h2 {
    color: #fff;
}
.section-head p {
    font-size: 17px;
    line-height: 1.7;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.service-style2 {
    height: 100%;
    background: #fff;
    box-shadow: 0 12px 36px rgba(7, 26, 43, 0.07);
}
.service-style2 .img-wrap {
    padding-top: 14px;
}
.service-style2 .service-img {
    height: 210px;
}
.service-style2 .service-img img {
    height: 100%;
    object-fit: cover;
}
.service-style2 .service-icon {
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 22px;
}
.service-style2 .service-content {
    min-height: 245px;
    display: flex;
    flex-direction: column;
}
.service-style2 .service-text {
    flex: 1;
}
.service-style2 .vs-btn {
    align-self: flex-start;
    border-radius: 7px;
    font-weight: 800;
}
.priority-card {
    border: 2px solid var(--theme-color);
}
.priority-card:before {
    content: "HIGH INTENT";
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 4;
    background: var(--secondary-color);
    color: var(--title-color);
    font-size: 10px;
    font-weight: 900;
    padding: 7px 10px;
    border-radius: 50px;
    letter-spacing: 0.08em;
}
.split-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 65px;
    align-items: center;
}
.split-image {
    position: relative;
}
.split-image img {
    width: 100%;
    border-radius: 24px;
}
.split-image:before {
    content: "";
    position: absolute;
    inset: 24px -18px -18px 24px;
    border: 5px solid var(--secondary-color);
    border-radius: 24px;
    z-index: -1;
}
.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 26px 0;
}
.check-list li {
    list-style: none;
    display: flex;
    gap: 10px;
    color: var(--title-color);
    font-weight: 700;
}
.check-list li:before {
    content: "✓";
    color: var(--theme-color);
    font-weight: 900;
}
.urgent-band {
    background: var(--theme-color);
    color: #fff;
    padding: 34px 0;
}
.urgent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.urgent-inner h2 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 32px;
}
.urgent-inner p {
    margin: 0;
    color: #ffe8e8;
}
.urgent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.step-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
}
.step-no {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--theme-color);
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 20px;
}
.step-card h3 {
    font-size: 22px;
}
.areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.areas span {
    padding: 11px 16px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--title-color);
    font-weight: 700;
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq-list details {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 0 22px;
}
.faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 21px 34px 21px 0;
    color: var(--title-color);
    font-weight: 800;
    position: relative;
}
.faq-list summary:after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 24px;
    color: var(--theme-color);
}
.faq-list details[open] summary:after {
    content: "−";
}
.faq-list p {
    padding: 0 0 20px;
    margin: 0;
}
.page-hero {
    min-height: 340px;
    display: flex;
    align-items: center;
    position: relative;
    background: url("../images/page-header.webp") center/cover no-repeat;
    color: #fff;
}
.page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 26, 43, 0.96), rgba(7, 26, 43, 0.62));
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(36px, 5vw, 56px);
    max-width: 900px;
    margin-bottom: 15px;
}
.breadcrumb-vmg {
    display: flex;
    gap: 9px;
    align-items: center;
    color: #dbe4ea;
}
.breadcrumb-vmg a {
    color: var(--secondary-color);
    font-weight: 800;
}
.service-layout-new {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 44px;
}
.service-main .lead {
    font-size: 20px;
    line-height: 1.7;
    color: #354652;
}
.content-image {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 20px;
    margin: 25px 0 35px;
}
.content-card {
    background: var(--smoke-color);
    border-radius: 18px;
    padding: 30px;
    margin: 28px 0;
}
.content-card h2 {
    font-size: 29px;
    margin-bottom: 18px;
}
.content-card ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.content-card li {
    list-style: none;
    display: flex;
    gap: 12px;
}
.content-card li:before {
    content: "✓";
    color: var(--theme-color);
    font-weight: 900;
}
.service-sidebar {
    position: sticky;
    top: 150px;
    align-self: start;
}
.sidebar-card {
    background: var(--title-color);
    color: #fff;
    border-radius: 18px;
    padding: 26px;
    margin-bottom: 20px;
}
.sidebar-card h3 {
    color: #fff;
    font-size: 23px;
}
.sidebar-links {
    display: grid;
    gap: 8px;
}
.sidebar-links a {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
}
.sidebar-links a:hover {
    background: var(--theme-color);
    color: #fff;
}
.sidebar-emergency {
    background: var(--theme-color);
}
.sidebar-emergency a {
    display: block;
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    margin-top: 10px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 35px;
}
.contact-info {
    background: var(--title-color);
    padding: 38px;
    border-radius: 20px;
    color: #fff;
}
.contact-info h2 {
    color: #fff;
}
.contact-info a {
    color: #fff;
}
.contact-line {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.contact-line span {
    display: block;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.contact-line strong {
    font-size: 18px;
}
.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 38px;
    box-shadow: var(--shadow);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group label {
    display: block;
    color: var(--title-color);
    font-weight: 800;
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dce3e8;
    background: #fbfcfd;
    border-radius: 9px;
    padding: 13px 14px;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(232, 17, 43, 0.09);
}
.form-group.full {
    grid-column: 1/-1;
}
.captcha-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.captcha-row img {
    height: 46px;
    border-radius: 6px;
    border: 1px solid #ddd;
}
.form-status {
    display: none;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
}
.form-status.show {
    display: block;
}
.form-status.ok {
    background: #e8f7ed;
    color: #176b35;
}
.form-status.bad {
    background: #fff0f1;
    color: #a81628;
}
.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.about-stat {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
}
.about-stat strong {
    display: block;
    color: var(--theme-color);
    font-size: 30px;
}
.legacy-note {
    background: #fff7d1;
    border-left: 4px solid var(--secondary-color);
    padding: 15px 18px;
    border-radius: 0 10px 10px 0;
}
.site-footer {
    background: #03121f;
    color: #aebac3;
    padding: 75px 0 22px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 45px;
}
.footer-logo {
    width: 180px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 22px;
}
.site-footer h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}
.site-footer a {
    display: block;
    color: #cbd4da;
    margin-bottom: 10px;
}
.site-footer a:hover {
    color: var(--secondary-color);
}
.footer-contact a {
    font-weight: 800;
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}
.mobile-fixed-cta {
    display: none;
}
.back-top {
    position: fixed;
    right: 22px;
    bottom: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: var(--title-color);
    color: #fff;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
}
.back-top.show {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(3, 18, 31, 0.72);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu__panel {
    width: min(90vw, 380px);
    height: 100%;
    background: #fff;
    margin-left: auto;
    padding: 20px;
    transform: translateX(100%);
    transition: 0.25s;
    overflow: auto;
}
.mobile-menu.open .mobile-menu__panel {
    transform: none;
}
.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.mobile-menu__head img {
    width: 165px;
}
.menu-close {
    border: 0;
    background: var(--title-color);
    color: #fff;
    border-radius: 8px;
    font-size: 28px;
    width: 44px;
    height: 44px;
}
.mobile-menu nav {
    display: grid;
    padding: 18px 0;
}
.mobile-menu nav > a,
.mobile-menu summary {
    padding: 13px 4px;
    color: var(--title-color);
    font-weight: 800;
    border-bottom: 1px solid #edf0f2;
    cursor: pointer;
}
.mobile-menu details a {
    display: block;
    padding: 10px 14px;
    color: #58646d;
    border-bottom: 1px dashed #e5e8eb;
}
.mobile-menu__actions {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}
@media (max-width: 1199px) {
    .desktop-nav {
        display: none;
    }
    .menu-open {
        display: block;
    }
    .nav-wrap {
        height: 76px;
    }
    .header-call {
        display: none;
    }
    .brand {
        width: 160px;
        flex-basis: 160px;
    }
    .nav-actions {
        margin-left: auto;
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
    .footer-grid > div:last-child {
        grid-column: 1/-1;
    }
    .hero-new__image {
        margin-left: 36%;
    }
}
@media (max-width: 767px) {
    body {
        padding-bottom: 66px;
    }
    .header-topbar {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-wrap {
        height: 68px;
    }
    .brand {
        width: 142px;
        flex-basis: 142px;
    }
    .site-header {
        top: 0;
    }
    .hero-new {
        min-height: 590px;
    }
    .hero-new:before {
        background: linear-gradient(180deg, rgba(3, 18, 29, 0.84), rgba(3, 18, 29, 0.95));
    }
    .hero-new__image {
        margin-left: 0;
        opacity: 0.48;
    }
    .hero-new__content {
        width: 100%;
        padding: 70px 0;
    }
    .hero-new h1 {
        font-size: 42px;
    }
    .hero-new p {
        font-size: 17px;
    }
    .hero-proof {
        gap: 12px;
        display: grid;
    }
    .trust-strip {
        margin-top: -30px;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-item {
        padding: 18px;
        border-bottom: 1px solid var(--border-color);
    }
    .service-grid,
    .steps-grid,
    .split-grid,
    .service-layout-new,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section-pad {
        padding: 65px 0;
    }
    .split-grid {
        gap: 35px;
    }
    .check-list {
        grid-template-columns: 1fr;
    }
    .urgent-inner {
        display: block;
    }
    .urgent-actions {
        margin-top: 20px;
    }
    .service-sidebar {
        position: static;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full {
        grid-column: auto;
    }
    .footer-grid > div:last-child {
        grid-column: auto;
    }
    .footer-bottom {
        display: block;
    }
    .footer-bottom span {
        display: block;
        margin: 5px 0;
    }
    .mobile-fixed-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 66px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        z-index: 1200;
        box-shadow: 0 -8px 25px rgba(7, 26, 43, 0.16);
    }
    .mobile-fixed-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--theme-color);
        color: #fff;
        font-weight: 900;
    }
    .mobile-fixed-cta a:last-child {
        background: #16a34a;
    }
    .mobile-fixed-cta small {
        display: block;
        font-size: 10px;
        font-weight: 700;
        opacity: 0.85;
        line-height: 1;
    }
    .cta-symbol {
        font-size: 31px;
    }
    .back-top {
        bottom: 83px;
    }
    .page-hero {
        min-height: 260px;
    }
    .page-hero h1 {
        font-size: 37px;
    }
    .contact-form,
    .contact-info {
        padding: 26px;
    }
}
@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .hero-new h1 {
        font-size: 38px;
    }
    .hero-actions {
        display: grid;
    }
    .hero-actions .vmg-btn {
        width: 100%;
    }
    .about-stat-grid {
        grid-template-columns: 1fr;
    }
    .section-head h2 {
        font-size: 33px;
    }
}


.floating_btn {

    position: fixed;

    bottom: 64px;

    right: 4px;

    width: 100px;

    height: 100px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    z-index: 1000;

}

.contact_icon {

  background-color: #0d944a;

  color: #fff;

  width: 60px;

  height: 60px;

  font-size:30px;

  border-radius: 50px;

  text-align: center;

  box-shadow: 2px 2px 3px #999;

  display: flex;

  align-items: center;

  justify-content: center;

  transform: translatey(0px);

  animation: pulse 1.5s infinite;

  box-shadow: 0 0 0 0 #258d54;

  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);

  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);

  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);

  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);

  text-decoration: none !important;

  transition: all 300ms ease-in-out;

}

@keyframes pulsing {

  to {

    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);

  }

}

@media (max-width: 768px) {
    .floating_btn {
       display: none;
    }
   
}


 
