/* ========================================= GLOBAL UTILITIES ========================================= */
.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ══════════════════════════════════════════════════════ HERO SLIDER ══════════════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 560px;
    max-height: 780px;
    overflow: hidden;
    background: #111111;
}

.hs-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.85s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.6s ease;
    z-index: 1;
}

.hs-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 3;
}

.hs-slide.hs-enter-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 2;
}

.hs-slide.hs-enter-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 2;
}

.hs-slide.hs-exit-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 2;
}

.hs-slide.hs-exit-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 2;
}

.hs-slide picture,
.hs-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hs-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.25);
}

.hs-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hs-content h1,
.hs-content h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    line-height: 60px;
    text-transform: uppercase;
    max-width: 740px;
    text-align: center;
    margin: 0 auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hs-content p {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 30px;
    text-align: center;
}

.hs-content span {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: .25rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
}

.hs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 15px 32px;
    background: #1D75BC;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid #1D75BC;
}

.hs-btn:hover {
    background: #ffffff;
    color: #000;
    border: 2px solid #E4003D;
    transform: translateY(-2px);
}

.hs-slide.active .hs-content h1,
.hs-slide.active .hs-content h2,
.hs-slide.active .hs-content p,
.hs-slide.active .hs-content .hs-btn {
    opacity: 0;
    transform: translateY(-32px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.hs-slide.active .hs-content h1,
.hs-slide.active .hs-content h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.hs-slide.active .hs-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.38s;
}

.hs-slide.active .hs-content .hs-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hs-indicators {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.hs-indicator {
    width: 40px;
    height: 6px;
    border-radius: 2px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.hs-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hs-indicator.active {
    background: #ffffff;
    width: 48px;
}

.hs-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.hs-btn--white {
    background: #00196e;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 0px;
    padding: 14px 30px;
    border: 2px solid #00196e;
}

.hs-btn--white:hover {
    background: #ffffff;
    color: #000;
    border: 2px solid #00196e;
}

.hs-btn--yellow {
    background: #FF9802;
    color: #fff;
    display: inline-flex;
    align-items: center;
    border: 2px solid #FF9802;
    padding: 14px 30px;
}

.hs-btn--yellow:hover {
    background: #ffffff;
    color: #000000;
    border: 2px solid #FD5003;
}

@media (max-width: 991px) {
    .hero-slider {
        height: 620px;
    }

    .hs-content h1,
    .hs-content h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .hs-content p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .hero-slider {
        height: 560px;
    }

    .hs-content h1,
    .hs-content h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .hs-btn {
        padding: 12px 22px;
        font-size: 13px;
    }
}

@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;
    }
}

/* ============================================================ ABOUT US / PROCESS SECTION ============================================================ */
.process-section {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.process-section .content {
    max-width: 1100px;
    margin: 0 auto;
}

.process-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 18px;
    letter-spacing: -0.3px;
}

.process-section p {
    font-size: 18px;
    line-height: 1.75;
    color: #000;
    margin: 0;
}

@media (max-width: 768px) {
    .process-section {
        padding: 44px 0;
    }

    .process-section h2 {
        font-size: 26px;
    }

    .process-section p {
        font-size: 15px;
    }
}

/* ══════════════════════════════════════════════════════ PROCESS SECTION (image left + content right) ══════════════════════════════════════════════════════ */
.process-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

.process-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.process-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
}

.process-steps {
    align-content: left;
}

.process-step-card {
    text-align: left;
}

.process-step-card h2 {
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px;
    line-height: 1.3;
}

.process-step-card p {
    font-size: 18px;
    line-height: 1.85;
    color: #000000;
    margin: 0;
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        justify-content: center;
        place-items: center;
    }

    .process-media {
        min-height: 320px;
        max-width: 550px;
    }
}

@media (max-width: 575px) {
    .process-section {
        padding: 40px 0;
    }
}

/* ========================================= SERVICES SECTION ========================================= */
.services-section {
    position: relative;
    padding: 40px 0;
    background: #ffffff;
    overflow: visible;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.service-list-card {
    background: #fff;
    overflow: visible;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 30px;
}

.service-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.service-media {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-media>a {
    display: block;
    position: relative;
}

.service-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.35s ease;
}

.service-list-card:hover .service-media img {
    transform: scale(1.04);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading,
.services-header .section-heading {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
}

.services-header__subtitle {
    margin-bottom: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.srv-toggle-wrap {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================= OFFERS SECTION ========================================= */
.offers-section {
    padding: 60px 0;
    background: #ffffff;
}

.offers-header-grid {
    align-items: center;
    margin-bottom: 20px;
    place-items: center;
}

.offers-header-grid h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111111;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.offers-header-grid p {
    font-size: 18px;
    line-height: 1.75;
    color: #000000;
    margin: 0;
    text-align: center;
    max-width: 1200px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offer-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.offer-card>a {
    display: block;
    text-decoration: none;
}

.offer-img {
    position: relative;
    overflow: hidden;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: transform 0.35s ease;
}

.offer-card:hover .offer-img img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .offers-header-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .offers-header-grid h2 {
        font-size: 26px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================= BLOGS SECTION ========================================= */
.blogs-section {
    padding: 40px 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.blog-card {
    background: #ffffff;
    overflow: hidden;
    border: 1px solid #e2eef4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose-header {
    text-align: center;
}

.why-choose-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
}

.why-choose-header p {
    font-size: 18px;
    color: #000000;
}

.blog-card-img {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.blog-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
    pointer-events: none;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card:hover .blog-card-img::after {
    background: rgba(0, 0, 0, 0.20);
}

.blog-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-body h3 {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.45;
    color: #0e3c7b;
    text-align: center;
}

.blog-card-body p {
    margin: 0 0 10px;
    font-size: 18px;
}

@media (max-width: 991px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 550px) {
    .blogs-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* ══════════════════════════════════════════════════════ TESTIMONIALS (single-card panel design) ══════════════════════════════════════════════════════ */
.testimonials-new {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.testimonials-new__title {
    font-size: 28px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 20px;
    text-align: left;
}

.t2-outer {
    background: #F4F4F4;
    border-radius: 6px;
    padding: 28px;
}

.t2-wrap {
    position: relative;
    min-height: 170px;
}

.t2-page {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
}

.t2-page.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0s;
}

.t2-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 32px 34px;
    text-align: left;
}

.t2-text {
    font-size: 18px;
    line-height: 1.75;
    color: #000;
    margin: 0 0 22px;
}

.t2-name {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px;
}

.t2-location {
    font-size: 16px;
    color: #000;
    margin: 0;
}

.t2-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding-left: 4px;
}

.t2-dot {
    height: 4px;
    width: 20px;
    border-radius: 2px;
    background: #D8D8D8;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease;
}

.t2-dot.active {
    width: 32px;
    background: #D9622B;
}

@media (max-width: 767px) {
    .t2-outer {
        padding: 18px;
    }

    .t2-card {
        padding: 24px 22px;
    }
}

/* ══════════════════════════════════════════════════════ CTA BANNER (Get 20% Off) ══════════════════════════════════════════════════════ */
.cta-banner-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #E94800 0%, #D84402 100%);
}

.cta-banner {
    border-radius: 12px;
    padding: 30px 0px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.cta-banner__icon {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(#FDF2E1 0%, #FF9802 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner__icon svg {
    width: 30px;
    height: 30px;
}

.cta-banner__text {
    flex: 1 1 320px;
}

.cta-banner__text h3 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.cta-banner__text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    max-width: 440px;
}

.cta-banner__btn {
    flex: 0 0 auto;
    background: #F2941D;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 30px;
    /* border-radius: 5px; */
    border: 2px solid #F2941D;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-banner__btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #FF9802;
}

@media (max-width: 767px) {
    .cta-banner {
        padding: 26px 24px;
        justify-content: center;
    }

    .cta-banner__btn {
        align-self: stretch;
        text-align: center;
    }

    .cta-banner__text h3 {
        font-size: 18px;
        text-align: center;
    }
    .cta-banner__text p{
        text-align: center;
    }
}

/* ══════════════════════════════════════════════════════ WHY CHOOSE US ══════════════════════════════════════════════════════ */
.why-section {
    background: #FFF0D9;
    padding: 64px 40px 72px;
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.why-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.why-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    color: #000000;
    font-size: 18px;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    row-gap: 36px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F26522;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 26px;
    height: 26px;
    stroke: #ffffff;
    fill: none;
}

.why-heading {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px;
}

.why-text {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin-top: 4px;
}

@media (max-width: 700px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-title {
        font-size: 28px;
    }

    .why-section {
        padding: 48px 20px;
    }
}

/* ══════════════════════════════════════════════════════ STATS / COUNTERS ══════════════════════════════════════════════════════ */
.stats-section {
    position: relative;
    background-image:
        linear-gradient(rgba(15, 15, 20, 0.55), rgba(15, 15, 20, 0.55)),
        url('../img/counter-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 56px 20px;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    position: relative;
}

.stat-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    color: #F2C230;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-number .plus {
    font-size: 32px;
    font-weight: 700;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff;
}

@media (max-width: 800px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 36px;
    }

    .stat-item:nth-child(3)::before {
        display: none;
    }
}

@media (max-width: 460px) {
    .stats-inner {
        grid-template-columns: 1fr;
    }

    .stat-item::before {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════ GET AN APPOINTMENT ══════════════════════════════════════════════════════ */
.appt-section {
    position: relative;
    padding: 60px 0 90px;
}

.appt-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 260px;
   
    background-size: cover;
    background-position: center;
    filter: blur(1px);
}

.appt-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.appt-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-top: 70px;
}

.appt-form-side {
    background: #FFF0D9;
    border: 2px solid #F2861D;
    border-right: none;
    padding: 34px 38px;
}

.appt-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.appt-subtitle {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 22px;
}

.appt-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.appt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.appt-form input,
.appt-form select {
    width: 100%;
    padding: 13px 14px;
    border: none;
    border-radius: 2px;
    background: #ffffff;
    font-size: 13.5px;
    color: #333;
    font-family: inherit;
    outline: none;
}

.appt-form input::placeholder {
    color: #000000;
}

.appt-form select {
    color: #000;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.appt-submit-wrap {
    position: relative;
    margin-top: 4px;
}

.appt-submit {
    width: 100%;
    background: #FF9802;
    color: #ffffff;
    border: none;
    padding: 15px 18px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s ease;
    border: 2px solid #FF9802;
}

.appt-submit:hover {
    background: #ffffff;
    color: #000000;
    border: 2px solid #FF9802;
}

.appt-privacy {
    font-size: 16.5px;
    color: #00196E;
    margin-top: 10px;
}

.appt-image-side {
    position: relative;
    border: 2px solid #FD5003;
    border-left: none;
    min-height: 100%;
}

.appt-image-side img {
    width: 100%;
    height: 100%;
    border: 2px solid #FD5003;
    object-fit: cover;
    display: block;
}

.appt-field {
    position: relative;
}

.appt-err {
    display: block;
    font-size: 11.5px;
    color: #d9302f;
    margin-top: 4px;
}

@media (max-width: 800px) {
    .appt-card {
        grid-template-columns: 1fr;
    }

    .appt-form-side {
        border-right: 2px solid #FD5003;
        border-bottom: none;
    }

    .appt-image-side {
        border-left: 2px solid #FD5003;
        border-top: none;
        min-height: 260px;
    }

    .appt-row {
        grid-template-columns: 1fr;
    }
}