/* =========================================================
   SK ELEVATIONS - COIMBATORE SERVICE PAGE
========================================================= */

:root {
    --sk-blue: #063085;
    --sk-light-blue: #f5f8ff;
    --sk-text: #555555;
    --sk-dark: #111827;
}


/* =========================================================
   INTRO SECTION
========================================================= */

.sk-location-page {
    padding: 40px 0;
    background: #ffffff;
}

.sk-location-intro {
    max-width: 950px;
    margin: 0 auto 75px;
    text-align: center;
}

.sk-section-label {
    display: inline-block;
    color: var(--sk-blue);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.sk-location-intro h2,
.sk-section-heading h2,
.sk-area-inner h2 {
    color: var(--sk-dark);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 20px;
}

.sk-location-intro p {
    color: var(--sk-text);
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 12px;
}


/* =========================================================
   SERVICE ROW
========================================================= */

.sk-service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto 75px;
    padding: 45px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #edf1f8;
    box-shadow: 0 8px 35px rgba(6, 48, 133, 0.08);
}

.sk-service-row.reverse {
    flex-direction: row-reverse;
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.sk-service-image {
    flex: 0 0 370px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-circle-image {
    width: 350px;
    height: 350px;
    padding: 10px;
    border: 5px solid var(--sk-blue);
    border-radius: 50%;
    background: #ffffff;
    overflow: hidden;
}

.sk-circle-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.sk-service-content {
    flex: 1;
}

.sk-service-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--sk-blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.sk-service-content h3 {
    color: var(--sk-dark);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 18px;
}

.sk-service-content p {
    color: var(--sk-text);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 25px;
}


/* =========================================================
   SERVICE BUTTON
========================================================= */

.sk-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 5px;
    background: var(--sk-blue);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.sk-service-btn i {
    font-size: 12px;
}

.sk-service-btn:hover {
    background: #041f59;
    color: #ffffff !important;
    transform: translateY(-2px);
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.sk-why-section {
    padding: 85px 0;
    background: var(--sk-light-blue);
}

.sk-section-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.sk-section-heading p {
    color: var(--sk-text);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.sk-why-card {
    height: 100%;
    margin-bottom: 25px;
    padding: 35px 25px;
    background: #ffffff;
    border: 1px solid #e9eef7;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.sk-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(6, 48, 133, 0.10);
}

.sk-why-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--sk-blue);
    color: #ffffff;
    font-size: 22px;
}

.sk-why-card h4 {
    color: var(--sk-dark);
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 12px;
}

.sk-why-card p {
    color: var(--sk-text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   AREAS WE SERVE
========================================================= */

.sk-area-section {
    padding: 40px 0;
    background: #f7f9fc;
}

.sk-area-inner {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.sk-area-inner p {
    color: var(--sk-text);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 30px;
}

.sk-area-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.sk-area-list span {
    display: inline-block;
    padding: 11px 18px;
    border: 1px solid #e0e7f3;
    border-radius: 30px;
    background: #f3f6fb;
    color: var(--sk-blue);
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   FAQ
========================================================= */

.sk-faq-section {
    padding: 80px 0;
    background: var(--sk-light-blue);
}

.sk-faq-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.sk-faq-item {
    margin-bottom: 15px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 8px;
}

.sk-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 25px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--sk-dark);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
}

.sk-faq-question span {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sk-blue);
    color: #ffffff;
    font-size: 19px;
    line-height: 1;
    transition: all 0.3s ease;
}

.sk-faq-answer {
    display: none;
    padding: 0 25px 22px;
}

.sk-faq-answer p {
    color: var(--sk-text);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.sk-faq-item.active .sk-faq-answer {
    display: block;
}

.sk-faq-item.active .sk-faq-question span {
    transform: rotate(45deg);
}


/* =========================================================
   CTA
========================================================= */

.sk-location-cta {
    padding: 70px 0;
    background: var(--sk-blue);
}

.sk-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.sk-location-cta .sk-section-label {
    color: #ffffff;
}

.sk-location-cta h2 {
    color: #ffffff;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 12px;
}

.sk-location-cta p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.sk-cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sk-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    background: #ffffff;
    color: var(--sk-blue) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sk-cta-btn:hover {
    background: #f1f4f9;
    color: var(--sk-blue) !important;
}

.sk-cta-btn.outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff !important;
}

.sk-cta-btn.outline:hover {
    background: #ffffff;
    color: var(--sk-blue) !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .sk-service-row {
        gap: 50px;
        padding: 35px;
    }

    .sk-service-image {
        flex: 0 0 320px;
    }

    .sk-circle-image {
        width: 300px;
        height: 300px;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {

    .sk-service-row,
    .sk-service-row.reverse {
        flex-direction: column;
        gap: 35px;
        padding: 35px 25px;
        text-align: center;
    }

    .sk-service-image {
        flex: none;
    }

    .sk-circle-image {
        width: 280px;
        height: 280px;
    }

    .sk-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .sk-location-cta p {
        margin-left: auto;
        margin-right: auto;
    }

    .sk-cta-buttons {
        justify-content: center;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .sk-location-page,
    .sk-why-section,
    .sk-area-section,
    .sk-faq-section {
        padding: 55px 0;
    }

    .sk-location-intro {
        margin-bottom: 45px;
    }

    .sk-location-intro h2,
    .sk-section-heading h2,
    .sk-area-inner h2 {
        font-size: 28px;
    }

    .sk-location-intro p {
        font-size: 15px;
        line-height: 1.8;
    }

    .sk-service-row,
    .sk-service-row.reverse {
        margin-bottom: 40px;
        padding: 25px 18px;
        border-radius: 14px;
    }

    .sk-circle-image {
        width: 230px;
        height: 230px;
        padding: 7px;
        border-width: 4px;
    }

    .sk-service-content h3 {
        font-size: 23px;
    }

    .sk-service-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .sk-service-btn {
        padding: 11px 18px;
    }

    .sk-why-card {
        padding: 30px 20px;
    }

    .sk-area-list {
        gap: 8px;
    }

    .sk-area-list span {
        padding: 9px 14px;
        font-size: 13px;
    }

    .sk-faq-question {
        padding: 18px;
        font-size: 14px;
    }

    .sk-faq-answer {
        padding: 0 18px 18px;
    }

    .sk-location-cta {
        padding: 55px 0;
    }

    .sk-location-cta h2 {
        font-size: 27px;
    }

    .sk-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .sk-cta-btn {
        width: 100%;
    }

}

/* =========================================
   SK ELEVATIONS - SERVICE HERO BANNER
========================================= */

.sk-service-hero {
    position: relative !important;
    width: 100% !important;
    min-height: 700px !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    display: flex !important;
    align-items: center !important;

    overflow: hidden !important;
}


/* DARK OVERLAY */

.sk-service-hero .sk-hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    background: rgba(0, 0, 0, 0.68) !important;

    z-index: 1 !important;
}


/* LEFT TO RIGHT DARK GRADIENT */

.sk-service-hero::after {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.65) 40%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0.55) 100%
    ) !important;

    z-index: 1 !important;

    pointer-events: none !important;
}


/* CONTENT */

.sk-service-hero .container {
    position: relative !important;
    z-index: 3 !important;
}


/* LEFT CONTENT */

.sk-hero-left {
    padding: 70px 20px 70px 0 !important;
}


/* TAG */

.sk-hero-tag {
    display: inline-block !important;

    background: #155fc0 !important;
    color: #ffffff !important;

    padding: 10px 18px !important;

    border-radius: 5px !important;

    font-size: 15px !important;
    font-weight: 700 !important;

    margin-bottom: 20px !important;
}


/* MAIN HEADING */

.sk-service-hero .sk-hero-title {
    color: #ffffff !important;

    font-size: 48px !important;
    line-height: 1.15 !important;

    font-weight: 800 !important;

    margin: 0 !important;
    padding: 0 !important;

    text-transform: uppercase !important;

    text-shadow: 0 3px 8px rgba(0,0,0,0.9) !important;
}


/* BLUE LINE */

.sk-title-line {
    width: 125px !important;
    height: 3px !important;

    background: #2584e8 !important;

    margin: 20px 0 18px !important;
}


/* SERVICE LIST */

.sk-service-list {
    list-style: none !important;

    padding: 0 !important;
    margin: 0 !important;
}


.sk-service-list li {
    display: flex !important;
    align-items: center !important;

    color: #ffffff !important;

    font-size: 18px !important;
    font-weight: 500 !important;

    line-height: 1.3 !important;

    margin-bottom: 10px !important;

    text-shadow: 0 2px 6px rgba(0,0,0,0.9) !important;
}


/* CHECK ICON */

.sk-check {
    width: 25px !important;
    height: 25px !important;

    min-width: 25px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #ffffff !important;
    color: #155fc0 !important;

    border-radius: 50% !important;

    margin-right: 12px !important;

    font-size: 13px !important;

    box-shadow: 0 2px 7px rgba(0,0,0,0.5) !important;
}


/* =========================================
   BOOKING FORM
========================================= */

.sk-booking-box {
    position: relative !important;

    background: rgba(3, 25, 48, 0.88) !important;

    border: 2px solid rgba(255,255,255,0.9) !important;

    border-radius: 15px !important;

    padding: 32px 28px !important;

    margin: 30px 0 !important;

    box-shadow: 0 12px 35px rgba(0,0,0,0.5) !important;

    backdrop-filter: blur(5px) !important;
}


/* FORM HEADING */

.sk-booking-box h2 {
    color: #ffffff !important;

    text-align: center !important;

    font-size: 25px !important;
    line-height: 1.3 !important;

    font-weight: 800 !important;

    margin: 0 0 25px !important;
}


.sk-booking-box h2 span {
    display: block !important;

    color: #4c9cff !important;

    margin-top: 5px !important;
}


/* FORM INPUT */

.sk-form-group {
    margin-bottom: 14px !important;
}


.sk-form-group input,
.sk-form-group textarea {
    width: 100% !important;

    background: #ffffff !important;

    border: none !important;

    border-radius: 5px !important;

    padding: 15px 16px !important;

    color: #222222 !important;

    font-size: 15px !important;

    outline: none !important;

    box-shadow: none !important;
}


.sk-form-group input {
    height: 55px !important;
}


.sk-form-group textarea {
    min-height: 105px !important;

    resize: vertical !important;
}


.sk-form-group input::placeholder,
.sk-form-group textarea::placeholder {
    color: #6c757d !important;
}


/* SUBMIT BUTTON */

.sk-form-submit button {
    width: 100% !important;

    height: 58px !important;

    border: none !important;
    border-radius: 5px !important;

    background: #155fc0 !important;

    color: #ffffff !important;

    font-size: 17px !important;
    font-weight: 700 !important;

    cursor: pointer !important;

    transition: all 0.3s ease !important;
}


.sk-form-submit button:hover {
    background: #0d4d9f !important;
}


/* =========================================
   WHATSAPP
========================================= */

.sk-whatsapp {
    position: fixed !important;

    right: 25px !important;
    bottom: 25px !important;

    width: 60px !important;
    height: 60px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #25d366 !important;

    color: #ffffff !important;

    border-radius: 50% !important;

    border: 4px solid #ffffff !important;

    font-size: 32px !important;

    z-index: 9999 !important;

    box-shadow: 0 5px 15px rgba(0,0,0,0.35) !important;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199px) {

    .sk-service-hero {
        min-height: 650px !important;
    }

    .sk-service-hero .sk-hero-title {
        font-size: 40px !important;
    }

    .sk-service-list li {
        font-size: 17px !important;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .sk-service-hero {
        min-height: auto !important;

        padding: 60px 0 !important;
    }

    .sk-hero-left {
        padding: 20px 0 40px !important;
    }

    .sk-service-hero .sk-hero-title {
        font-size: 38px !important;
    }

    .sk-booking-box {
        margin: 20px 0 0 !important;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .sk-service-hero {
        background-position: center center !important;
    }

    .sk-hero-left {
        padding: 15px 0 35px !important;
    }

    .sk-hero-tag {
        font-size: 13px !important;

        padding: 8px 13px !important;
    }

    .sk-service-hero .sk-hero-title {
        font-size: 30px !important;

        line-height: 1.2 !important;
    }

    .sk-service-list li {
        font-size: 15px !important;

        margin-bottom: 9px !important;
    }

    .sk-check {
        width: 22px !important;
        height: 22px !important;

        min-width: 22px !important;

        font-size: 11px !important;

        margin-right: 9px !important;
    }

    .sk-booking-box {
        padding: 25px 18px !important;
    }

    .sk-booking-box h2 {
        font-size: 21px !important;
    }

    .sk-whatsapp {
        width: 54px !important;
        height: 54px !important;

        right: 15px !important;
        bottom: 15px !important;

        font-size: 28px !important;
    }
}

/* =========================================================
   SK ELEVATIONS - LOCATION INTRO
========================================================= */

.sk-location-page {
    width: 100%;
    padding: 40px 0;
    background: #ffffff;
}


.sk-location-intro {
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   EYEBROW
========================================================= */

.sk-intro-eyebrow {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 16px;

    color: #063085;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.sk-intro-eyebrow span {
    display: inline-block;

    width: 24px;
    height: 2px;

    background: #063085;
}


/* =========================================================
   HEADING
========================================================= */

.sk-location-intro h2 {
    margin: 0 0 22px;

    color: #063085;

    font-size: 48px;
    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.4px;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.sk-location-intro p {
    margin: 0 0 18px;

    color: #000000;

    font-size: 16px;
    line-height: 1.75;

    font-weight: 400;
}


.sk-location-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sk-location-page {
        padding: 60px 0;
    }

    .sk-location-intro h2 {
        font-size: 34px;
    }

    .sk-location-intro p {
        font-size: 15.5px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .sk-location-page {
        padding: 50px 0;
    }

    .sk-intro-eyebrow {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .sk-location-intro h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .sk-location-intro p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

}

/* =========================================================
   SK ELEVATIONS SERVICES - NEW LAYOUT
========================================================= */

.sk-services-section {
    padding: 40px 0;
    background: #f7f9fc;
}


/* =========================================================
   HEADING
========================================================= */

.sk-services-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}


.sk-services-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #063085;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;

    margin-bottom: 13px;
}


.sk-services-eyebrow span {
    width: 25px;
    height: 2px;
    background: #063085;
}


.sk-services-heading h2 {
    margin: 0 0 15px;

    color: #063085;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}


.sk-services-heading p {
    margin: 0;

    color: #687585;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   GRID
========================================================= */

.sk-services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}


/* =========================================================
   CARD
========================================================= */

.sk-service-card {
    background: #ffffff;

    border: 1px solid #e4e9ef;

    transition: all .3s ease;

    overflow: hidden;
}


.sk-service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(6, 48, 133, .10);

    border-color: #d5deea;
}


/* =========================================================
   IMAGE
========================================================= */

.sk-service-card-image {
    position: relative;

    height: 260px;

    overflow: hidden;
}


.sk-service-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}


.sk-service-card:hover .sk-service-card-image img {
    transform: scale(1.05);
}


/* NUMBER */

.sk-service-card-image span {
    position: absolute;

    left: 20px;
    bottom: 20px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #063085;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   CONTENT
========================================================= */

.sk-service-card-content {
    padding: 25px 28px 28px;

    border-top: 3px solid #1f7fe5;
}


.sk-service-card-content h3 {
    margin: 0 0 13px;

    color: #063085;

    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
}


.sk-service-card-content p {
    margin: 0;

    color: #000;
    text-align: justify;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sk-services-section {
        padding: 70px 0;
    }

    .sk-services-heading h2 {
        font-size: 34px;
    }

    .sk-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sk-service-card-image {
        height: 220px;
    }

    .sk-service-card-content {
        padding: 22px;
    }

    .sk-service-card-content h3 {
        font-size: 21px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sk-services-section {
        padding: 55px 0;
    }

    .sk-services-heading {
        margin-bottom: 40px;
    }

    .sk-services-heading h2 {
        font-size: 29px;
    }

    .sk-services-heading p {
        font-size: 15px;
    }

    .sk-services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sk-service-card-image {
        height: 240px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .sk-services-heading h2 {
        font-size: 26px;
    }

    .sk-service-card-image {
        height: 210px;
    }

    .sk-service-card-content h3 {
        font-size: 20px;
    }

    .sk-service-card-content p {
        font-size: 14px;
    }

}

/* =========================================================
   SK ELEVATIONS - WHY CHOOSE US
========================================================= */

.sk-why-section {
    padding: 40px 0;
    background: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

.sk-why-header {
    max-width: 700px;
    margin: 0 auto 55px;

    text-align: center;
}


.sk-why-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 16px;

    color: #063085;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.sk-why-eyebrow span {
    width: 25px;
    height: 2px;

    background: #063085;
}


.sk-why-header h2 {
    margin: 0 0 14px;

    color: #172b43;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 700;
}


.sk-why-header h2 strong {
    color: #063085;
}


.sk-why-header p {
    margin: 0;

    color: #000000;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   WHY LIST
========================================================= */

.sk-why-list {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #dfe5ec;
    border-bottom: 1px solid #dfe5ec;
}


/* =========================================================
   ITEM
========================================================= */

.sk-why-item {
    position: relative;

    min-height: 250px;

    padding: 35px 28px;

    background: #ffffff;

    border-right: 1px solid #dfe5ec;

    transition: .3s ease;
}


.sk-why-item:last-child {
    border-right: none;
}


.sk-why-item:hover {
    background: #063085;
}


.sk-why-item:hover h3,
.sk-why-item:hover p {
    color: #ffffff;
}


.sk-why-item:hover .sk-why-number {
    color: rgba(255,255,255,.45);
}


.sk-why-item:hover .sk-why-icon {
    background: #ffffff;
    color: #063085;
}


/* =========================================================
   NUMBER
========================================================= */

.sk-why-number {
    position: absolute;

    top: 22px;
    right: 25px;

    color: #dbe2ea;

    font-size: 38px;
    line-height: 1;

    font-weight: 800;

    transition: .3s ease;
}


/* =========================================================
   ICON
========================================================= */

.sk-why-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: #edf3fb;

    color: #063085;

    font-size: 21px;

    border-radius: 50%;

    transition: .3s ease;
}


/* =========================================================
   CONTENT
========================================================= */

.sk-why-content h3 {
    margin: 0 0 12px;

    color: #063085;

    font-size: 21px;
    line-height: 1.35;

    font-weight: 700;

    transition: .3s ease;
}


.sk-why-content p {
    margin: 0;

    color: #000000;

    font-size: 15px;
    line-height: 1.7;
    text-align: justify;

    transition: .3s ease;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sk-why-section {
        padding: 70px 0;
    }

    .sk-why-header h2 {
        font-size: 34px;
    }

    .sk-why-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .sk-why-item:nth-child(2) {
        border-right: none;
    }

    .sk-why-item:nth-child(-n+2) {
        border-bottom: 1px solid #dfe5ec;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sk-why-section {
        padding: 55px 0;
    }

    .sk-why-header {
        margin-bottom: 40px;
    }

    .sk-why-header h2 {
        font-size: 29px;
    }

    .sk-why-header p {
        font-size: 15px;
    }

    .sk-why-list {
        grid-template-columns: 1fr;
    }

    .sk-why-item,
    .sk-why-item:nth-child(2) {
        min-height: auto;

        border-right: none;
        border-bottom: 1px solid #dfe5ec;
    }

    .sk-why-item:last-child {
        border-bottom: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .sk-why-header h2 {
        font-size: 27px;
    }

    .sk-why-item {
        padding: 30px 24px;
    }

}

/* =========================================================
   WHY CHOOSE US - CARD GAPS
========================================================= */

.sk-why-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    border: none;
}


/* INDIVIDUAL CARD */

.sk-why-item {
    position: relative;

    min-height: 250px;

    padding: 35px 28px;

    background: #ffffff;

    border: 1px solid #e1e6ed;

    transition: all .3s ease;
}


/* HOVER */

.sk-why-item:hover {
    background: #063085;

    border-color: #063085;

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(6, 48, 133, .12);
}


/* REMOVE OLD BORDER RULES */

.sk-why-item:last-child {
    border-right: 1px solid #e1e6ed;
}


/* HOVER LAST CARD */

.sk-why-item:hover:last-child {
    border-right-color: #063085;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .sk-why-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sk-why-item,
    .sk-why-item:nth-child(2) {
        border-right: 1px solid #e1e6ed;
        border-bottom: 1px solid #e1e6ed;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sk-why-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sk-why-item,
    .sk-why-item:nth-child(2) {
        border: 1px solid #e1e6ed;
    }

}

/* =========================================================
   AREA BOX
========================================================= */

.sk-area-list span {
    position: relative;

    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 15px 20px;

    background: #ffffff;

    border: 1px solid #dfe5ed;

    border-radius: 0;

    color: #26384d;

    font-size: 15px;
    font-weight: 600;

    text-align: center;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* LOCATION ICON */

.sk-area-list span i {
    color: #063085;

    font-size: 15px;

    transition: all 0.3s ease;
}


/* =========================================================
   HOVER / ACTIVE
========================================================= */

.sk-area-list span:hover,
.sk-area-list span:active {
    background: #063085;

    border-color: #063085;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(6, 48, 133, 0.18);
}


/* ICON */

.sk-area-list span:hover i,
.sk-area-list span:active i {
    color: #ffffff;
}


/* =========================================================
   REMOVE OLD TOP LINE
========================================================= */

.sk-area-list span::before {
    display: none !important;
}


/* =========================================================
   INDUSTRIAL / COMMERCIAL BOX
========================================================= */

.sk-area-list span:nth-child(9),
.sk-area-list span:nth-child(10) {
    background: #eef3fa;

    border-color: #dfe5ed;
}


/* HOVER FOR LAST TWO */

.sk-area-list span:nth-child(9):hover,
.sk-area-list span:nth-child(10):hover {
    background: #063085;

    border-color: #063085;

    color: #ffffff;
}


.sk-area-list span:nth-child(9):hover i,
.sk-area-list span:nth-child(10):hover i {
    color: #ffffff;
}

/* =========================================================
   AREA BOX - ROUNDED SHAPE
========================================================= */

.sk-area-list span {
    position: relative;

    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 15px 20px;

    background: #ffffff;

    border: 1px solid #dfe5ed;

    border-radius: 35px;

    color: #26384d;

    font-size: 15px;
    font-weight: 600;

    text-align: center;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* LOCATION ICON */

.sk-area-list span i {
    color: #063085;

    font-size: 15px;

    transition: all 0.3s ease;
}


/* REMOVE TOP LINE */

.sk-area-list span::before {
    display: none !important;
}


/* =========================================================
   HOVER / CLICK
========================================================= */

.sk-area-list span:hover,
.sk-area-list span:active {
    background: #063085;

    border-color: #063085;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(6, 48, 133, 0.18);
}


/* ICON WHITE */

.sk-area-list span:hover i,
.sk-area-list span:active i {
    color: #ffffff;
}


/* =========================================================
   LAST TWO BOXES
========================================================= */

.sk-area-list span:nth-child(9),
.sk-area-list span:nth-child(10) {
    background: #eef3fa;
    border-color: #dfe5ed;
}


/* LAST TWO HOVER */

.sk-area-list span:nth-child(9):hover,
.sk-area-list span:nth-child(10):hover {
    background: #063085;
    border-color: #063085;
    color: #ffffff;
}

.sk-area-list span:nth-child(9):hover i,
.sk-area-list span:nth-child(10):hover i {
    color: #ffffff;
}

/* =========================================================
   FAQ - CLEAN BOX DESIGN
========================================================= */

.sk-faq-section {
    padding: 40px 0 !important;
    background: #fff !important;
}

.sk-faq-wrapper {
    width: 100% !important;
    max-width: 1170px !important;
    margin: 45px auto 0 !important;
}


/* FAQ BOX */

.sk-faq-item {
    position: relative !important;
    width: 100% !important;

    margin: 0 0 14px !important;
    padding: 0 !important;

    background: #fff !important;

    border: 1px solid #dce3ed !important;
    border-radius: 12px !important;

    overflow: hidden !important;

    box-shadow: none !important;
}


/* REMOVE OLD DESIGN */

.sk-faq-item::before,
.sk-faq-item::after,
.sk-faq-question::before,
.sk-faq-question::after,
.sk-faq-question span::before,
.sk-faq-question span::after {
    display: none !important;
    content: none !important;
}


/* QUESTION BUTTON */

.sk-faq-question {
    position: relative !important;

    width: 100% !important;
    min-height: 68px !important;

    display: flex !important;
    align-items: center !important;

    padding: 20px 22px !important;
    margin: 0 !important;

    background: #fff !important;

    border: 0 !important;
    border-radius: 0 !important;

    outline: none !important;
    box-shadow: none !important;

    text-align: left !important;

    color: #063085 !important;

    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 700 !important;

    cursor: pointer !important;

    transition: background .25s ease !important;
}


/* VERY IMPORTANT
   RESET OLD SPAN / CIRCLE STYLE
*/

.sk-faq-question > span {
    position: static !important;

    display: block !important;

    width: auto !important;
    height: auto !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    overflow: visible !important;

    color: #063085 !important;

    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;

    text-align: left !important;

    transform: none !important;
}


/* ARROW */

.sk-faq-question > i {
    position: static !important;

    display: block !important;

    width: auto !important;
    height: auto !important;

    margin-left: auto !important;
    padding-left: 20px !important;

    flex-shrink: 0 !important;

    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    color: #063085 !important;

    font-size: 13px !important;

    transform: none !important;

    transition: transform .3s ease !important;
}


/* HOVER */

.sk-faq-question:hover {
    background: #f7faff !important;
}

.sk-faq-question:hover > span {
    color: #063085 !important;
}


/* OPEN */

.sk-faq-question:not(.collapsed) {
    background: #f7faff !important;
}

.sk-faq-question:not(.collapsed) > span {
    color: #063085 !important;
}

.sk-faq-question:not(.collapsed) > i {
    transform: rotate(180deg) !important;
}


/* ANSWER */

.sk-faq-answer {
    position: relative !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    background: #fff !important;

    border-top: 1px solid #e5eaf1 !important;
}


/* ANSWER TEXT */

.sk-faq-answer p {
    margin: 0 !important;

    padding: 18px 22px 22px !important;

    color: #000000 !important;

    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 400 !important;

    line-height: 1.75 !important;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.sk-faq-section .sk-section-heading {
    text-align: center !important;
    margin-bottom: 0 !important;
}

.sk-faq-section .sk-section-label {
    display: block !important;

    margin-bottom: 12px !important;

    color: #063085 !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    letter-spacing: 2px !important;
}

.sk-faq-section .sk-section-heading h2 {
    margin: 0 !important;

    color: #063085 !important;

    font-size: 38px !important;
    font-weight: 700 !important;
}

.sk-faq-section .sk-title-line {
    margin: 20px auto 0 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sk-faq-section {
        padding: 65px 0 !important;
    }

    .sk-faq-wrapper {
        margin-top: 35px !important;
    }

    .sk-faq-question {
        min-height: 64px !important;
        padding: 17px 18px !important;
        font-size: 14px !important;
    }

    .sk-faq-question > span {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .sk-faq-question > i {
        padding-left: 15px !important;
        font-size: 12px !important;
    }

    .sk-faq-answer p {
        padding: 16px 18px 20px !important;
        font-size: 14px !important;
    }

    .sk-faq-section .sk-section-heading h2 {
        font-size: 28px !important;
    }
}

/* =========================================================
   SK ELEVATIONS - CALL ACTION BAR
========================================================= */

.sk-call-action-bar {
    width: 100%;
    padding: 15px 0;

    background: #ffffff;

    text-align: center;
}

.sk-call-action-inner {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;

    margin: 0 auto;

    overflow: hidden;
}


/* HAPPY TO HELP */

.sk-help-text {
    display: flex;
    align-items: center;

    padding: 9px 10px;

    background: #ffffff;

    color: #49627b;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}


/* TIME */

.sk-action-time {
    display: flex;
    align-items: center;

    padding: 9px 12px;

    background: #22b86b;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}


/* PHONE */

.sk-action-phone {
    display: flex;
    align-items: center;

    padding: 9px 12px;

    background: #0e3f5a;

    color: #ffffff !important;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;

    white-space: nowrap;

    transition: .3s ease;
}

.sk-action-phone:hover {
    background: #125695;

    color: #ffffff !important;
}


/* EMAIL */

.sk-action-email {
    display: flex;
    align-items: center;

    padding: 9px 12px;

    background: #125695;

    color: #ffffff !important;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none !important;

    white-space: nowrap;

    transition: .3s ease;
}

.sk-action-email:hover {
    background: #0e3f5a;

    color: #ffffff !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .sk-call-action-bar {
        padding: 25px 10px;
    }

    .sk-call-action-inner {
        display: flex;
        flex-wrap: wrap;

        width: 100%;
        max-width: 400px;
    }

    .sk-help-text,
    .sk-action-time,
    .sk-action-phone,
    .sk-action-email {
        justify-content: center;

        width: 100%;

        padding: 10px;
    }

}

/* =========================================================
   SK ELEVATIONS SERVICE LOCATIONS
========================================================= */

.sk-service-location-section {
    background: #0e3f5a;
    padding: 40px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.sk-location-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}

.sk-location-column h3 {
    color: #f4a300;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 14px;
}

.sk-location-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sk-location-column ul li {
    margin-bottom: 5px;
}

.sk-location-column ul li a {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: 0.3s ease;
}

.sk-location-column ul li a:hover {
    color: #f4a300;
    padding-left: 4px;
}


/* TABLET */

@media (max-width: 991px) {

    .sk-location-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 50px;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .sk-service-location-section {
        padding: 40px 20px;
    }

    .sk-location-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sk-location-column h3 {
        font-size: 20px;
    }

    .sk-location-column ul li a {
        font-size: 14px;
    }

}

/* =========================================
   SERVICE LOCATION COLUMNS
========================================= */

.sk-location-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 30px;
    padding: 40px 0;
}

.sk-location-column {
    position: relative;
}

.sk-location-column h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 18px;
    color: #063085;
}

.sk-location-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sk-location-column ul li {
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.sk-location-column ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    font-weight: 700;
    color: #063085;
}

.sk-location-column ul li a {
    color: #555;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sk-location-column ul li a:hover {
    color: #063085;
    padding-left: 4px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .sk-location-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .sk-location-columns {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 15px;
    }

    .sk-location-column h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .sk-location-column ul li a {
        font-size: 14px;
    }

}



/* =========================================
   SERVICE LOCATIONS - 5 x 2 LAYOUT
========================================= */

.sk-location-section {
    padding: 80px 0;
    background: #f7f9fc;
}


/* SECTION HEADING */

.sk-location-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.sk-location-heading span {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #063085;
    margin-bottom: 10px;
}

.sk-location-heading h2 {
    margin: 0 0 15px;
    font-size: 38px;
    font-weight: 700;
    color: #111827;
}

.sk-location-heading p {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   LOCATION GRID
========================================= */

.sk-location-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}


/* =========================================
   LOCATION CARD
========================================= */

.sk-location-card {
    background: #ffffff;
    border: 1px solid #e7ebf2;
    border-radius: 12px;
    padding: 25px 22px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.sk-location-card:hover {
    transform: translateY(-6px);
    border-color: #063085;
    box-shadow: 0 15px 35px rgba(6, 48, 133, 0.12);
}


/* =========================================
   LOCATION TITLE
========================================= */

.sk-location-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #edf0f5;
}

.sk-location-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #063085;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.sk-location-top h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #111827;
}


/* =========================================
   SERVICES
========================================= */

.sk-location-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sk-location-card ul li {
    margin-bottom: 9px;
}

.sk-location-card ul li:last-child {
    margin-bottom: 0;
}

.sk-location-card ul li a {
    position: relative;
    display: block;
    padding-left: 15px;
    color: #5f6673;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sk-location-card ul li a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: -1px;
    color: #063085;
    font-size: 17px;
    font-weight: 700;
}

.sk-location-card ul li a:hover {
    color: #063085;
    padding-left: 19px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .sk-location-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 767px) {

    .sk-location-section {
        padding: 60px 0;
    }

    .sk-location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sk-location-heading {
        margin-bottom: 35px;
    }

    .sk-location-heading h2 {
        font-size: 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .sk-location-section {
        padding: 50px 15px;
    }

    .sk-location-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sk-location-heading h2 {
        font-size: 27px;
    }

    .sk-location-heading p {
        font-size: 14px;
    }

    .sk-location-card {
        padding: 22px 20px;
    }

}

.sk-location-section {
    padding: 40px 0;
    background: #f1f6fc;
}

/* =========================================
   SK ELEVATIONS SERVICE + CONTACT
========================================= */

.sk-service-contact {
    position: relative;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}


/* =========================================
   BACKGROUND OVERLAY
========================================= */

.sk-service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 25, 58, 0.88);
    z-index: 0;
}

.sk-service-contact .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   LEFT SERVICE LIST
========================================= */

.sk-service-list {
    padding: 10px 70px 10px 20px;
}


/* =========================================
   SERVICE ITEM
========================================= */

.sk-service-item {
    display: flex;
    align-items: center;

    min-height: 62px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 600;

    position: relative;

    transition: all 0.3s ease;
}


/* Small cyan vertical line */

.sk-service-item::before {
    content: "";
    position: absolute;

    left: 64px;
    top: 0;
    bottom: 0;

    width: 1px;

    background: rgba(8, 200, 232, 0.65);
}


/* Small dot */

.sk-service-item::after {
    content: "";

    position: absolute;

    left: 60px;
    top: 50%;

    width: 9px;
    height: 9px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #1861a5;

    box-shadow: 0 0 0 4px rgba(8, 200, 232, 0.08);
}


/* =========================================
   SERVICE ICON
========================================= */

.sk-service-icon {
    width: 42px;
    height: 42px;

    margin-right: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1861a5;

    font-size: 21px;

    transition: all 0.3s ease;
}

.sk-service-item:hover .sk-service-icon {
    transform: scale(1.12);
    color: #ffffff;
}

.sk-service-item:hover {
    color: #fff;
    padding-left: 7px;
}


/* =========================================
   CONTACT FORM
========================================= */

.sk-contact-form {
    background: rgba(255, 255, 255, 0.97);

    padding: 48px 45px;

    border-radius: 30px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.30);

    margin-left: 25px;
}


/* =========================================
   FORM ROW
========================================= */

.sk-form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 18px;
}


/* =========================================
   INPUT BOX
========================================= */

.sk-input-box {
    width: 100%;
}

.sk-input-box input,
.sk-input-box textarea {

    width: 100%;

    border: 1px solid #dce2ea;

    background: #f7f9fc;

    border-radius: 12px;

    outline: none;

    color: #10284f;

    font-size: 15px;

    transition: all 0.3s ease;
}


/* Inputs */

.sk-input-box input {
    height: 62px;

    padding: 0 20px;
}


/* Textarea */

.sk-input-box textarea {
    height: 180px;

    padding: 20px;

    resize: none;
}


/* Placeholder */

.sk-input-box input::placeholder,
.sk-input-box textarea::placeholder {
    color: #71809a;
}


/* Focus */

.sk-input-box input:focus,
.sk-input-box textarea:focus {

    border-color: #08aeda;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(8, 174, 218, 0.08);
}


/* =========================================
   MESSAGE
========================================= */

.sk-message-box {
    margin-bottom: 25px;
}


/* =========================================
   SEND BUTTON
========================================= */

.sk-send-btn {

    border: none;

    min-width: 190px;

    height: 56px;

    padding: 0 32px;

    border-radius: 30px;

    background: #0878c9;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    text-transform: none;

    cursor: pointer;

    transition: all 0.3s ease;
}


.sk-send-btn:hover {

    background: #063085;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(6, 48, 133, 0.25);
}


/* =========================================
   WHATSAPP
========================================= */

.sk-whatsapp {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    font-size: 27px;

    z-index: 999;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

    transition: all 0.3s ease;
}

.sk-whatsapp:hover {

    transform: translateY(-5px);

    color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .sk-service-contact {
        padding: 70px 0;
    }

    .sk-service-list {
        padding: 0 20px 50px;
    }

    .sk-contact-form {
        margin-left: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .sk-service-contact {
        padding: 55px 0;
    }

    .sk-service-list {
        padding: 0 5px 40px;
    }

    .sk-service-item {
        font-size: 15px;
        min-height: 58px;
    }

    .sk-service-icon {
        width: 40px;
        margin-right: 28px;
        font-size: 18px;
    }

    .sk-service-item::before {
        left: 59px;
    }

    .sk-service-item::after {
        left: 55px;
    }

    .sk-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .sk-contact-form {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .sk-input-box input {
        height: 55px;
    }

    .sk-input-box textarea {
        height: 145px;
    }

    .sk-send-btn {
        width: 100%;
    }

    .sk-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

}

/* =========================================
   SERVICE LOCATIONS
========================================= */

.sk-location-section {
    padding: 40px 0;
    background: #f1f6fc;
}


/* =========================================
   5 x 2 GRID
========================================= */

.sk-location-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}


/* =========================================
   LOCATION CARD
========================================= */

.sk-location-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 20px;
    border: 1px solid #e4eaf2;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sk-location-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0e3f5a;
}

.sk-location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(6, 48, 133, 0.12);
}


/* =========================================
   LOCATION HEADER
========================================= */

.sk-location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 17px;
    border-bottom: 1px solid #edf0f4;
}

.sk-location-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #0e3f5a;
    color: #ffffff;
    font-size: 17px;
}

.sk-location-header span {
    display: block;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.sk-location-header h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    color: #172033;
}


/* =========================================
   SERVICES
========================================= */

.sk-location-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.sk-location-services a {
    position: relative;
    display: block;
    padding-left: 16px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sk-location-services a::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0e3f5a;
    left: 0;
    top: 7px;
}

.sk-location-services a:hover {
    color: #0e3f5a;
    padding-left: 20px;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199px) {

    .sk-location-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 767px) {

    .sk-location-section {
        padding: 55px 0;
    }

    .sk-location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .sk-location-section {
        padding: 45px 15px;
    }

    .sk-location-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sk-location-card {
        padding: 22px 18px;
    }

    .sk-location-header h3 {
        font-size: 18px;
    }

}

/* FAQ ANSWER - SHOW BY DEFAULT */

.sk-faq-answer.show {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sk-faq-answer p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}







/* =========================================
   SK ELEVATIONS SERVICE CONTACT
========================================= */

.sk-service-contact {
    position: relative;
    padding: 90px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}


/* =========================================
   BACKGROUND OVERLAY
========================================= */

.sk-service-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2, 24, 57, 0.97) 0%,
            rgba(3, 35, 75, 0.91) 45%,
            rgba(3, 30, 65, 0.82) 100%
        );

    z-index: 0;
}

.sk-service-contact .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   SERVICES
========================================= */

.sk-services-list {
    padding: 15px 55px 15px 10px;
}


/* SERVICE ITEM */

.sk-service-item {
    display: flex;
    align-items: center;

    min-height: 8px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 600;

    transition: all 0.3s ease;
}


/* =========================================
   SERVICE ICON
========================================= */

.sk-service-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    margin-right: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: 063085;

    font-size: 21px;

    transition: all 0.3s ease;
}


/* Hover */

.sk-service-item:hover {
    transform: translateX(6px);
}

.sk-service-item:hover .sk-service-icon {
    

    color: #063085;

    border-color: #0e3f5a;

    transform: scale(1.05);
}


/* =========================================
   CONTACT FORM
========================================= */

.sk-contact-form {
    position: relative;

    background: rgba(255, 255, 255, 0.98);

    padding: 48px 42px 42px;

    border-radius: 28px;

    margin-left: 15px;

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.28);

    overflow: hidden;
}


/* Top gradient */

.sk-contact-form::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #125695,
        #0e3f5a,
        #125695
    );
}


/* =========================================
   TOP DECORATION
========================================= */

.sk-contact-form::after {
    content: "";

    position: absolute;

    top: 25px;
    left: 50%;

    width: 65px;
    height: 4px;

    transform: translateX(-50%);

    border-radius: 10px;

}


/* =========================================
   FORM ROW
========================================= */

.sk-form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 18px;
}


/* =========================================
   INPUT
========================================= */

.sk-input-box {
    width: 100%;
}

.sk-input-box input,
.sk-input-box textarea {

    width: 100%;

    border: 1px solid #d5dce7;

    background: #f7f9fc;

    border-radius: 12px;

    color: #10284f;

    font-size: 15px;

    font-weight: 500;

    outline: none;

    transition: all 0.3s ease;
}


/* Input */

.sk-input-box input {
    height: 62px;

    padding: 0 20px;
}


/* Textarea */

.sk-input-box textarea {
    height: 180px;

    padding: 20px;

    resize: none;
}


/* Placeholder */

.sk-input-box input::placeholder,
.sk-input-box textarea::placeholder {
    color: #71809a;

    opacity: 1;
}


/* =========================================
   INPUT HOVER
========================================= */

.sk-input-box input:hover,
.sk-input-box textarea:hover {
    border-color: #0e3f5a;
}


/* =========================================
   INPUT FOCUS
========================================= */

.sk-input-box input:focus,
.sk-input-box textarea:focus {

    background: #ffffff;

    border-color: #0e3f5a;

    box-shadow:
        0 0 0 3px rgba(8, 200, 232, 0.10);

}


/* =========================================
   MESSAGE
========================================= */

.sk-message-box {
    margin-bottom: 25px;
}


/* =========================================
   SEND BUTTON
========================================= */

.sk-send-btn {

    min-width: 205px;

    height: 58px;

    padding: 0 12px 0 28px;

    border: none;

    border-radius: 35px;

    background: linear-gradient(
        135deg,
        #125695,
        #0e3f5a
    );

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    cursor: pointer;

    transition: all 0.35s ease;
}


/* Arrow circle */

.sk-send-btn i {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 2px solid rgba(255, 255, 255, 0.9);

    border-radius: 50%;

    font-size: 13px;

    transition: all 0.3s ease;
}


/* Button hover */

.sk-send-btn:hover {

    background: linear-gradient(
        135deg,
        #08c8e8,
        #063085
    );

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(6, 48, 133, 0.28);
}

.sk-send-btn:hover i {
    transform: translateX(3px);
}


/* =========================================
   WHATSAPP
========================================= */

.sk-whatsapp {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    font-size: 27px;

    z-index: 999;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25);

    transition: all 0.3s ease;
}

.sk-whatsapp:hover {
    transform: translateY(-5px);
    color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .sk-service-contact {
        padding: 70px 0;
    }

    .sk-services-list {
        padding: 0 20px 50px 10px;
    }

    .sk-contact-form {
        margin-left: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .sk-service-contact {
        padding: 55px 0;
    }

    .sk-services-list {
        padding: 0 5px 40px;
    }

    .sk-service-item {
        min-height: 65px;
        font-size: 15px;
    }

    .sk-service-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        margin-right: 18px;
        font-size: 18px;
    }

    .sk-contact-form {
        margin: 0 5px;
        padding: 40px 20px 30px;
        border-radius: 22px;
    }

    .sk-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .sk-input-box input {
        height: 56px;
    }

    .sk-input-box textarea {
        height: 145px;
    }

    .sk-send-btn {
        width: 100%;
    }

    .sk-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

}

.sk-service-contact {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 520px;
    padding: 40px 0;

    display: flex;
    align-items: center;
}

/* =========================================
   SK ELEVATIONS SERVICES + CONTACT
========================================= */

.sk-service-contact {
    position: relative;
    width: 100%;
    height: 500px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Overlay */
.sk-service-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Content above overlay */
.sk-service-contact .container {
    position: relative;
    z-index: 2;
}

.sk-service-contact .row {
    align-items: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .sk-service-contact {
        height: 400px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .sk-service-contact {
        height: 330px;
    }

}

/* CONTACT FORM - SIZE REDUCE ONLY */

.sk-contact-form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 32px;
}

/* Input rows */
.sk-form-row {
    gap: 15px;
    margin-bottom: 15px;
}

.sk-input-box input {
    height: 50px;
    padding: 0 16px;
    font-size: 14px;
}

/* Message */
.sk-message-box textarea {
    height: 130px;
    padding: 15px 16px;
    font-size: 14px;
}

/* Button */
.sk-send-btn {
    padding: 12px 22px;
    font-size: 14px;
}


/* MOBILE */
@media (max-width: 767px) {

    .sk-contact-form {
        max-width: 92%;
        padding: 22px;
    }

    .sk-input-box input {
        height: 46px;
    }

    .sk-message-box textarea {
        height: 110px;
    }
}

/* FAQ ANSWER - SHOW BY DEFAULT */

.sk-faq-answer.show {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sk-faq-answer p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


.sk-faq-answer:not(.show) {
    display: none;
}

/* FAQ ANSWER - SHOW BY DEFAULT */

.sk-faq-answer.show {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sk-faq-answer p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* =========================================
   LOCATION CITY HIGHLIGHT
========================================= */

.sk-location-list a {
    color: #252525;
    text-decoration: none;
}

.sk-location-list a:hover{
    color:#063085;
}

.sk-location-list a span {
    color: #063085;
    font-weight: 600;
}

.sk-location-list a:hover span {
    color: #172b43;
}


.sk-location-page h1 {
    color: #172b43 !important;
}

.sk-location-page h1 strong {
    color: #063085 !important;
}

.sk-location-page  h1 strong {
    color: #063085 !important;
    font-weight: 500 !important;
}