.slider-btn {
    margin-top: 50px;
}

.top-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.top-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    padding: 0 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.call-btn {
    background: #ffd426;
    color: #111;
}

.whatsapp-btn {
    background: #191919;
    color: #fff;
}

.keyword-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keyword-buttons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 575px) {
    .top-buttons {
        flex-wrap: wrap;
    }

    .top-buttons .btn {
        min-height: 50px;
        padding: 0 18px;
    }

    .keyword-buttons {
        gap: 8px;
    }

    .keyword-buttons span {
        font-size: 12px;
        padding: 8px 11px;
    }
}




/* =========================================================

   ELECTRICAL PROBLEMS SECTION

========================================================= */
 
.electrical-problems-section {

    width: 100%;

    background: #fff8e3;

    padding: clamp(70px, 7vw, 110px) 20px;

}
 
.electrical-problems-container {

    width: min(1188px, 100%);

    margin: 0 auto;

}
 
 
/* =========================================================

   HEADER

========================================================= */
 
.electrical-problems-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 34px;

}
 
.electrical-problems-heading {

    min-width: 0;

}
 
.electrical-problems-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;
 
    margin-bottom: 16px;
 
    font-size: 12px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: 0.08em;

    color: #d51920;

}
 
.electrical-problems-eyebrow i {

    width: 28px;

    height: 4px;
 
    display: block;
 
    border-radius: 10px;

    background: #ffd32a;

}
 
.electrical-problems-header h2 {

    font-size: 48px;
    

}
 
 
/* =========================================================

   VIEW ALL BUTTON

========================================================= */
 
.electrical-problems-btn {

    flex: 0 0 auto;
 
    min-height: 56px;

    padding: 0 25px;
 
    display: inline-flex;

    align-items: center;

    justify-content: center;
 
    border-radius: 12px;
 
    background: #171717;

    color: #fff;
 
    font-size: 15px;

    font-weight: 800;
 
    text-decoration: none;
 
    white-space: nowrap;
 
    transition:

        transform 0.2s ease,

        background 0.2s ease;

}
 
.electrical-problems-btn:hover {

    background: #d51920;

    transform: translateY(-2px);

}
 
 
/* =========================================================

   CARD GRID

========================================================= */
 
.electrical-problems-grid {

    display: grid;
 
    grid-template-columns: repeat(3, minmax(0, 1fr));
 
    gap: 18px;

}
 
 
/* =========================================================

   CARD

========================================================= */
 
.electrical-problem-card {

    min-height: 176px;
 
    display: flex;

    flex-direction: column;

    align-items: flex-start;
 
    padding: 25px 24px;
 
    background: #fff;
 
    border: 1px solid #eadfd7;

    border-radius: 18px;
 
    text-decoration: none;
 
    box-shadow: 0 8px 24px rgba(30, 20, 10, 0.04);
 
    transition:

        transform 0.22s ease,

        border-color 0.22s ease,

        box-shadow 0.22s ease;

}
 
.electrical-problem-card:hover {

    transform: translateY(-4px);
 
    border-color: #ffd32a;
 
    box-shadow: 0 16px 36px rgba(40, 25, 10, 0.09);

}
 
 
/* =========================================================

   TAG

========================================================= */
 
.electrical-problem-tag {

    display: inline-flex;

    align-items: center;

    justify-content: center;
 
    min-height: 27px;

    padding: 0 11px;
 
    border-radius: 999px;
 
    background: #fff2b8;

    color: #c5161c;
 
    font-size: 10px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: 0.04em;

}
 
 
/* =========================================================

   CARD TITLE

========================================================= */
 
.electrical-problem-card h3 {

    margin: 14px 0 7px;
 
    font-size: clamp(19px, 1.7vw, 22px);

    line-height: 1.2;

    font-weight: 900;
 
    color: #211f1d;

}
 
 
/* =========================================================

   CARD DESCRIPTION

========================================================= */
 
.electrical-problem-card p {

    margin: 0;
 
    max-width: 430px;
 
    font-size: 14px;

    line-height: 1.6;
 
    color: #756b64;

}
 
 
/* =========================================================

   TABLET

========================================================= */
 
@media (max-width: 1024px) {
 
    .electrical-problems-section {

        padding: 75px 20px;

    }
 
    .electrical-problems-header {

        align-items: flex-start;

    }
 
    .electrical-problems-header h2 {

        font-size: clamp(32px, 4.5vw, 44px);

    }
 
    .electrical-problems-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 16px;

    }
 
    .electrical-problem-card {

        min-height: 170px;

    }

}
 
 
/* =========================================================

   MOBILE

========================================================= */
 
@media (max-width: 700px) {
 
    .electrical-problems-section {

        padding: 60px 16px;

    }
 
    .electrical-problems-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 22px;

        margin-bottom: 28px;

    }
 
    .electrical-problems-eyebrow {

        margin-bottom: 13px;

        font-size: 10px;

    }
 
    .electrical-problems-eyebrow i {

        width: 24px;

        height: 3px;

    }
 
    .electrical-problems-header h2 {

        font-size: clamp(30px, 8vw, 38px);

        line-height: 1.06;

    }
 
    .electrical-problems-btn {

        min-height: 50px;

        padding: 0 20px;

        font-size: 14px;

    }
 
    .electrical-problems-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }
 
    .electrical-problem-card {

        min-height: auto;

        padding: 22px 20px;

    }
 
    .electrical-problem-card h3 {

        font-size: 20px;

    }
 
    .electrical-problem-card p {

        font-size: 14px;

    }

}
 
 
/* =========================================================

   SMALL MOBILE

========================================================= */
 
@media (max-width: 420px) {
 
    .electrical-problems-section {

        padding: 48px 14px;

    }
 
    .electrical-problems-header h2 {

        font-size: 29px;

    }
 
    .electrical-problems-btn {

        width: 100%;

    }
 
    .electrical-problem-card {

        padding: 20px 18px;

        border-radius: 15px;

    }

}
 
 
/* =========================================================

   REDUCED MOTION

========================================================= */
 
@media (prefers-reduced-motion: reduce) {
 
    .electrical-problem-card,

    .electrical-problems-btn {

        transition: none;

    }
 
}
 





    
        /* =========================================================
   QUICK ELECTRICAL ENQUIRY SECTION
========================================================= */

.electric-quick-enquiry {
    width: 100%;
    background: #ffffff;
    padding: 90px 20px;
    overflow: hidden;
}


.electric-quick-enquiry__container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================================================
   MAIN TWO-COLUMN LAYOUT
========================================================= */

.electric-quick-enquiry__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 545px);
    gap: 58px;
    align-items: center;
}

.electric-quick-enquiry__content {
    min-width: 0;
}

.electric-quick-enquiry__form-wrap {
    width: 100%;
    min-width: 0;
}


/* =========================================================
   EYEBROW
========================================================= */

.electric-quick-enquiry__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: #d51920;

    font-size: 12px;
    line-height: 1;
    font-weight: 900;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.electric-quick-enquiry__eyebrow span {
    width: 28px;
    height: 4px;

    display: block;

    border-radius: 999px;

    background: #ffd32a;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.electric-quick-enquiry__content h2 {

    font-size: 48px;
}

.electric-quick-enquiry__intro {
    max-width: 650px;

    margin: 0 0 28px;

    color: #655c56;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   ISSUE CHIPS
========================================================= */

.electric-issue-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;

    width: 100%;
    margin-bottom: 28px;
}

.electric-issue-chip {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 10px;

    background: #fffaf0;

    border: 1px solid #eadfd7;
    border-radius: 15px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.electric-issue-chip:hover {
    transform: translateY(-3px);

    border-color: #ffd32a;

    box-shadow: 0 12px 25px rgba(40, 25, 10, 0.08);
}


/* =========================================================
   ELECTRICAL ICON BOX
========================================================= */

.electric-issue-chip__icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #fff2b8;
    color: #d51920;

    font-size: 18px;
}

.electric-issue-chip__icon i {
    display: block;

    line-height: 1;

    animation: electricPulse 2s ease-in-out infinite;
}

.electric-issue-chip:nth-child(2)
.electric-issue-chip__icon i {
    animation-delay: 0.3s;
}

.electric-issue-chip:nth-child(3)
.electric-issue-chip__icon i {
    animation-delay: 0.6s;
}


/* =========================================================
   ISSUE TEXT
========================================================= */

.electric-issue-chip__text {
    min-width: 0;
}

.electric-issue-chip__text strong,
.electric-issue-chip__text small {
    display: block;
}

.electric-issue-chip__text strong {
    margin-bottom: 3px;

    color: #211f1d;

    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
}

.electric-issue-chip__text small {
    color: #756b64;

    font-size: 10px;
    line-height: 1.3;
}


/* =========================================================
   CALL + WHATSAPP BUTTONS
========================================================= */

.electric-contact-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    width: 100%;
    max-width: 580px;
}

.electric-contact-card {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 16px;

    border-radius: 15px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.electric-contact-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   CALL CARD
========================================================= */

.electric-contact-card--call {
    background: #1b1a19;
    color: #ffffff;
}

.electric-contact-card--call
.electric-contact-card__icon {
    background: #ffd32a;
    color: #171717;
}


/* =========================================================
   WHATSAPP CARD
========================================================= */

.electric-contact-card--whatsapp {
    background: #17833f;
    color: #ffffff;
}

.electric-contact-card--whatsapp
.electric-contact-card__icon {
    background: #ffffff;
    color: #17833f;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.electric-contact-card__icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    font-size: 17px;
}

.electric-contact-card__icon i {
    line-height: 1;
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.electric-contact-card__content {
    min-width: 0;
}

.electric-contact-card__content small,
.electric-contact-card__content strong {
    display: block;
}

.electric-contact-card__content small {
    margin-bottom: 4px;

    color: #d7cec8;

    font-size: 9px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: 0.08em;
}

.electric-contact-card__content strong {
    color: #ffffff;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;

    white-space: nowrap;
}


/* =========================================================
   FORM CARD
========================================================= */

.electric-form-card {
    width: 100%;

    padding: 32px 28px 28px;

    background: #ffffff;

    border: 1px solid #eadfd7;
    border-top: 6px solid #d71920;

    border-radius: 20px;

    box-shadow: 0 18px 50px rgba(44, 26, 16, 0.10);
}


/* =========================================================
   FORM BADGE
========================================================= */

.electric-form-badge {
    display: inline-flex;
    align-items: center;

    margin-bottom: 15px;

    padding: 8px 12px;

    border-radius: 999px;

    background: #fff2b8;
    color: #a61419;

    font-size: 10px;
    line-height: 1;
    font-weight: 900;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* =========================================================
   FORM HEADING
========================================================= */

.electric-form-card h3 {
    margin: 0 0 18px;

    

    font-size: 27px;
    line-height: 1.1;
    font-weight: 900;
}

.electric-form-note {
    margin: 0 0 22px;

    color: #756b64;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   FORM
========================================================= */

.electric-enquiry-form {
    display: grid;
    gap: 15px;
}

.electric-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.electric-form-field {
    min-width: 0;

    display: grid;
    gap: 7px;
}

.electric-form-field label {
    color: #211f1d;

    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
}


/* =========================================================
   INPUTS / SELECT / TEXTAREA
========================================================= */

.electric-form-field input,
.electric-form-field select,
.electric-form-field textarea {
    width: 100%;
    min-width: 0;

    border: 1px solid #d9cec6;
    border-radius: 11px;

    background: #ffffff;
    color: #211f1d;

    font-size: 14px;
    line-height: 1.4;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.electric-form-field input,
.electric-form-field select {
    height: 47px;
    padding: 0 13px;
}

.electric-form-field textarea {
    min-height: 108px;
    padding: 13px;

    resize: vertical;
}

.electric-form-field input::placeholder,
.electric-form-field textarea::placeholder {
    color: #8f8781;
}

.electric-form-field input:focus,
.electric-form-field select:focus,
.electric-form-field textarea:focus {
    outline: none;

    border-color: #d51920;

    box-shadow: 0 0 0 3px rgba(213, 25, 32, 0.10);
}


/* =========================================================
   FILE INPUT
========================================================= */

.electric-file-note {
    margin-top: -3px;

    color: #8b817b;

    font-size: 12px;
}

.electric-form-field input[type="file"] {
    height: auto;
    padding: 10px;

    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.electric-submit-btn {
    width: 100%;
    min-height: 56px;

    margin-top: 2px;

    border: 0;
    border-radius: 12px;

    background: #dd1720;
    color: #ffffff;

    font-size: 15px;
    line-height: 1;
    font-weight: 900;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.electric-submit-btn:hover {
    background: #bd1118;

    transform: translateY(-1px);

    box-shadow: 0 10px 20px rgba(189, 17, 24, 0.18);
}

.electric-submit-btn:active {
    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .electric-quick-enquiry {
        padding: 75px 20px;
    }

    .electric-quick-enquiry__grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .electric-quick-enquiry__content {
        max-width: 800px;
    }

    .electric-quick-enquiry__form-wrap {
        width: min(700px, 100%);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .electric-quick-enquiry {
        padding: 60px 16px;
    }

    .electric-quick-enquiry__grid {
        gap: 32px;
    }

    .electric-quick-enquiry__eyebrow {
        font-size: 10px;
        gap: 8px;
    }

    .electric-quick-enquiry__eyebrow span {
        width: 24px;
        height: 3px;
    }

    .electric-quick-enquiry__content h2 {
        font-size: clamp(38px, 10vw, 50px);
        line-height: 1;
    }

    .desktop-break {
        display: none;
    }

    .electric-quick-enquiry__intro {
        font-size: 16px;
        line-height: 1.65;
    }


    /* Issue cards */
    .electric-issue-chips {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .electric-issue-chip {
        padding: 10px;
    }

    .electric-issue-chip__icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }


    /* Contact buttons */
    .electric-contact-buttons {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .electric-contact-card {
        padding: 14px;
    }

    .electric-contact-card__icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .electric-contact-card__content strong {
        white-space: normal;
    }


    /* Form */
    .electric-form-card {
        padding: 27px 20px 22px;

        border-radius: 17px;
    }

    .electric-form-card h3 {
        font-size: 25px;
    }

    .electric-form-row {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .electric-quick-enquiry {
        padding: 48px 14px;
    }

    .electric-quick-enquiry__content h2 {
        font-size: 37px;
        line-height: 1.02;
    }

    .electric-quick-enquiry__intro {
        font-size: 15px;
        line-height: 1.65;
    }


    .electric-issue-chip {
        padding: 9px 10px;
        border-radius: 13px;
    }

    .electric-issue-chip__icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
        font-size: 17px;
    }

    .electric-issue-chip__text strong {
        font-size: 13px;
    }

    .electric-issue-chip__text small {
        font-size: 10px;
    }


    .electric-contact-card {
        padding: 13px 14px;
        border-radius: 13px;
    }


    .electric-form-card {
        padding: 24px 17px 20px;
    }

    .electric-form-card h3 {
        font-size: 23px;
    }

    .electric-form-field input,
    .electric-form-field select {
        height: 49px;
    }

    .electric-form-field textarea {
        min-height: 115px;
    }

    .electric-submit-btn {
        min-height: 53px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .electric-quick-enquiry {
        padding: 42px 12px;
    }

    .electric-quick-enquiry__content h2 {
        font-size: 31px;
    }

    .electric-quick-enquiry__intro {
        font-size: 14px;
    }

    .electric-form-card {
        padding: 21px 14px 18px;
    }

    .electric-form-card h3 {
        font-size: 22px;
    }

    .electric-issue-chip__icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .electric-contact-card__icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .electric-contact-card__content strong {
        font-size: 14px;
    }
}


/* =========================================================
   ELECTRICAL ICON ANIMATION
========================================================= */

@keyframes electricPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.75;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .electric-issue-chip,
    .electric-contact-card,
    .electric-submit-btn {
        transition: none;
    }

    .electric-issue-chip__icon i {
        animation: none;
    }
}




.quick-connect {

    position: fixed;

    right: 22px;

    bottom: 24px;

    z-index: 75;

    display: grid;

    gap: 10px

}
 
.quick-connect__item {

    appearance: none;

    border: 0;

    padding: 0;

    background: transparent;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;

    color: #fff;

    cursor: pointer

}
 
.quick-connect__icon {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #1b1918;

    box-shadow: 0 12px 30px rgba(0,0,0,.22);

    border: 2px solid rgba(255,255,255,.85)

}
 
.quick-connect__icon .ui-icon {

    width: 22px;

    height: 22px

}
 
.quick-connect__label {

    order: -1;

    max-width: 0;

    overflow: hidden;

    white-space: nowrap;

    opacity: 0;

    transform: translateX(8px);

    background: #1b1918;

    border-radius: 999px;

    padding: 9px 0;

    font-size: 12px;

    font-weight: 900;

    box-shadow: 0 9px 25px rgba(0,0,0,.16);

    transition: .2s

}
 
.quick-connect__item:hover .quick-connect__label,.quick-connect__item:focus-visible .quick-connect__label {

    max-width: 120px;

    padding: 9px 13px;

    opacity: 1;

    transform: none

}
 
.quick-connect__item--call .quick-connect__icon {

    background: #ffd32a;

    color: #171717

}
 
.quick-connect__item--wa .quick-connect__icon {

    background: #22c55e;

    color: #071f0f

}
 
.quick-connect__item--enquire .quick-connect__icon {

    background: #d51920;

    color: #fff

}
 
.quick-connect__item--enquire .quick-connect__label {

    color: #fff;

    background: #d51920

}
 
@media (max-width: 640px) {

    .quick-connect {

        display: none;

    }

}

@media (max-width: 980px) {

    .quick-connect {

        bottom: 20px;

    }

}
 /* =========================================
   MOBILE BOTTOM CONTACT DOCK
   Scoped only to .mobile-dock
========================================= */

.mobile-dock {
    display: none;
}

/* Buttons / links */
.mobile-dock a,
.mobile-dock button {
    box-sizing: border-box;
    border: 0;
    border-radius: 9px;
    min-height: 50px;
    padding: 8px 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    text-align: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;

    cursor: pointer;
    text-decoration: none;

    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s ease, filter 0.15s ease;
}

/* Call */
.mobile-dock a:first-child {
    background: #ffd32a;
    color: #171717;
}

/* WhatsApp */
.mobile-dock a:nth-child(2) {
    background: #22c55e;
    color: #ffffff;
}

/* Optional button if you use one later */
.mobile-dock button {
    background: #d51920;
    color: #ffffff;
}

/* Icons - scoped to mobile dock only */
.mobile-dock .ui-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

/* Text */
.mobile-dock span {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

/* Small press feedback */
.mobile-dock a:active,
.mobile-dock button:active {
    transform: scale(0.98);
}


/* =========================================
   MOBILE ONLY
========================================= */

@media (max-width: 640px) {

    .mobile-dock {
        position: fixed;
        display: grid;
        grid-template-columns: 1fr 1fr;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 9999;

        background: #ffffff;

        padding:
            6px
            8px
            calc(6px + env(safe-area-inset-bottom));

        gap: 6px;

        box-shadow: 0 -3px 14px rgba(0, 0, 0, 0.12);
    }

    .mobile-dock a,
    .mobile-dock button {
        display: flex !important;

        min-height: 52px;
        height: 52px;

        padding: 7px 6px !important;

        flex-direction: column;
        justify-content: center;

        border-radius: 9px !important;
        line-height: 1;
    }

    .mobile-dock .ui-icon {
        width: 18px;
        height: 18px;
    }

    .mobile-dock span {
        font-size: 12px;
        line-height: 1;
        margin-top: 2px;
    }

    /*
       Prevent fixed CTA from covering the last
       content of the page.
    */
    body {
        padding-bottom: 70px;
    }
}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 360px) {

    .mobile-dock {
        padding-left: 6px;
        padding-right: 6px;
        gap: 5px;
    }

    .mobile-dock a,
    .mobile-dock button {
        min-height: 50px;
        height: 50px;
    }

    .mobile-dock span {
        font-size: 11px;
    }
}
 


/* =========================================================

   QUICK ENQUIRY DRAWER

========================================================= */
 
.enquiry-drawer {

    position: fixed;

    inset: 0;
 
    z-index: 100;
 
    display: none;

    justify-content: flex-end;
 
    background: rgba(0, 0, 0, 0.55);
 
    overflow: hidden;

}
 
.enquiry-drawer.is-open {

    display: flex;

}
 
 
/* =========================================================

   DRAWER PANEL

========================================================= */
 
.drawer-panel {

    width: min(520px, 100%);

    height: 100%;
 
    overflow-y: auto;

    overscroll-behavior: contain;
 
    background: #ffffff;
 
    padding: 36px;
 
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);

}
 
 
/* =========================================================

   DRAWER HEADER

========================================================= */
 
.drawer-header {

    display: flex;

    align-items: flex-start;
 
    gap: 18px;
 
    margin-bottom: 18px;

}
 
.drawer-header > div {

    margin-right: auto;

    min-width: 0;

}
 
.drawer-kicker {

    display: block;
 
    margin-bottom: 7px;
 
    color: #d51920;
 
    font-size: 10px;

    line-height: 1;

    font-weight: 950;
 
    letter-spacing: 0.12em;

    text-transform: uppercase;

}
 
.drawer-header h2 {

    margin: 3px 0 0;
 
    color: #211f1d;
 
    font-size: 30px;

    line-height: 1.05;

    font-weight: 900;

}
 
 
/* =========================================================

   CLOSE BUTTON

========================================================= */
 
.drawer-close {

    width: 44px;

    height: 44px;
 
    flex: 0 0 44px;
 
    display: grid;

    place-items: center;
 
    border: 1px solid #eadfd7;

    border-radius: 12px;
 
    background: #ffffff;

    color: #1d1b1a;
 
    cursor: pointer;
 
    transition:

        background 0.2s ease,

        border-color 0.2s ease,

        transform 0.2s ease;

}
 
.drawer-close:hover {

    background: #f7f3ef;

    border-color: #d51920;
 
    transform: rotate(2deg);

}
 
.drawer-close .ui-icon {

    width: 20px;

    height: 20px;

}
 
 
/* =========================================================

   DRAWER DESCRIPTION

========================================================= */
 
.enquiry-drawer > .drawer-panel > p {

    margin: 0 0 24px;
 
    color: #756b64;
 
    font-size: 14px;

    line-height: 1.6;

}
 
 
/* =========================================================

   FORM

========================================================= */
 
.lead-form {

    display: grid;

    gap: 14px;

}
 
.lead-form--compact {

    gap: 15px;

}
 
 
/* =========================================================

   TWO COLUMN FIELDS

========================================================= */
 
.field-grid {

    display: grid;
 
    grid-template-columns: 1fr 1fr;
 
    gap: 12px;

}
 
 
/* =========================================================

   LABELS

========================================================= */
 
.lead-form label {

    min-width: 0;
 
    display: grid;
 
    gap: 7px;
 
    color: #211f1d;
 
    font-size: 13px;

    line-height: 1.2;

    font-weight: 800;

}
 
 
/* =========================================================

   INPUT / SELECT / TEXTAREA

========================================================= */
 
.lead-form input,

.lead-form textarea,

.lead-form select {

    width: 100%;

    min-width: 0;
 
    border: 1px solid #d9cec6;

    border-radius: 10px;
 
    padding: 12px;
 
    background: #ffffff;

    color: #1d1b1a;
 
    font: inherit;

    font-size: 14px;
 
    transition:

        border-color 0.2s ease,

        box-shadow 0.2s ease;

}
 
.lead-form input,

.lead-form select {

    height: 47px;

}
 
.lead-form textarea {

    min-height: 100px;
 
    resize: vertical;

}
 
.lead-form input::placeholder,

.lead-form textarea::placeholder {

    color: #8a817a;

}
 
.lead-form input:focus,

.lead-form textarea:focus,

.lead-form select:focus {

    outline: none;
 
    border-color: #d51920;
 
    box-shadow: 0 0 0 3px rgba(213, 25, 32, 0.10);

}
 
 
/* =========================================================

   HIDDEN HONEYPOT

========================================================= */
 
.hp {

    position: absolute !important;
 
    left: -10000px !important;
 
    width: 1px !important;

    height: 1px !important;
 
    opacity: 0 !important;

}
 
 
/* =========================================================

   MUTED TEXT

========================================================= */
 
.muted {

    color: #8a817a;
 
    font-size: 12px;

    font-weight: 500;

}
 
 
/* =========================================================

   FILE INPUT

========================================================= */
 
.lead-form input[type="file"] {

    height: auto;
 
    padding: 10px;
 
    cursor: pointer;

}
 
 
/* =========================================================

   RED BUTTON

========================================================= */
 
.btn {

    display: inline-flex;
 
    align-items: center;

    justify-content: center;
 
    min-height: 52px;
 
    padding: 13px 22px;
 
    border: 2px solid transparent;

    border-radius: 12px;
 
    font: inherit;

    font-weight: 900;
 
    cursor: pointer;
 
    text-decoration: none;
 
    transition:

        background 0.2s ease,

        transform 0.2s ease,

        box-shadow 0.2s ease;

}
 
.btn-red {

    width: 100%;
 
    background: #d51920;

    color: #ffffff;

}
 
.btn-red:hover {

    background: #b90f15;
 
    transform: translateY(-1px);
 
    box-shadow: 0 10px 25px rgba(213, 25, 32, 0.18);

}
 
 
/* =========================================================

   BODY LOCK

   Add/remove this class with JS when drawer opens.

========================================================= */
 
body.drawer-locked {

    overflow: hidden;

}
 
 
/* =========================================================

   MOBILE

========================================================= */
 
@media (max-width: 640px) {
 
    .enquiry-drawer {

        align-items: flex-end;

    }
 
    .drawer-panel {

        width: 100%;
 
        height: min(92dvh, 760px);
 
        padding: 22px 18px 90px;
 
        border-radius: 22px 22px 0 0;
 
        box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.18);

    }
 
    .drawer-header {

        gap: 12px;
 
        margin-bottom: 16px;

    }
 
    .drawer-header h2 {

        font-size: 26px;

    }
 
    .drawer-close {

        width: 40px;

        height: 40px;
 
        flex-basis: 40px;

    }
 
    .field-grid {

        grid-template-columns: 1fr;
 
        gap: 14px;

    }
 
    .lead-form {

        gap: 13px;

    }
 
    .lead-form input,

    .lead-form select {

        height: 49px;

    }
 
    .lead-form textarea {

        min-height: 115px;

    }
 
    .btn-red {

        min-height: 54px;

    }

}
 
 
/* =========================================================

   SMALL MOBILE

========================================================= */
 
@media (max-width: 380px) {
 
    .drawer-panel {

        padding: 20px 15px 85px;

    }
 
    .drawer-header h2 {

        font-size: 24px;

    }
 
    .drawer-kicker {

        font-size: 9px;

    }
 
    .enquiry-drawer > .drawer-panel > p {

        font-size: 13px;

    }

}
 
 
/* =========================================================

   REDUCED MOTION

========================================================= */
 
@media (prefers-reduced-motion: reduce) {
 
    .drawer-close,

    .btn,

    .lead-form input,

    .lead-form textarea,

    .lead-form select {

        transition: none;

    }

}
 


.keyword-box {
    width: 100%;
    
    padding: 14px 1px;
   
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.keyword-box span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
}

/* Mobile */
@media (max-width: 576px) {
    .keyword-box {
        gap: 8px;
        padding: 12px 8px;
    }

    .keyword-box span {
        min-height: 36px;
        padding: 0 13px;
        font-size: 12px;
    }
}




/* =========================================================
   ELECTRICAL HELP SECTION
========================================================= */

.electric-help-section {
    width: 100%;
    background: #fff8e5;
    padding: 65px;
    overflow: hidden;
}

.electric-help-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 48px;
}

.electric-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.electric-help-left {
    width: 100%;
    padding: 0;
}

.electric-help-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #e11920;
    margin-bottom: 22px;
}

.electric-help-eyebrow span {
    display: inline-block;
    width: 27px;
    height: 4px;
    border-radius: 10px;
    background: #ffc91d;
}

.electric-help-left > h2 {
    margin: 0 0 36px 0;

    font-size: 48px;
    line-height: 1.08;
    
    letter-spacing: -1.5px;

   
}


/* =========================================================
   STEPS
========================================================= */

.electric-step {
    display: flex;
    align-items: flex-start;

    width: 100%;
    padding: 17px 0 20px;

    border-bottom: 1px solid #eadfca;
}

.electric-step-number {
    flex: 0 0 33px;

    width: 33px;
    height: 33px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 13px;
    margin-top: 0;

    border-radius: 50%;

    background: #e11920;
    color: #fff;

    font-size: 15px;
    font-weight: 800;
}

.electric-step-content {
    flex: 1;
}

.electric-step-content h3 {
    margin: 2px 0 11px;

    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;

    color: #080808;
}

.electric-step-content p {
    margin: 0;

    max-width: 510px;

    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;

    color: #6e6257;
}


/* =========================================================
   RIGHT FORM
========================================================= */

.electric-help-right {
    width: 100%;
}

.electric-form-card {
    width: 100%;

    background: #fff;

    border: 1px solid #eadfd2;
    border-radius: 18px;

    padding: 32px 28px 29px;

    box-shadow: 0 15px 45px rgba(45, 30, 10, 0.08);
}

.electric-form-title {
    margin: 0 0 25px;

    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;

}


/* =========================================================
   FORM ROW
========================================================= */

.electric-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;

    margin-bottom: 16px;
}

.electric-form-group {
    width: 100%;
}

.electric-form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;

    color: #111;
}

.electric-form-group input,
.electric-form-group select,
.electric-form-group textarea {
    width: 100%;

    border: 1px solid #d9cfc5;
    border-radius: 10px;

    background: #fff;

    color: #111;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.electric-form-group input,
.electric-form-group select {
    height: 46px;
    padding: 0 13px;
}

.electric-form-group textarea {
    min-height: 109px;
    padding: 13px;

    resize: vertical;
}

.electric-form-group input::placeholder,
.electric-form-group textarea::placeholder {
    color: #777;
    opacity: 1;
    font-weight: 600;
}

.electric-form-group input:focus,
.electric-form-group select:focus,
.electric-form-group textarea:focus {
    border-color: #e11920;
    box-shadow: 0 0 0 2px rgba(225, 25, 32, 0.08);
}


/* =========================================================
   MESSAGE
========================================================= */

.electric-message-group {
    margin-bottom: 15px;
}


/* =========================================================
   PHOTO
========================================================= */

.electric-photo-group {
    margin-bottom: 14px;
}

.electric-photo-note {
    display: block;

    margin-top: -2px;
    margin-bottom: 8px;

    font-size: 13px;
    line-height: 1.4;

    color: #776d65;
}

.electric-photo-group input[type="file"] {
    height: 48px;
    padding: 9px 12px;

    cursor: pointer;
}


/* =========================================================
   SUBMIT
========================================================= */

.electric-submit-btn {
    width: 100%;
    height: 54px;

    border: 0;
    border-radius: 10px;

    background: #e11920;
    color: #fff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition: background 0.2s ease, transform 0.2s ease;
}

.electric-submit-btn:hover {
    background: #c9141a;
}

.electric-submit-btn:active {
    transform: translateY(1px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1200px) {

    .electric-help-container {
        padding: 0 35px;
    }

    .electric-help-grid {
        gap: 40px;
    }

    .electric-help-left > h2 {
        font-size: 42px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .electric-help-section {
        padding: 70px 0;
    }

    .electric-help-container {
        padding: 0 25px;
    }

    .electric-help-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .electric-help-left > h2 {
        font-size: 42px;
        max-width: 700px;
    }

    .electric-step-content p {
        max-width: 700px;
    }

    .electric-form-card {
        max-width: 700px;
        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .electric-help-section {
        padding: 55px 0;
    }

    .electric-help-container {
        padding: 0 18px;
    }

    .electric-help-grid {
        gap: 35px;
    }

    .electric-help-eyebrow {
        font-size: 12px;
        margin-bottom: 17px;
    }

    .electric-help-eyebrow span {
        width: 24px;
        height: 3px;
    }

    .electric-help-left > h2 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
        margin-bottom: 27px;
    }

    .desktop-break {
        display: none;
    }

    .electric-step {
        padding: 16px 0 18px;
    }

    .electric-step-number {
        flex: 0 0 31px;
        width: 31px;
        height: 31px;

        margin-right: 11px;

        font-size: 14px;
    }

    .electric-step-content h3 {
        font-size: 17px;
        margin-top: 1px;
        margin-bottom: 8px;
    }

    .electric-step-content p {
        font-size: 14px;
        line-height: 1.55;
    }

    .electric-form-card {
        padding: 26px 18px 20px;
        border-radius: 15px;
    }

    .electric-form-title {
        font-size: 24px;
        margin-bottom: 22px;
    }

    .electric-form-row {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }

    .electric-form-group label {
        font-size: 12px;
        margin-bottom: 7px;
    }

    .electric-form-group input,
    .electric-form-group select {
        height: 47px;
    }

    .electric-form-group textarea {
        min-height: 120px;
    }

    .electric-submit-btn {
        height: 52px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .electric-help-container {
        padding: 0 15px;
    }

    .electric-help-left > h2 {
        font-size: 30px;
    }

    .electric-step-content h3 {
        font-size: 16px;
    }

    .electric-step-content p {
        font-size: 13px;
    }

    .electric-form-card {
        padding: 23px 15px 18px;
    }

    .electric-form-title {
        font-size: 22px;
    }

}


/* =========================================================
   WHAT WE CHECK SECTION
========================================================= */

.what-we-check {
    width: 100%;
    background: #ffffff;
    padding: 80px 0 60px;
    overflow: hidden;
}

.what-we-check__container {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   EYEBROW
========================================================= */

.what-we-check__eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #e11920;
}

.what-we-check__eyebrow span {
    width: 27px;
    height: 4px;

    display: inline-block;

    background: #ffc91d;
    border-radius: 10px;
    flex-shrink: 0;
}


/* =========================================================
   TITLE
========================================================= */

.what-we-check__title {
    margin: 0;

    

    font-size: 48px;
    line-height: 1.08;
   
    letter-spacing: -1.4px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.what-we-check__description {
    max-width: 900px;

    margin: 20px 0 27px;

    color: #635a53;

    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}


/* =========================================================
   CHECK LIST
========================================================= */

.what-we-check__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 12px;
}


/* =========================================================
   ITEM
========================================================= */

.what-we-check__item {
    min-height: 57px;

    display: flex;
    align-items: center;

    padding: 10px 14px;

    border: 1px solid #eadfd5;
    border-radius: 11px;

    background: #ffffff;

    color: #111111;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}


/* =========================================================
   CHECK ICON
========================================================= */

.what-we-check__icon {
    width: 27px;
    height: 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 11px;

    flex: 0 0 27px;

    border-radius: 50%;

    background: #ffca1a;
    color: #111111;

    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}


/* =========================================================
   HOVER
========================================================= */

.what-we-check__item {
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.what-we-check__item:hover {
    border-color: #e4d2c5;
    transform: translateY(-1px);
    box-shadow: 0 7px 20px rgba(30, 20, 10, 0.05);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .what-we-check {
        padding-top: 84px;
        padding-bottom: 62px;
    }

    .what-we-check__container {
        max-width: 940px;
    }

    .what-we-check__title {
        font-size: 46px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .what-we-check {
        padding: 70px 0 55px;
    }

    .what-we-check__container {
        max-width: 760px;
        padding: 0 25px;
    }

    .what-we-check__title {
        font-size: 40px;
    }

    .what-we-check__description {
        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .what-we-check {
        padding: 55px 0 45px;
    }

    .what-we-check__container {
        padding: 0 18px;
    }

    .what-we-check__eyebrow {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .what-we-check__eyebrow span {
        width: 24px;
        height: 3px;
    }

    .what-we-check__title {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .desktop-break {
        display: none;
    }

    .what-we-check__description {
        margin-top: 17px;
        margin-bottom: 24px;

        font-size: 14px;
        line-height: 1.65;
    }

    .what-we-check__list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .what-we-check__item {
        min-height: 54px;

        padding: 10px 12px;

        font-size: 14px;
    }

    .what-we-check__icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;

        margin-right: 10px;

        font-size: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .what-we-check {
        padding: 45px 0 40px;
    }

    .what-we-check__container {
        padding: 0 15px;
    }

    .what-we-check__title {
        font-size: 30px;
    }

    .what-we-check__description {
        font-size: 13.5px;
    }

    .what-we-check__item {
        font-size: 13.5px;
        line-height: 1.45;
    }

}



/* ================================
   ELECTRICIAN CTA
================================ */

.electric-cta {
    width: 100%;
    background: #e21720;
    padding: 70px 20px;
    overflow: hidden;
}

.electric-cta__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.electric-cta__content {
    flex: 1;
    min-width: 0;
}

.electric-cta__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.5px;
}

.electric-cta__eyebrow span {
    display: inline-block;
    width: 28px;
    height: 4px;
    background: #ffd21c;
    border-radius: 10px;
    flex-shrink: 0;
}

.electric-cta__title {
    margin: 0;
    max-width: 650px;

    color: #ffffff;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.electric-cta__description {
    margin: 16px 0 0;
    max-width: 700px;

    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.electric-cta__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.electric-cta__call,
.electric-cta__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;
    padding: 0 25px;

    border-radius: 12px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;

    transition: all 0.25s ease;
}

.electric-cta__call {
    background: #ffd21c;
    color: #111111;
    border: 2px solid #ffd21c;
}

.electric-cta__call:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.electric-cta__whatsapp {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.electric-cta__whatsapp:hover {
    background: #ffffff;
    color: #e21720;
}


/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

    .electric-cta {
        padding: 60px 20px;
    }

    .electric-cta__container {
        gap: 30px;
    }

    .electric-cta__title {
        font-size: 42px;
    }

    .electric-cta__actions {
        gap: 10px;
    }

    .electric-cta__call,
    .electric-cta__whatsapp {
        min-height: 52px;
        padding: 0 18px;
        font-size: 14px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {

    .electric-cta {
        padding: 50px 20px;
    }

    .electric-cta__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .electric-cta__eyebrow {
        margin-bottom: 15px;
        font-size: 12px;
    }

    .electric-cta__eyebrow span {
        width: 25px;
        height: 3px;
    }

    .electric-cta__title {
        max-width: 100%;
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -0.8px;
    }

    .electric-cta__desktop-break {
        display: none;
    }

    .electric-cta__description {
        margin-top: 15px;
        font-size: 15px;
        line-height: 1.55;
    }

    .electric-cta__actions {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .electric-cta__call,
    .electric-cta__whatsapp {
        min-height: 52px;
        padding: 0 20px;
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .electric-cta {
        padding: 42px 16px;
    }

    .electric-cta__title {
        font-size: 31px;
    }

    .electric-cta__description {
        font-size: 14px;
    }

    .electric-cta__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .electric-cta__call,
    .electric-cta__whatsapp {
        width: 100%;
        min-height: 52px;
    }
}


/* CTA - Footerக்கு சரியான compact size */
.electric-cta {
    width: 100%;
    background: #e21720;
    padding: 42px 20px;
    margin: 0;
}

.electric-cta__container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.electric-cta__eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
}

.electric-cta__title {
    margin: 0;
    max-width: 650px;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.electric-cta__description {
    margin: 12px 0 0;
    max-width: 700px;
    font-size: 15px;
    line-height: 1.5;
}

.electric-cta__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.electric-cta__call,
.electric-cta__whatsapp {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 11px;
    font-size: 14px;
}


/* Tablet */
@media (max-width: 991px) {

    .electric-cta {
        padding: 38px 20px;
    }

    .electric-cta__container {
        gap: 25px;
    }

    .electric-cta__title {
        font-size: 36px;
    }

    .electric-cta__description {
        font-size: 14px;
    }

    .electric-cta__actions {
        gap: 8px;
    }

    .electric-cta__call,
    .electric-cta__whatsapp {
        padding: 0 16px;
        min-height: 48px;
        font-size: 13px;
    }
}


/* Mobile */
@media (max-width: 767px) {

    .electric-cta {
        padding: 35px 18px;
    }

    .electric-cta__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .electric-cta__title {
        font-size: 32px;
        line-height: 1.08;
    }

    .electric-cta__description {
        font-size: 14px;
    }

    .electric-cta__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .electric-cta__call,
    .electric-cta__whatsapp {
        min-height: 48px;
        padding: 0 18px;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .electric-cta {
        padding: 30px 16px;
    }

    .electric-cta__title {
        font-size: 28px;
    }

    .electric-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .electric-cta__call,
    .electric-cta__whatsapp {
        width: 100%;
    }
}



/* ================================
   PROJECT BLOG CARDS
================================ */

.project-blog-section {
    
    padding: 90px 0;
}

.project-blog-section .container {
    max-width: 1200px;
}


/* 3 CARD GRID */

.project-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}


/* CARD */

.project-blog-card {
    background: #252321;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.project-blog-card:hover {
    transform: translateY(-5px);
}


/* IMAGE */

.project-blog-card__image {
    width: 100%;
    height: 285px;
    overflow: hidden;
}

.project-blog-card__image a {
    display: block;
    width: 100%;
    height: 100%;
}

.project-blog-card__image img {
    width: 100%;
    /* height: 100%; */
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-blog-card:hover .project-blog-card__image img {
    transform: scale(1.04);
}


/* CONTENT */

.project-blog-card__content {
    padding: 24px 20px 30px;
    flex: 1;
}


/* CATEGORY */

.project-blog-card__category {
    color: #ffd21f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}


/* TITLE */

.project-blog-card__content h3 {
    margin: 0 0 20px;
    padding: 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.project-blog-card__content h3 a {
    color: #ffffff;
    text-decoration: none;
}

.project-blog-card__content h3 a:hover {
    color: #ffd21f;
}


/* DESCRIPTION */

.project-blog-card__content p {
    margin: 0;
    color: #eeeeee;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}


/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

    .project-blog-section {
        padding: 70px 0;
    }

    .project-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .project-blog-card__image {
        height: 260px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {

    .project-blog-section {
        padding: 55px 0;
    }

    .project-blog-section .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .project-blog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .project-blog-card__image {
        height: 240px;
    }

    .project-blog-card__content {
        padding: 22px 18px 26px;
    }

    .project-blog-card__category {
        font-size: 13px;
    }

    .project-blog-card__content h3 {
        font-size: 19px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .project-blog-card__content p {
        font-size: 15px;
        line-height: 1.6;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .project-blog-card__image {
        height: 220px;
    }

    .project-blog-card__content {
        padding: 20px 16px 24px;
    }

    .project-blog-card__content h3 {
        font-size: 18px;
    }

    .project-blog-card__content p {
        font-size: 14px;
    }

}




.service-eyebrow {
    display: inline-block;
    background: #fff3c4;
    color: #d71920;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 19px;
    border-radius: 20px;
    margin-bottom: 15px;
}


.header-call {
    display: inline-flex;
    flex-direction: column;
    text-align: left;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}
 
.header-call span {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 4px;
}
 
.header-call a {
    font-size: 20px;
    font-weight: 700;
    color: #ffc72c;
    text-decoration: none;
    line-height: 1.2;
}
 
.header-call a:hover {
    color: #ffc72c;
}
.footer-call {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
 
.footer-call span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 5px;
}
 
.footer-call a {
    font-size: 30px;
    font-weight: 700;
    color: #ffc72c;
    text-decoration: none;
}
 
.footer-call a:hover {
    color: #ffc72c;
}
 
 
@media (max-width: 991px) {
 
    /* OFF CANVAS MENU ONLY */
    .mean-container .mean-nav {
        position: fixed !important;
        top: 0 !important;
        right: -320px !important;
        left: auto !important;
 
        width: 300px !important;
        height: 100vh !important;
        min-height: 100vh !important;
 
        margin: 0 !important;
        padding: 70px 0 0 !important;
 
        background: #fff !important;
 
        z-index: 9999 !important;
        overflow-y: auto !important;
 
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
 
        transition: right 0.35s ease !important;
    }
 
    /* OPEN */
    .mean-container .mean-nav.menu-open {
        right: 0 !important;
    }
 
    /* MENU LIST */
    .mean-container .mean-nav ul {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
 
    .mean-container .mean-nav ul li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
    }
 
    .mean-container .mean-nav ul li a {
        display: block !important;
        width: 100% !important;
 
        padding: 18px 24px !important;
 
        color: #111 !important;
        background: #fff !important;
 
        font-size: 14px !important;
        font-weight: 700 !important;
 
        border-bottom: 1px solid #e5e5e5 !important;
 
        box-sizing: border-box !important;
    }
 
    /* IMPORTANT:
       meanmenu-reveal / hamburger-ku inga
       endha position CSS-um kudukkala.
       Existing position appadiye irukkum.
    */
}

footer,
footer .container,
footer .footer-wrapper {
    margin-bottom: 0px !important;
}


@media (max-width: 810px) {
    .header-two .logo img {
        width: auto;
        max-width: 55%;
        transform: scale(1.5);
        transform-origin: left center;
    }
}



/* Sticky navbar */
#header-sticky3 {
    width: 100%;
    z-index: 99999;
    transition: all 0.3s ease;
}

/* After scrolling */
#header-sticky3.is-sticky {
    position: fixed !important;
    
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    
   
}


.offcanvas-close {
    position: absolute;
    top: 15px;
    right: 20px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 9999;
}