/* =========================================
   ROOT / VARIABLES
   ========================================= */
:root {
    --cyan: #29C3D4;
    --cyan-dark: #1FA8B8;
    --yellow: #F8CC00;
    --blue: #58B2E0;
    --dark: #1a1a1a;
    --text: #444;
    --gray: #555555;
    --light-bg: #f5fbfd;
    --white: #ffffff;
    --border: #e2eef4;
    --radius: 6px;
    --shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

/* =========================================
   GLOBAL UTILITIES  
   ========================================= */
.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
}

.section-heading span {
    color: var(--cyan);
}

.section-eyebrow {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 6px;
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;

}

.section-subtext {
    font-size: 15px;
    color: var(--text);
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: center;
}


/* =========================================
   1. HERO SLIDER
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 520px;
}

.hs-track {
    position: relative;
    height: 100%;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    z-index: 0;
}

.hs-slide.active {
    opacity: 1;
    z-index: 1;
}

.hs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hs-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .40);
}

.hs-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 760px;
}

.hs-content h1,
.hs-content h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hs-content p {
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 1.5;
}

.hs-btn {
    display: inline-block;
    background: var(--cyan);
    color: #fff;
    padding: 13px 36px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background .3s, transform .3s;
    letter-spacing: .5px;
}

.hs-btn:hover {
    background: var(--cyan-dark);
    transform: translateY(-2px);
}

.hs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .35);
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 3;
    transition: background .3s;
    border-radius: 3px;
}

.hs-nav:hover {
    background: var(--cyan);
}

.hs-prev {
    left: 16px;
}

.hs-next {
    right: 16px;
}

.hs-dots {
    position: absolute;
    bottom: 18px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}

.hs-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: background .3s, transform .3s;
    border: none;
}

.hs-dot.active {
    background: var(--cyan);
    transform: scale(1.25);
}


/* =========================================
   2. WHO WE ARE — FLOAT SPLIT LAYOUT
   ========================================= */

/* clearfix */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.we-are-section {
    width: 100%;
    overflow: hidden;
    /* contains floats */
    font-size: 0;
    /* removes inline-block gap if needed */
}

/* ── LEFT 50% ── */
.wea-left {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    min-height: 480px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    box-sizing: border-box;
    font-size: 16px;
}

/* dark scrim */
.wea-left-opacity {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .42);
}

.wea-left-body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Full-width teal title bar at the top */
.wea-site-title {
    display: block;
    width: 100%;
    background: var(--cyan);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    padding: 14px 24px;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
    letter-spacing: .3px;
    position: relative;
    z-index: 2;
}

/* Video pinned to bottom-right */
.wea-video-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 62%;
    max-width: 500px;
    z-index: 2;
}

.wea-video-float video {
    width: 100%;
    display: block;
    border-radius: 3px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .6);
}

/* ── RIGHT 50% ── */
.wea-right {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    min-height: 480px;
    background: #2d3142;
    box-sizing: border-box;
    font-size: 16px;
}

.wea-right-body {
    padding: 50px 44px;
}

.wea-heading {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    font-family: 'Georgia', serif;
}

/* Short amber underline */
.wea-underline {
    width: 44px;
    height: 3px;
    background: #e8a020;
    border-radius: 2px;
    margin-bottom: 22px;
}

.wea-right-body p {
    font-size: 18px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Stats row */
.wea-stats {
    display: table;
    width: 100%;
    margin-top: 28px;
    padding-top: 22px;
    /* border-top: 1px solid rgba(255, 255, 255, .2); */
    border-collapse: collapse;
}

.wea-stat-item {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 0 8px;
    border-right: 1px solid rgba(255, 255, 255, .25);
    width: 33.33%;
}

.wea-stat-item.wea-no-border {
    border-right: none;
}

.wea-stat-item p {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {

    .wea-left,
    .wea-right {
        display: block;
        width: 100%;
    }

    .wea-left {
        min-height: 360px;
    }

    .wea-right {
        min-height: auto;
    }

    .wea-video-float {
        width: 55%;
    }

    .wea-right-body {
        padding: 36px 28px;
    }
}

@media (max-width: 576px) {
    .wea-left {
        min-height: 280px;
    }

    .wea-site-title {
        font-size: 17px;
        padding: 12px 16px;
    }

    .wea-video-float {
        width: 60%;
        right: 10px;
        bottom: 10px;
    }

    .wea-right-body {
        padding: 28px 18px;
    }

    .wea-heading {
        font-size: 21px;
    }

    .wea-right-body p {
        font-size: 14px;
    }

    .wea-stat-item p {
        font-size: 13px !important;
    }
}


/* =========================================
   3. SERVICES SECTION
   ========================================= */
.services-section {
    padding: 40px 0;
    background: var(--light-bg);
    /* text-align: center; */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px;
}

/* ── Card ── */
.service-list-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
}

/* Card media */
.service-media {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Image with side padding + rounded top — exact match to design */
.service-media>a:not(.arrow-btn) {
    display: block;
}

.service-media img {
    display: block;
    width: calc(100% - 32px);
    /* side padding */
    height: auto;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin: 40px 16px 0;
    transition: transform .35s ease;
}

.service-list-card:hover .service-media img {
    transform: scale(1.04);
}

/* Yellow discount badge */
.badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--yellow);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1.1;
    z-index: 2;
}

.pct-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background: #000;
    color: var(--yellow);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
}

/* Teal arrow button */
.arrow-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--cyan);
    color: #fff;
    width: 52px;
    height: 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    z-index: 2;
    transition: background .2s;
}

.arrow-btn:hover {
    background: var(--cyan-dark);
    color: #fff;
    text-decoration: none;
}

/* Card text */
.service-body {
    padding: 12px 14px 16px;
    flex: 1;
    text-align: left;
}

.service-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 5px;
    line-height: 1.3;
}

.service-body h3 a {
    color: inherit;
    text-decoration: none;
}

.service-body h3 a:hover {
    color: var(--cyan);
}

.service-body p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* View All Toggle */
.srv-toggle-wrap {
    text-align: center;
    margin-top: 40px;
}

.srv-toggle-btn {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    font-size: 15px;
    font-weight: 700;
    padding: 11px 28px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .3s, color .3s;
}

.srv-toggle-btn:hover,
.srv-toggle-btn.is-open {
    background: var(--cyan);
    color: #fff;
}

.btn-arrow i {
    transition: transform .4s;
}

.srv-toggle-btn.is-open .btn-arrow i {
    transform: rotate(180deg);
}


/* =========================================
   4. TESTIMONIALS
   ========================================= */
.testi-section {
    padding: 40px 0;
    background: var(--white);
    border-top: 3px solid var(--light-bg);
}

.testi-header {
    /* display: flex; */
    gap: 60px;
    align-items: center;
}

.testi-headline {
    flex: 0 0 260px;
}

.testi-headline h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    font-family: 'Georgia', serif;
    margin-bottom: 14px;
    text-align: center;
}

.testi-headline h2 strong {
    color: var(--cyan);
}

.testi-count {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    padding-top: 10px;
    border-top: 2px solid var(--border);
    text-align: center;
}

.testi-slider-wrap {
    flex: 1;
    overflow: hidden;
}

.testi-track {
    display: flex;
    transition: transform .5s ease;
    gap: 20px;
}

.testi-card {
    flex: 0 0 calc(50% - 10px);
    background: var(--light-bg);
    border-radius: 12px;
    padding: 30px 36px;
    border: 1px solid var(--border);
    box-sizing: border-box;
}

.testi-card p {
    font-size: 15px;
    color: var(--text);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 22px;
    position: relative;
    padding-left: 24px;
}

.testi-card p::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 42px;
    color: var(--cyan);
    line-height: 1;
    font-style: normal;
    font-family: Georgia, serif;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--cyan);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
}

.testi-author span {
    font-size: 13px;
    color: #888;
}

.testi-dots {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    justify-content: center;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    border: none;
    transition: background .3s, transform .3s;
    display: block;
}

.testi-dot.active {
    background: var(--cyan);
    transform: scale(1.3);
}


/* =========================================
   5. MAIN SERVICES (Tabs)
   ========================================= */
.main-srv-section {
    padding: 40px 0;
    background: var(--light-bg);
}

.msrv-tabs {
    display: flex;
    gap: 0;
    border-bottom: 3px solid var(--cyan);
    margin: 30px 0 0;
}

.msrv-tab {
    padding: 12px 28px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    transition: background .3s, color .3s;
}

.msrv-tab:hover {
    background: rgba(41, 195, 212, .1);
    color: var(--cyan);
}

.msrv-tab.active {
    background: var(--cyan);
    color: #fff;
}

.msrv-panels {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.msrv-panel {
    display: none;
}

.msrv-panel.active {
    display: block;
}

.msrv-panel-inner {
    padding: 36px 40px;
}

.msrv-panel-inner h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.msrv-panel-inner p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.msrv-panel-inner ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.msrv-panel-inner ul li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
}

.msrv-panel-inner ul li:last-child {
    border-bottom: none;
}

.msrv-panel-inner ul li a {
    font-size: 14px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.msrv-panel-inner ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    flex-shrink: 0;
}

.msrv-panel-inner ul li a:hover {
    color: var(--cyan);
}

.msrv-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.msrv-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cyan);
    color: #fff;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .3s;
}

.msrv-cta:hover {
    background: var(--cyan-dark);
}


/* =========================================
   6. OFFERS SECTION
   ========================================= */
.offers-section {
    padding: 40px 0;
    background: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 36px;
}

.offer-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--white);
    transition: transform .3s, box-shadow .3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(41, 195, 212, .14);
}

.offer-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.offer-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform .5s;
}

.offer-card:hover .offer-img img {
    transform: scale(1.05);
}

.offer-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-badge {
    display: inline-block;
    background: var(--cyan);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.offer-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.offer-body p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.offer-btn {
    display: inline-block;
    background: var(--dark);
    color: #fff;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    align-self: flex-start;
    transition: background .3s;
}

.offer-btn:hover {
    background: var(--cyan);
}


/* =========================================
   7. BLOGS SECTION
   ========================================= */
.blogs-section {
    padding: 40px 0;
    background: var(--light-bg);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(41, 195, 212, .13);
    border-color: var(--cyan);
}

.blog-card-img {
    display: block;
    width: 100%;
    height: 175px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-body h4 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.blog-card-body h4 a {
    color: var(--dark);
    text-decoration: none;
    transition: color .2s;
}

.blog-card:hover .blog-card-body h4 a {
    color: var(--cyan);
}

.blog-card-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}

.blog-read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s;
    margin-top: auto;
}

.blog-card:hover .blog-read-more {
    gap: 10px;
}


/* =========================================
   8. CTA / CONTACT SECTION
   ========================================= */
.cta-section {
    padding: 80px 0;
    background: var(--cyan);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/pattern-corporate.webp');
    background-repeat: repeat;
    opacity: .12;
    pointer-events: none;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.cta-text h2 {
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 28px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background .3s;
}

.cta-btn:hover {
    background: #333;
}

.cta-form-box {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 36px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.cta-form-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 22px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--dark);
    background: #fafafa;
    box-sizing: border-box;
    transition: border-color .25s;
    font-family: inherit;
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--cyan);
    background: #fff;
}

.cta-form textarea {
    resize: vertical;
}

.cta-submit {
    background: var(--cyan);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .3s;
    font-family: inherit;
}

.cta-submit:hover {
    background: var(--cyan-dark);
}


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-slider {
        height: 420px;
    }

    .hs-content h1,
    .hs-content h2 {
        font-size: 34px;
    }



    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-header {
        flex-direction: column;
        gap: 36px;
    }

    .testi-headline {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .msrv-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 380px;
    }

    .hs-content h1,
    .hs-content h2 {
        font-size: 26px;
    }

    .hs-content p {
        font-size: 15px;
    }

    .section-heading {
        font-size: 26px;
    }

    .who-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .msrv-panel-inner {
        padding: 24px 20px;
    }

    .cta-form-box {
        padding: 26px 22px;
    }

    /* .msrv-tabs {
        flex-wrap: wrap;
    } */

    .testi-card {
        padding: 24px 20px;
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .service-media img {
        height: auto;
        margin: 14px 10px 0;
        width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 340px;
    }

    .hs-content h1,
    .hs-content h2 {
        font-size: 22px;
    }

    .hs-btn {
        padding: 11px 24px;
        font-size: 14px;
    }

    .who-stat {
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 400px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



.contact-cta {
    background: #fff;
    padding: 40px 0 70px;
}

.contact-cta__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
    box-sizing: border-box;
}

.contact-cta__heading {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--cyan);
    margin: 0 0 20px;
}

/* Info cards */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}

.contact-info-card {
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 16px 20px;
    background: #fff;
}

.contact-cta__address {
    font-size: 15px;
    color: var(--cyan);
    font-weight: 700;
    margin: 0;
}

.contact-cta__phone {
    font-size: 16px;
    color: var(--cyan);
    font-weight: 700;
    text-decoration: none;
}

.contact-cta__phone:hover {
    text-decoration: underline;
}

/* Working hours with floating label */
.contact-info-card--hours {
    position: relative;
    padding-top: 28px;
    margin-top: 22px;
}

.contact-info-card--hours::before {
    content: "WORKING HOURS";
    position: absolute;
    top: -12px;
    left: 18px;
    background: #fff;
    padding: 0 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: .5px;
}

.contact-cta__hours {
    font-size: 14px;
    color: #000;
    margin: 0;
}

/* Form */
.contact-cta__form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 13px;
    color: #888;
}

.form-field input,
.form-field textarea {
    border: 1px solid var(--cyan);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 15px;
    color: #000;
    background: #fafafa;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    transition: box-shadow .2s, background .2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #aaa;
}

.form-field input:focus,
.form-field textarea:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 154, 181, .12);
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-form-outline {
    display: inline-block;
    background: #fff;
    color: var(--cyan);
    border: 1.5px solid var(--cyan);
    border-radius: 25px;
    padding: 11px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .25s, color .25s;
    font-family: 'Open Sans', sans-serif;
}

.btn-form-outline:hover {
    background: var(--cyan);
    color: #fff;
}

.btn-form-cyan {
    display: inline-block;
    background: var(--cyan);
    color: #fff;
    border: 1.5px solid var(--cyan);
    border-radius: 25px;
    padding: 11px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .25s, color .25s;
}

.btn-form-cyan:hover {
    background: #007a90;
    color: #fff;
    text-decoration: none;
}

/* Alerts */
.contact-alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-alert--success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.contact-alert--error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ============================================================
   8. CONTACT CTA - Mobile Styles
   ============================================================ */
@media (max-width: 768px) {
    .contact-cta {
        padding: 40px 0;
    }

    /* Stack left and right sections vertically */
    .contact-cta__container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }

    .contact-cta__left,
    .contact-cta__right {
        width: 100%;
    }

    /* Center the heading */
    .contact-cta__heading {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }

    /* Adjust contact info cards spacing */
    .contact-info-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Make form rows stack vertically */
    .contact-cta__form .form-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .contact-cta__form .form-field {
        width: 100%;
    }

    /* Make buttons stack and take full width */
    .contact-cta__form .form-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .contact-cta__form .btn-form-outline,
    .contact-cta__form .btn-form-cyan {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}