:root {
    --flame-red: #e63946;
    --soft-blush: #fdeaeb;
    --deep-crimson: #c8252f;
    --secondary-color: #4a90e2;
    --secondary-light: #e8f4f8;
    --tertiary-color: #f39c12;
    --tertiary-light: #fef5e7;
    --accent-color: #2ecc71;
    --accent-light: #e8f8f5;
    --neutral-color: #95a5a6;
    --neutral-light: #f8f9fa;
    --info-color: #17a2b8;
    --warning-color: #dc3545;
    --success-color: #28a745;
    --midnight-shadow: #2c3e50;
    --pearl-white: #ffffff;
    --charcoal-text: #343a40;
    --silver-mist: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal-text);
    background-color: var(--pearl-white);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: var(--deep-crimson);
    margin-bottom: 1rem;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-12,
.col-lg-3,
.col-lg-4,
.col-lg-6,
.col-lg-8,
.col-xl-1,
.col-xl-4,
.col-xl-6,
.col-xl-7,
.col-xl-8 {
    padding: 0 15px;
}

.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }
.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-xl-6 { flex: 0 0 50%; max-width: 50%; }
.col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0;
    position: relative;
    background: var(--pearl-white);
    box-shadow: 0 3px 17px rgba(0,0,0,0.08);
}

.navbar-brand img {
    height: 47px;
    width: auto;
    transition: transform 0.34s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navbar-brand img:hover {
    transform: scale(1.07);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 34px;
    height: 3px;
    background: var(--deep-crimson);
    position: relative;
    transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 3px;
    background: var(--deep-crimson);
    transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger:before {
    top: -11px;
}

.hamburger:after {
    top: 11px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--charcoal-text);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.31s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--flame-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--flame-red);
    transition: width 0.34s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.slider_area {
    background: linear-gradient(127deg, var(--flame-red) 0%, var(--deep-crimson) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slider_area::before {
    content: '';
    position: absolute;
    top: -17%;
    right: -23%;
    width: 47%;
    height: 134%;
    background: rgba(255,255,255,0.07);
    transform: rotate(-17deg);
    border-radius: 34px;
}

.single_slider {
    width: 100%;
    padding: 73px 0;
}

.slider_text {
    position: relative;
    z-index: 2;
}

.deal_text {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 13px 28px;
    border-radius: 34px;
    margin-bottom: 23px;
    backdrop-filter: blur(7px);
}

.deal_text span {
    font-size: 18px;
    font-weight: 500;
    color: var(--pearl-white);
    letter-spacing: 0.5px;
}

.slider_text h1 {
    font-size: clamp(48px, 8vw, 94px);
    font-weight: 300;
    color: var(--pearl-white);
    margin-bottom: -13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slider_text h2 {
    font-size: clamp(68px, 12vw, 134px);
    font-weight: 700;
    color: #f4c430;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.12);
}

.slider_text p {
    font-size: 21px;
    color: rgba(255,255,255,0.91);
    margin-bottom: 41px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.video_service_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
}

.boxed-btn3 {
    background: linear-gradient(127deg, #f4c430 0%, #e8b923 100%);
    color: var(--pearl-white);
    display: inline-block;
    padding: 17px 37px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 34px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 7px 21px rgba(244, 196, 48, 0.32);
}

.boxed-btn3:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 27px rgba(244, 196, 48, 0.41);
    background: linear-gradient(127deg, #e8b923 0%, #d4a419 100%);
}

.play-btn {
    width: 73px;
    height: 73px;
    background: rgba(255,255,255,0.17);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(7px);
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.play-btn:hover {
    background: var(--pearl-white);
    transform: scale(1.08);
}

.play-icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
    transition: filter 0.34s ease;
}

.play-btn:hover .play-icon {
    filter: brightness(0) saturate(100%) invert(18%) sepia(93%) saturate(1234%) hue-rotate(343deg) brightness(96%) contrast(94%);
}

.about_info_area {
    padding: 134px 0 94px;
    background: var(--pearl-white);
}

.about_info_area.plus_padding {
    padding-top: 154px;
}

.about_text h3 {
    font-size: 47px;
    font-weight: 400;
    color: var(--deep-crimson);
    margin-bottom: 28px;
    line-height: 1.23;
}

.about_text p {
    font-size: 17px;
    color: var(--silver-mist);
    margin-bottom: 23px;
    line-height: 1.67;
}

.about_text .boxed-btn3 {
    background: linear-gradient(127deg, var(--flame-red) 0%, var(--deep-crimson) 100%);
    margin-top: 17px;
}

.about_text .boxed-btn3:hover {
    background: linear-gradient(127deg, var(--deep-crimson) 0%, #a41e28 100%);
}

.about_thumb {
    border-radius: 17px;
    overflow: hidden;
    position: relative;
    transform: rotate(-1.3deg);
    box-shadow: 0 23px 67px rgba(0,0,0,0.13);
}

.about_thumb::before {
    content: '';
    position: absolute;
    top: -13px;
    left: -13px;
    right: -13px;
    bottom: -13px;
    background: linear-gradient(127deg, var(--flame-red), var(--tertiary-color));
    border-radius: 23px;
    z-index: -1;
}

.about_thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.54s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 13px;
}

.about_thumb:hover img {
    transform: scale(1.04);
}

.site-section {
    padding: 94px 0;
    background: var(--neutral-light);
}

.section-heading h2 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    position: relative;
    margin-bottom: 67px;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 73px;
    height: 4px;
    background: linear-gradient(90deg, var(--flame-red), var(--tertiary-color));
    border-radius: 2px;
}

.item {
    background: var(--pearl-white);
    border-radius: 17px;
    transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
    transition: left 0.73s ease;
}

.item:hover::before {
    left: 100%;
}

.item:hover {
    transform: translateY(-7px);
    box-shadow: 0 17px 47px rgba(0,0,0,0.11);
    border-color: var(--soft-blush);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 54px;
    height: 54px;
    filter: saturate(100%) invert(18%) sepia(93%) saturate(1234%) hue-rotate(343deg) brightness(96%) contrast(94%);
    transition: all 0.34s ease;
}

.item:hover .service-icon {
    transform: scale(1.13);
    filter: saturate(100%) invert(60%) sepia(94%) saturate(2234%) hue-rotate(25deg) brightness(103%) contrast(94%);
}

.h5 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 17px;
    color: var(--deep-crimson);
}

.section {
    padding: 94px 0;
}

.bg-light {
    background-color: var(--neutral-light);
}

.heading {
    font-size: 67px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
    color: var(--deep-crimson);
    margin-bottom: 28px;
}

.lead {
    font-size: 19px;
    font-weight: 300;
    color: var(--silver-mist);
    margin-bottom: 54px;
}

.site-block-half {
    background: var(--pearl-white);
    margin-bottom: 34px;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 13px 37px rgba(0,0,0,0.08);
    transition: transform 0.37s ease;
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

.site-block-half:hover {
    transform: translateY(-5px);
}

.site-block-half .image {
    flex: 0 0 50%;
    min-height: 370px;
    position: relative;
}

.site-block-half .bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    position: relative;
}

.site-block-half .bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--flame-red), transparent);
    opacity: 0.07;
    transition: opacity 0.34s ease;
}

.site-block-half:hover .bg-image::before {
    opacity: 0.13;
}

.site-block-half .text {
    flex: 1;
    padding: 47px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--pearl-white);
}

.site-block-half .text h2 {
    font-size: 34px;
    color: var(--deep-crimson);
    margin: 17px 0 21px;
    font-weight: 600;
}

.site-block-half .text .lead {
    font-size: 18px;
    color: var(--silver-mist);
    margin-bottom: 17px;
    font-weight: 400;
    line-height: 1.6;
}

.site-block-half .text p {
    color: var(--charcoal-text);
    line-height: 1.6;
    margin-bottom: 13px;
}

.site-block-half .text .d-block {
    margin-bottom: 21px;
    font-size: 16px;
    color: var(--silver-mist);
}

.site-block-half .text .btn {
    align-self: flex-start;
    margin-top: 13px;
}

.display-4 {
    font-size: 41px;
    font-weight: 700;
    line-height: 1.17;
    color: var(--flame-red);
}

.text-primary {
    color: var(--flame-red);
}

.btn {
    padding: 13px 28px;
    border-radius: 34px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.btn-primary {
    background: linear-gradient(127deg, var(--flame-red) 0%, var(--deep-crimson) 100%);
    color: var(--pearl-white);
    box-shadow: 0 7px 21px rgba(230, 57, 70, 0.27);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 27px rgba(230, 57, 70, 0.34);
    background: linear-gradient(127deg, var(--deep-crimson) 0%, #a41e28 100%);
}

.stats-counter {
    padding: 94px 0;
    background: var(--midnight-shadow);
    position: relative;
    overflow: hidden;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: -23%;
    left: -13%;
    width: 47%;
    height: 146%;
    background: rgba(230, 57, 70, 0.07);
    transform: rotate(-23deg);
    border-radius: 34px;
}

.counter-block {
    text-align: center;
}

.stat-number {
    font-size: 54px;
    font-weight: 700;
    color: #f4c430;
    display: block;
    margin-bottom: 13px;
    line-height: 1;
}

.counter-content span {
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.73);
    font-size: 15px;
    letter-spacing: 1px;
}

.ftco-section {
    padding: 94px 0;
}

.testimony-section {
    background: var(--pearl-white);
}

.heading-section .subheading {
    font-weight: 700;
    font-size: 17px;
    display: block;
    margin-bottom: 7px;
    color: var(--flame-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading-section h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--deep-crimson);
    margin-bottom: 23px;
}

.services-2 {
    margin-bottom: 34px;
}

.services-2 .icon {
    width: 67px;
    height: 67px;
    margin-right: 23px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-blush);
    border-radius: 50%;
    position: relative;
}

.services-2 .icon::after {
    content: '';
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border: 2px dashed var(--flame-red);
    border-radius: 50%;
    opacity: 0.37;
}

.services-icon {
    width: 31px;
    height: 31px;
    filter: saturate(100%) invert(18%) sepia(93%) saturate(1234%) hue-rotate(343deg) brightness(96%) contrast(94%);
}

.services-2 h3 {
    font-size: 23px;
    font-weight: 600;
    color: var(--deep-crimson);
    margin-bottom: 11px;
}

.services-2 .text {
    flex: 1;
}

.carousel-testimony {
    background: var(--neutral-light);
    border-radius: 17px;
    padding: 34px;
}

.testimony-wrap {
    background: var(--pearl-white);
    border-radius: 13px;
    padding: 28px;
    position: relative;
    box-shadow: 0 7px 23px rgba(0,0,0,0.07);
}

.quote {
    position: absolute;
    top: -17px;
    left: 28px;
    width: 34px;
    height: 34px;
    background: var(--flame-red);
    border-radius: 50%;
}

.quote-icon {
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
}

.testimony-wrap .name {
    font-weight: 600;
    font-size: 18px;
    color: var(--deep-crimson);
    margin-bottom: 3px;
}

.testimony-wrap .position {
    font-size: 14px;
    color: var(--silver-mist);
    font-style: italic;
}

.user-img {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 21px auto 0;
    border: 4px solid var(--soft-blush);
}

.block-32 {
    background: var(--pearl-white);
    padding: 41px;
    border-radius: 17px;
    box-shadow: 0 13px 37px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.field-icon-wrap {
    position: relative;
    margin-bottom: 7px;
}

.field-icon-wrap label {
    display: block;
    margin-bottom: 11px;
    font-weight: 600;
    color: var(--charcoal-text);
    font-size: 15px;
}

.form-control {
    height: 54px;
    border: 2px solid var(--neutral-color);
    border-radius: 11px;
    padding: 0 47px 0 17px;
    font-size: 16px;
    transition: all 0.31s ease;
    background: var(--pearl-white);
    width: 100%;
    color: var(--charcoal-text);
}

.form-control:focus {
    border-color: var(--flame-red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}

.field-icon-wrap .icon {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    z-index: 2;
    margin-top: 13px;
}

.form-icon {
    width: 21px;
    height: 21px;
    filter: saturate(100%) invert(48%) sepia(15%) saturate(1122%) hue-rotate(178deg) brightness(94%) contrast(86%);
}

select.form-control {
    appearance: none;
    background-image: none;
    cursor: pointer;
}

.font-weight-bold {
    font-weight: 600;
}

.text-black {
    color: var(--charcoal-text);
}

.btn-block {
    width: 100%;
    display: block;
}

.col-md-6.mb-3.mb-lg-0.col-lg-3,
.col-md-6.col-lg-3 {
    padding: 0 11px;
}

.col-md-6.mb-3.mb-md-0 .row {
    margin: 0 -7px;
}

.col-md-6.mb-3.mb-md-0 .col-md-6 {
    padding: 0 7px;
}

#contact .heading {
    font-size: 54px;
    margin-bottom: 47px;
}

#contact .container .row:first-child {
    margin-bottom: 41px;
}

.site-footer {
    padding: 74px 0;
    background: var(--midnight-shadow);
    color: rgba(255, 255, 255, 0.73);
}

.footer-heading {
    font-size: 19px;
    color: var(--pearl-white);
    font-weight: 600;
    margin-bottom: 23px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.73);
    line-height: 1.67;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.61);
    text-decoration: none;
    transition: color 0.31s ease;
}

.site-footer a:hover {
    color: var(--pearl-white);
}

.list-unstyled {
    list-style: none;
    padding: 0;
}

.list-unstyled li {
    margin-bottom: 13px;
}

.subscribe {
    margin-top: 21px;
}

.subscribe .form-control {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.23);
    color: var(--pearl-white);
}

.subscribe .form-control::placeholder {
    color: rgba(255, 255, 255, 0.53);
}

.subscribe .btn-primary {
    background: var(--flame-red);
    border: none;
    white-space: nowrap;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.text-white { color: var(--pearl-white); }
.d-flex { display: flex; }
.d-block { display: block; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mr-3 { margin-right: 1rem; }
.mt-5 { margin-top: 3rem; }
.pt-5 { padding-top: 3rem; }
.p-4 { padding: 1.5rem; }
.ml-auto { margin-left: auto; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.mx-auto { margin-left: auto; margin-right: auto; }
.align-self-end { align-self: flex-end; }

.site-block-half .order-1 {
    order: 1;
}

.site-block-half .order-2 {
    order: 2;
}

.site-block-half .image.order-2 {
    order: 2;
}

.site-block-half .text.order-1 {
    order: 1;
}

.form-control::-webkit-input-placeholder,
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::placeholder {
    color: var(--neutral-color);
    opacity: 1;
}

.form-control option {
    background: var(--pearl-white);
    color: var(--charcoal-text);
}

@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 100;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--pearl-white);
        transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 94px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        z-index: 99;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 13px 23px;
        font-size: 21px;
        color: var(--charcoal-text);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .col-md-4,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .heading {
        font-size: 47px;
    }

    .about_text h3 {
        font-size: 34px;
    }

    .section-heading h2 {
        font-size: 37px;
    }

    .site-block-half {
        flex-direction: column;
        min-height: auto;
    }

    .site-block-half .image {
        flex: none;
        min-height: 280px;
        order: 0;
    }

    .site-block-half .image.order-2 {
        order: 0;
    }

    .site-block-half .text {
        padding: 28px;
        order: 1;
    }

    .site-block-half .text.order-1 {
        order: 1;
    }

    .services-2 {
        flex-direction: column;
        text-align: center;
    }

    .services-2 .icon {
        margin: 0 auto 17px;
    }

    .block-32 {
        padding: 28px;
    }

    .col-md-6.mb-3.mb-lg-0.col-lg-3,
    .col-md-6.col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 21px;
    }

    .col-md-6.mb-3.mb-md-0.col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-md-6.mb-3.mb-md-0 .row {
        margin: 0;
    }

    .col-md-6.mb-3.mb-md-0 .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 17px;
    }
}

@media screen and (max-width: 640px) {
    .slider_text h1 {
        font-size: 34px;
    }

    .slider_text h2 {
        font-size: 47px;
        margin-top: -7px;
    }

    .slider_text p {
        font-size: 17px;
    }

    .video_service_btn {
        flex-direction: column;
        gap: 17px;
    }

    .about_info_area {
        padding: 67px 0 47px;
    }

    .site-section {
        padding: 67px 0;
    }

    .stats-counter {
        padding: 67px 0;
    }

    .ftco-section {
        padding: 67px 0;
    }

    .site-footer {
        padding: 47px 0;
    }

    .col-lg-3,
    .col-lg-4,
    .col-lg-6,
    .col-lg-8,
    .col-xl-4,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 34px;
    }

    .d-xl-block {
        display: none;
    }

    .site-block-half .text h2 {
        font-size: 28px;
    }

    .site-block-half .text {
        padding: 21px;
    }

    .block-32 {
        padding: 21px;
    }

    .heading {
        font-size: 37px;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(127deg, var(--flame-red) 0%, var(--deep-crimson) 100%);
    padding: 134px 0 94px;
    color: var(--pearl-white);
    text-align: center;
}

.services-hero h1 {
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 23px;
    color: var(--pearl-white);
}

.services-hero .lead {
    font-size: 21px;
    opacity: 0.91;
    max-width: 620px;
    margin: 0 auto;
}

.services-detailed {
    padding: 94px 0;
    background: var(--pearl-white);
}

.service-card {
    background: var(--pearl-white);
    border-radius: 17px;
    padding: 34px;
    box-shadow: 0 13px 37px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.37s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: var(--soft-blush);
    box-shadow: 0 23px 47px rgba(0,0,0,0.12);
}

.service-card .service-icon {
    width: 67px;
    height: 67px;
    background: var(--soft-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
}

.service-card .service-icon img {
    width: 34px;
    height: 34px;
    filter: saturate(100%) invert(18%) sepia(93%) saturate(1234%) hue-rotate(343deg) brightness(96%) contrast(94%);
}

.service-card h3 {
    font-size: 23px;
    color: var(--deep-crimson);
    margin-bottom: 17px;
    font-weight: 600;
}

.service-card p {
    color: var(--silver-mist);
    line-height: 1.6;
    margin-bottom: 21px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 21px 0;
    flex-grow: 1;
}

.service-features li {
    padding: 7px 0;
    color: var(--charcoal-text);
    font-size: 15px;
    position: relative;
    padding-left: 23px;
}

.service-features li:before {
    content: '•';
    color: var(--flame-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-price {
    font-size: 21px;
    font-weight: 600;
    color: var(--flame-red);
    text-align: center;
    padding: 17px;
    background: var(--soft-blush);
    border-radius: 11px;
    margin-top: auto;
}

/* Pricing Packages */
.pricing-packages {
    padding: 94px 0;
    background: var(--neutral-light);
}

.section-title {
    font-size: 47px;
    color: var(--deep-crimson);
    margin-bottom: 21px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 18px;
    color: var(--silver-mist);
    margin-bottom: 47px;
}

.pricing-card {
    background: var(--pearl-white);
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 13px 37px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.37s ease;
}

.pricing-card.premium {
    border: 3px solid var(--flame-red);
    transform: scale(1.04);
}

.pricing-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 23px 47px rgba(0,0,0,0.12);
}

.pricing-card.premium:hover {
    transform: translateY(-7px) scale(1.04);
}

.pricing-badge {
    position: absolute;
    top: 21px;
    right: -34px;
    background: var(--flame-red);
    color: var(--pearl-white);
    padding: 7px 47px;
    font-size: 13px;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-header {
    padding: 41px 34px 28px;
    text-align: center;
    background: linear-gradient(127deg, var(--soft-blush), var(--pearl-white));
}

.pricing-header h3 {
    font-size: 28px;
    color: var(--deep-crimson);
    margin-bottom: 17px;
}

.price {
    font-size: 47px;
    font-weight: 700;
    color: var(--flame-red);
    line-height: 1;
}

.price-period {
    color: var(--silver-mist);
    font-size: 16px;
}

.pricing-body {
    padding: 34px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 34px;
}

.pricing-features li {
    padding: 11px 0;
    display: flex;
    align-items: center;
    color: var(--charcoal-text);
}

.pricing-features li img {
    width: 21px;
    height: 21px;
    margin-right: 13px;
    filter: saturate(100%) invert(45%) sepia(95%) saturate(1765%) hue-rotate(104deg) brightness(94%) contrast(87%);
}

.pricing-btn {
    display: block;
    background: linear-gradient(127deg, var(--flame-red), var(--deep-crimson));
    color: var(--pearl-white);
    text-align: center;
    padding: 17px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.34s ease;
}

.pricing-btn:hover {
    background: linear-gradient(127deg, var(--deep-crimson), #a41e28);
    transform: translateY(-2px);
    box-shadow: 0 7px 21px rgba(230, 57, 70, 0.34);
}

/* Process Workflow */
.process-workflow {
    padding: 94px 0;
    background: var(--pearl-white);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 34px 21px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 41px;
    height: 41px;
    background: var(--flame-red);
    color: var(--pearl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    margin: 54px auto 23px;
    width: 73px;
    height: 73px;
    background: var(--soft-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 37px;
    height: 37px;
    filter: saturate(100%) invert(18%) sepia(93%) saturate(1234%) hue-rotate(343deg) brightness(96%) contrast(94%);
}

.process-step h4 {
    font-size: 21px;
    color: var(--deep-crimson);
    margin-bottom: 13px;
}

.process-step p {
    color: var(--silver-mist);
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    padding: 94px 0;
    background: linear-gradient(127deg, var(--midnight-shadow), #34495e);
    color: var(--pearl-white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 41px;
    color: var(--pearl-white);
    margin-bottom: 23px;
}

.contact-cta .lead {
    font-size: 19px;
    opacity: 0.87;
    margin-bottom: 41px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(127deg, var(--flame-red), var(--deep-crimson));
    color: var(--pearl-white);
    padding: 21px 41px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.34s ease;
    box-shadow: 0 7px 21px rgba(230, 57, 70, 0.34);
}

.cta-button:hover {
    background: linear-gradient(127deg, var(--deep-crimson), #a41e28);
    transform: translateY(-3px);
    box-shadow: 0 13px 27px rgba(230, 57, 70, 0.41);
}

/* Thank You Page Styles */
.thankyou-hero {
    background: linear-gradient(127deg, var(--accent-color), #27ae60);
    padding: 134px 0 94px;
    color: var(--pearl-white);
    text-align: center;
}

.success-icon {
    width: 94px;
    height: 94px;
    background: rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 34px;
}

.success-icon img {
    width: 47px;
    height: 47px;
    filter: brightness(0) invert(1);
}

.thankyou-hero h1 {
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 23px;
    color: var(--pearl-white);
}

.thankyou-hero .lead {
    font-size: 21px;
    opacity: 0.91;
}

.confirmation-details {
    padding: 94px 0;
    background: var(--pearl-white);
}

.confirmation-card {
    background: var(--pearl-white);
    border-radius: 17px;
    padding: 47px;
    box-shadow: 0 13px 37px rgba(0,0,0,0.08);
    border: 2px solid var(--soft-blush);
}

.confirmation-card h2 {
    text-align: center;
    color: var(--deep-crimson);
    margin-bottom: 41px;
    font-size: 34px;
}

.next-steps {
    margin-top: 34px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 34px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--neutral-light);
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-item .step-icon {
    width: 67px;
    height: 67px;
    background: var(--soft-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 23px;
    flex-shrink: 0;
}

.step-item .step-icon img {
    width: 34px;
    height: 34px;
    filter: saturate(100%) invert(45%) sepia(95%) saturate(1765%) hue-rotate(104deg) brightness(94%) contrast(87%);
}

.step-content h4 {
    color: var(--deep-crimson);
    margin-bottom: 11px;
    font-size: 21px;
}

.step-content p {
    color: var(--silver-mist);
    line-height: 1.6;
    margin: 0;
}

.helpful-resources {
    padding: 94px 0;
    background: var(--neutral-light);
}

.resource-card {
    background: var(--pearl-white);
    border-radius: 17px;
    padding: 34px;
    text-align: center;
    box-shadow: 0 13px 37px rgba(0,0,0,0.08);
    transition: all 0.37s ease;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 23px 47px rgba(0,0,0,0.12);
}

.resource-icon {
    width: 73px;
    height: 73px;
    background: var(--soft-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 23px;
}

.resource-icon img {
    width: 37px;
    height: 37px;
    filter: saturate(100%) invert(18%) sepia(93%) saturate(1234%) hue-rotate(343deg) brightness(96%) contrast(94%);
}

.resource-card h4 {
    color: var(--deep-crimson);
    margin-bottom: 17px;
    font-size: 21px;
}

.resource-card p {
    color: var(--silver-mist);
    line-height: 1.6;
}

.contact-info {
    padding: 94px 0;
    background: var(--pearl-white);
    text-align: center;
}

.contact-info h2 {
    color: var(--deep-crimson);
    margin-bottom: 21px;
    font-size: 34px;
}

.contact-info p {
    color: var(--silver-mist);
    margin-bottom: 41px;
}

.contact-details {
    margin-bottom: 41px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    background: var(--soft-blush);
    padding: 17px 28px;
    border-radius: 34px;
    margin: 0 13px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 13px;
    filter: saturate(100%) invert(18%) sepia(93%) saturate(1234%) hue-rotate(343deg) brightness(96%) contrast(94%);
}

.contact-item span {
    font-weight: 600;
    color: var(--deep-crimson);
}

.back-navigation {
    margin-top: 41px;
}

.back-btn {
    display: inline-block;
    background: var(--neutral-color);
    color: var(--pearl-white);
    padding: 13px 28px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 500;
    margin: 0 11px;
    transition: all 0.31s ease;
}

.back-btn:hover {
    background: var(--charcoal-text);
    transform: translateY(-2px);
}

/* Mobile Responsiveness for New Pages */
@media screen and (max-width: 890px) {
    .services-hero h1 {
        font-size: 41px;
    }

    .services-hero .lead {
        font-size: 18px;
    }

    .section-title {
        font-size: 37px;
    }

    .pricing-card.premium {
        transform: none;
    }

    .pricing-card.premium:hover {
        transform: translateY(-7px);
    }

    .thankyou-hero h1 {
        font-size: 41px;
    }

    .confirmation-card {
        padding: 28px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-item .step-icon {
        margin: 0 auto 17px;
    }
}

@media screen and (max-width: 640px) {
    .services-detailed,
    .pricing-packages,
    .process-workflow,
    .contact-cta,
    .confirmation-details,
    .helpful-resources,
    .contact-info {
        padding: 67px 0;
    }

    .service-card,
    .resource-card {
        padding: 21px;
    }

    .pricing-header {
        padding: 28px 21px 21px;
    }

    .pricing-body {
        padding: 21px;
    }

    .confirmation-card {
        padding: 21px;
    }

    .contact-item {
        display: block;
        margin: 11px 0;
    }

    .back-btn {
        display: block;
        margin: 11px 0;
    }
}

.thankyou-content p {
    color: #fff;
}

.hero-content p {
    color: #fff
}

.contact-cta p {color: #ff2f3d;}