/* =========================================================
   MAWAR ELECTRICAL SERVICES
   COMPLETE MAIN STYLESHEET
   ========================================================= */

* {
    box-sizing: border-box;
}

:root {
    --yellow: #f4b900;
    --yellow-dark: #d99d00;
    --navy: #07152e;
    --text: #171717;
    --muted: #667085;
    --border: #e7e9ee;
    --soft: #f7f8fb;
    --green: #25D366;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.65;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

h1,
h2,
h3 {
    line-height: 1.2;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .08);
}

.header-inner {
    min-height: 82px;
    max-width: 1340px;
    margin: auto;
    padding: 8px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-brand,
.brand {
    display: flex;
    align-items: center;
}

.brand img {
    display: block;
    object-fit: contain;
}

.brand-desktop img {
    width: 205px;
    height: auto;
}

.brand-mobile {
    display: none;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 700;
    white-space: nowrap;
}

.desktop-nav a,
.services-toggle {
    font-size: 15px;
    text-decoration: none;
    color: #171717;
}

.desktop-nav a:hover,
.desktop-nav a:focus,
.services-toggle:hover {
    color: var(--yellow-dark);
}

.services-menu {
    position: relative;
}

.services-toggle {
    border: 0;
    background: none;
    padding: 10px 0;
    cursor: pointer;
    font: inherit;
}

.services-dropdown {
    position: absolute;
    display: none;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    max-height: 480px;
    overflow: auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .15);
}

.services-menu:hover .services-dropdown,
.services-menu:focus-within .services-dropdown,
.services-menu.open .services-dropdown {
    display: flex;
    flex-direction: column;
}

.services-dropdown a,
.mobile-services a {
    padding: 11px 13px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.3;
}

.services-dropdown a:hover,
.mobile-services a:hover {
    background: #fff7db;
    color: #b87c00;
}

.header-call,
.mobile-call {
    background: var(--yellow);
    padding: 11px 16px !important;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 700;
}


/* =========================================================
   HAMBURGER
   ========================================================= */

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    padding: 7px;
    margin: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 29px;
    height: 3px;
    margin: 0;
    background: #171717;
    border-radius: 3px;
    transition: .25s;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.mobile-nav {
    display: none;
    max-height: calc(100vh - 72px);
    overflow: auto;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 8px 20px 18px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
}

.mobile-nav[hidden] {
    display: none;
}

.mobile-nav:not([hidden]) {
    display: block;
}

.mobile-nav > a,
.mobile-nav summary {
    display: block;
    padding: 14px 4px;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.mobile-nav details summary {
    list-style: none;
}

.mobile-nav details summary::-webkit-details-marker {
    display: none;
}

.mobile-nav details summary:after {
    content: '⌄';
    float: right;
}

.mobile-services {
    display: flex;
    flex-direction: column;
    padding: 4px 0 8px 10px;
    max-height: 420px;
    overflow: auto;
}

.mobile-call {
    display: block;
    margin-top: 8px;
    text-align: center;
}


/* =========================================================
   COMMON
   ========================================================= */

main {
    min-height: 200px;
}

.content-wrap {
    max-width: 1220px;
    margin: 0 auto;
    padding: 72px 28px;
}

.eyebrow {
    color: #b57c00;
    font-weight: 900;
    letter-spacing: 2.5px;
    margin: 0 0 12px;
    font-size: 13px;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 32px;
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.15;
    margin: 0 0 12px;
}

.section-heading p:last-child {
    color: var(--muted);
}

.primary-btn,
.secondary-btn,
.wa-btn {
    display: inline-block;
    padding: 13px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
}

.primary-btn {
    background: var(--yellow);
    color: #111;
}

.primary-btn:hover {
    background: #e3a900;
}

.secondary-btn {
    border: 2px solid var(--navy);
    color: var(--navy);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 560px;
    background:
        linear-gradient(
            90deg,
            rgba(7, 21, 46, .84),
            rgba(7, 21, 46, .18)
        ),
        url('../images/services/geyser-repair.webp') center/cover;
    display: flex;
    align-items: center;
    padding: 70px 6%;
}

.hero-overlay {
    max-width: 720px;
    background: rgba(255, 255, 255, .97);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.hero h1 {
    font-size: 48px;
    margin: 10px 0 18px;
}

.hero p {
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}


/* =========================================================
   INTRO
   ========================================================= */

.intro-section {
    padding-bottom: 40px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr;
    gap: 40px;
    font-size: 18px;
}

.highlight-box {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    display: grid;
    gap: 6px;
}

.highlight-box strong {
    margin-top: 8px;
}

.highlight-box span {
    color: var(--muted);
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    padding-top: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
}

.service-card-image {
    aspect-ratio: 1 / 1.25;
    background: #eef2f7;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 22px;
}

.card-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
    color: #b57c00;
}

.service-card h3 {
    font-size: 22px;
    margin: 8px 0 10px;
}

.service-card p {
    color: var(--muted);
    margin: 0 0 18px;
}

.service-card a {
    font-weight: 800;
    text-decoration: none;
}


/* =========================================================
   WHY
   ========================================================= */

.why-section {
    background: var(--soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-grid article {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.feature-grid span {
    font-size: 14px;
    font-weight: 900;
    color: #b57c00;
}

.feature-grid h3 {
    margin: 10px 0 8px;
}

.feature-grid p {
    margin: 0;
    color: var(--muted);
}


/* =========================================================
   AREAS
   ========================================================= */

.areas-card {
    background: var(--navy);
    color: #fff;
    border-radius: 24px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.areas-card .eyebrow {
    color: var(--yellow);
}

.areas-card p {
    color: #d9dfeb;
    max-width: 850px;
}


/* =========================================================
   GLOBAL CTA
   ========================================================= */

.global-cta {
    min-height: 440px;
    width: 100%;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .18),
            rgba(0, 0, 0, .08)
        ),
        url('../../cta/cta-image.jpeg') center/cover;
    display: flex;
    align-items: center;
    padding: 55px 5%;
}
.cta-inner {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: flex-end;
}

.cta-card {
    width: min(560px, 48%);
    background: rgba(255, 255, 255, .97);
    border: 7px solid var(--yellow);
    border-radius: 28px;
    padding: 32px 36px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
}

.cta-card h2 {
    font-size: 42px;
    margin: 12px 0 14px;
}

.cta-card p {
    color: #4c5565;
}

.cta-label,
.book-label {
    color: #b57c00;
    font-weight: 900;
    letter-spacing: 2px;
}

.book-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
}

.call-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    font-size: 30px;
    text-decoration: none;
}

.phone {
    display: block;
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #111827 0%,
            #0b1d4d 55%,
            #123c91 100%
        );
    color: #fff;
    padding: 58px 28px 20px;
    width: 100%;
}

.site-footer .footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1.25fr;
    gap: 55px;
}

.site-footer .footer-column {
    min-width: 0;
}

.site-footer .footer-column h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.site-footer .footer-title-line {
    width: 42px;
    height: 3px;
    background: var(--yellow);
    border-radius: 3px;
    margin: 0 0 21px;
}

.site-footer .footer-description {
    margin: 0;
    color: #e5e7eb;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
}

.site-footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer .footer-links li {
    margin: 0 0 13px;
    padding: 0;
}

.site-footer .footer-links li:last-child {
    margin-bottom: 0;
}

.site-footer .footer-links li a {
    display: inline-block;
    color: #f3f4f6;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    transition: .2s;
}

.site-footer .footer-links li a::before {
    content: "›";
    color: var(--yellow);
    font-size: 19px;
    font-weight: 700;
    margin-right: 8px;
}

.site-footer .footer-links li a:hover {
    color: var(--yellow);
    transform: translateX(3px);
}

.site-footer .footer-contact-row {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 14px;
    color: #f3f4f6;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.site-footer .footer-contact-row:last-child {
    margin-bottom: 0;
}

.site-footer .footer-contact-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 11px;
    margin-top: 1px;
    background: var(--yellow);
    color: #172554;
    border-radius: 5px;
}

.site-footer .footer-contact-icon svg {
    width: 17px;
    height: 17px;
    display: block;
}

.site-footer .footer-contact-row > span:last-child {
    flex: 1 1 auto;
    min-width: 0;
    color: #f3f4f6;
}

.site-footer a.footer-contact-row:hover > span:last-child {
    color: var(--yellow);
}

.site-footer .footer-bottom {
    width: 100%;
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .25);
    text-align: center;
}

.site-footer .footer-bottom p {
    margin: 0;
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
}

.site-footer .footer-bottom strong {
    color: var(--yellow);
    font-weight: 700;
}


/* =========================================================
   FLOATING BUTTONS
   ========================================================= */

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;

    width: 56px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;

    margin: 0;
    padding: 0;
}


/* COMMON */

.floating-actions > a,
.floating-actions > button {
    position: relative;

    width: 56px !important;
    height: 56px !important;

    min-width: 56px !important;
    max-width: 56px !important;

    min-height: 56px !important;
    max-height: 56px !important;

    flex: 0 0 56px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    outline: 0 !important;

    border-radius: 50% !important;

    box-sizing: border-box !important;

    text-decoration: none !important;

    overflow: hidden !important;

    line-height: 1 !important;

    cursor: pointer;

    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;

    box-shadow: 0 5px 16px rgba(0, 0, 0, .20) !important;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.floating-actions > a:hover,
.floating-actions > button:hover {
    transform: scale(1.06);
    box-shadow: 0 7px 20px rgba(0, 0, 0, .24) !important;
}


/* CALL */

.floating-actions .float-call {
    background: #f4b900 !important;
    background-color: #f4b900 !important;
    color: #111 !important;
}


/* =========================================================
   WHATSAPP - FINAL
   ========================================================= */

.floating-actions .float-wa {
    background: #25D366 !important;
    background-color: #25D366 !important;

    color: #fff !important;

    border: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;

    isolation: isolate;
}


/* Darker green on hover */

.floating-actions .float-wa:hover {
    background: #20bd5a !important;
    background-color: #20bd5a !important;
}


/* HIDE OLD SPEECH BUBBLE SVG */

.floating-actions .float-wa svg {
    display: none !important;
}


/* PROPER WHITE WHATSAPP LOGO */

.floating-actions .float-wa::after {
    content: "";

    display: block;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M16 3.1a12.9 12.9 0 0 0-11.1 20L3.2 28.8l5.9-1.7A12.9 12.9 0 1 0 16 3.1Zm0 23.2c-2.1 0-4.1-.6-5.8-1.7l-.4-.2-3.5 1 1-3.4-.3-.4A10.5 10.5 0 1 1 16 26.3Zm5.8-7.9c-.3-.2-1.8-.9-2.1-1-.3-.1-.5-.2-.7.2-.2.3-.8 1-.9 1.2-.2.2-.3.2-.6.1-1.6-.8-2.7-1.5-3.8-3.4-.3-.5.3-.5.8-1.6.1-.2.1-.4 0-.6-.1-.2-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.6.1-.9.4-.3.3-1.2 1.1-1.2 2.7s1.2 3.1 1.4 3.3c.2.2 2.4 3.7 5.9 5.2.8.4 1.4.6 1.9.8.8.3 1.5.3 2.1.2.6-.1 1.8-.7 2.1-1.4.3-.7.3-1.3.2-1.4 0-.2-.2-.3-.5-.4Z'/%3E%3C/svg%3E");
}


/* =========================================================
   BLUE BACK-TO-TOP - COMPLETELY REMOVED
   ========================================================= */

.floating-actions .float-top {
    display: none !important;
}


/* CALL ICON */

.floating-actions .float-call svg {
    display: block !important;

    width: 27px !important;
    height: 27px !important;

    min-width: 27px !important;
    min-height: 27px !important;

    max-width: 27px !important;
    max-height: 27px !important;

    color: #111 !important;
    fill: currentColor !important;
    stroke: none !important;
}


/* =========================================================
   SERVICE DETAIL
   ========================================================= */

.service-detail {
    background: #fff;
}

.service-hero {
    max-width: 1240px;
    margin: auto;
    padding: 70px 28px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 55px;
}

.service-hero h1 {
    font-size: 48px;
    margin: 10px 0 18px;
}

.service-hero > img {
    width: 100%;
    aspect-ratio: 1 / 1.25;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
    background: #eef2f7;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 40px;
}

.detail-main {
    font-size: 18px;
}

.detail-main h2 {
    margin-top: 36px;
    font-size: 30px;
}

.steps {
    padding-left: 22px;
}

.steps li {
    padding: 9px 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.side-card,
.info-panel,
.contact-card,
.contact-form-wrap {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    background: #fff;
}

.side-card {
    height: max-content;
    background: var(--soft);
}

.side-card h3 {
    margin-top: 0;
}

.full {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.side-card ul {
    padding-left: 20px;
}


/* =========================================================
   STANDARD PAGE
   ========================================================= */

.standard-page {
    background: #fff;
}

.page-hero {
    background: var(--soft);
    padding: 70px max(28px, calc((100% - 1160px) / 2));
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: 48px;
    max-width: 900px;
    margin: 0 0 15px;
}

.page-hero p:not(.eyebrow) {
    max-width: 850px;
    color: var(--muted);
    font-size: 18px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 50px;
}

.two-col article {
    font-size: 18px;
}

.info-panel {
    height: max-content;
    background: var(--soft);
}

.info-panel a {
    color: #8b6200;
    font-weight: 700;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.contact-cards {
    display: grid;
    gap: 16px;
}

.contact-card span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #b57c00;
}

.contact-card h2 {
    margin: 7px 0;
    font-size: 25px;
}

.contact-card p {
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font: inherit;
    border: 1px solid #d7dbe4;
    border-radius: 9px;
    padding: 11px;
    background: #fff;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-grid figure {
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.gallery-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
}

.gallery-grid figcaption {
    padding: 15px;
    font-weight: 800;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.quote-grid article {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    font-size: 18px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 15px;
    }

    .header-inner {
        padding: 8px 18px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid,
    .two-col,
    .contact-grid,
    .detail-grid,
    .service-hero {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cta-card {
        width: min(620px, 75%);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px 35px;
    }

    .site-footer .footer-column:first-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .brand-desktop,
    .desktop-nav,
    .header-call {
        display: none;
    }

    .brand-mobile {
        display: flex;
    }

    .header-inner {
        min-height: 68px;
        padding: 8px 16px;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
    }

    .hero {
        min-height: 520px;
        padding: 34px 16px;
        background-position: center;
    }

    .hero-overlay {
        padding: 26px;
        border-radius: 18px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .content-wrap {
        padding: 48px 18px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-image {
        aspect-ratio: 1.5 / 1;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .areas-card {
        padding: 28px;
        display: block;
    }

    .areas-card .primary-btn {
        margin-top: 10px;
    }

    .cta-card {
        width: 100%;
        padding: 25px;
        border-width: 5px;
    }

    .global-cta {
        min-height: 500px;
        padding: 28px 16px;
    }

    .cta-card h2 {
        font-size: 34px;
    }

    .phone {
        font-size: 23px;
    }


    /* FOOTER MOBILE */

    .site-footer {
        padding: 45px 20px 20px;
    }

    .site-footer .footer-inner {
        display: flex;
        flex-direction: column;
        gap: 34px;
    }

    .site-footer .footer-column:first-child {
        grid-column: auto;
    }

    .site-footer .footer-column {
        width: 100%;
    }

    .site-footer .footer-column h3 {
        font-size: 18px;
    }

    .site-footer .footer-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .site-footer .footer-links li {
        margin-bottom: 12px;
    }

    .site-footer .footer-links li a {
        font-size: 14px;
    }

    .site-footer .footer-contact-row {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .site-footer .footer-contact-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        margin-right: 10px;
    }

    .site-footer .footer-bottom {
        margin-top: 38px;
        padding-top: 18px;
    }

    .site-footer .footer-bottom p {
        font-size: 13px;
    }


    /* FLOATING MOBILE */

    .floating-actions {
        right: 14px;
        bottom: 14px;
        width: 54px;
        gap: 11px;
    }

    .floating-actions > a,
    .floating-actions > button {
        width: 54px !important;
        height: 54px !important;

        min-width: 54px !important;
        max-width: 54px !important;

        min-height: 54px !important;
        max-height: 54px !important;

        flex-basis: 54px !important;

        border-radius: 50% !important;
    }

    .floating-actions .float-wa::after {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .service-hero {
        padding: 42px 18px;
        gap: 28px;
    }

    .service-hero h1,
    .page-hero h1 {
        font-size: 35px;
    }

    .detail-main {
        font-size: 17px;
    }

    .service-sidebar {
        display: flex;
    }

    .page-hero {
        padding: 48px 18px;
    }

    .gallery-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }

    .mobile-call {
        margin-top: 8px;
        text-align: center;
    }

    .intro-grid {
        font-size: 17px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .header-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .floating-actions {
        right: 10px;
        bottom: 10px;
        width: 50px;
        gap: 9px;
    }

    .floating-actions > a,
    .floating-actions > button {
        width: 50px !important;
        height: 50px !important;

        min-width: 50px !important;
        max-width: 50px !important;

        min-height: 50px !important;
        max-height: 50px !important;

        flex-basis: 50px !important;
    }

    .floating-actions .float-wa::after {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
    }

    .floating-actions .float-call svg {
        width: 24px !important;
        height: 24px !important;
    }
}