body {
    font-family: 'Outfit', sans-serif; 
}
h1, h2. h3, h4, h5{font-family: Georgia, "Times New Roman", serif;}
img{max-width: 100%;}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p{
	color: #1a1a1a;
	font-size: 18px;
}
a{text-decoration: none;}
.m-auto{
	margin: 0 auto;
}
.align{
    align-items: center !important;
}
.c-fff{
    color: #fff !important;
}
.c-ffd400 {
    color: #ff7a01 !important;
}
.c-fecf04 {
     color: #fecf04 !important;
}
/**/
.zoom-in-zoom-out { 
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.fa-spin {
    -webkit-animation: fa-spin 9s linear infinite !important;
    animation: fa-spin 15s linear infinite !important;
}
img.vert-move  {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/**/
 

/**/

.call-part  ul {
    margin: 0;
    padding: 0;
}
.call-part ul li {
    position: fixed;
    z-index: 999;
    right: -104px;
    width: 160px;
    list-style: none;
    transition: 1.7s;
    bottom: 50px;
}
.call-part ul li a {
    background: #000;
    padding: 0 0 6px 0;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    border: solid 1px #ffffffb8;
}
.call-part ul li a i {
    width: 45px;
    height: 50px;
    background-image: linear-gradient(90deg, rgb(255, 60, 0) 0%, rgb(255, 156, 0) 100%);
    padding: 12px 11px;
    font-size: 25px;
    margin-top: 5px;
    margin-left: 5px;
    color: #fff;
}
.call-part ul li.whats {
    margin-top: 79px;
}
.call-part ul li.whats {
    bottom: 125px;
}
 
.call-part ul li.whats i {
    background: #1d8900;
    color: #fff;
}
.call-part ul li:hover {
    right: 0;
}


/**/ 
/* ======================================
   ASTROLOGER YOGIRAJ SHASTRI HEADER CSS
====================================== */

.ys-site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
}

/* ==================
   TOP HEADER
================== */

.ys-top-header {
    position: relative;
    overflow: hidden;
    background: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ys-top-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
    height: 100%;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.ys-top-header-inner {
    position: relative;
    z-index: 2;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.ys-top-message {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.ys-top-message i {
    font-size: 14px;
}

.ys-top-contact {
    display: flex;
    align-items: center;
    gap: 22px;
}

.ys-top-contact-link,
.ys-top-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ys-top-contact-link i,
.ys-top-whatsapp-link i {
    color: rgb(255, 156, 0);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.ys-top-contact-link:hover,
.ys-top-whatsapp-link:hover {
    color: rgb(255, 156, 0);
}

.ys-top-contact-link:hover i,
.ys-top-whatsapp-link:hover i {
    transform: scale(1.15) rotate(-8deg);
}

/* ==================
   MAIN HEADER
================== */

.ys-main-header {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(12px);
}

.ys-main-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.ys-main-header:hover::after {
    transform: scaleX(1);
}

.ys-main-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* ==================
   LOGO
================== */

.ys-header-logo {
    width: 290px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}
/*.ys-header-logo img {
    display: block;
    max-width: 100%;
    max-height: 62px;
    width: auto;
    height: auto;
    object-fit: contain;
}*/

/* ==================
   NAVIGATION
================== */

.ys-navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex: 1;
}

.ys-main-navigation ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ys-main-navigation li {
    position: relative;
}

.ys-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 30px 7px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.ys-nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 0;
    height: 2px;
    border-radius: 20px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.ys-nav-link::after {
    content: "";
    position: absolute;
    top: 21px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgb(255, 60, 0);
    opacity: 0;
    transform: translateX(-50%) translateY(5px);
    transition: all 0.3s ease;
}

.ys-nav-link:hover,
.ys-nav-link.active {
    color: rgb(255, 60, 0);
}

.ys-nav-link:hover::before, .ys-nav-link.active::before {
    width: 75%;
}
.ys-nav-link:hover::after,
.ys-nav-link.active::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==================
   HEADER BUTTONS
================== */

.ys-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ys-header-call-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 7px 20px 7px 8px;
    border-radius: 80px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 91, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ys-header-btn-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #ffffff;
    color: rgb(255, 60, 0);
    font-size: 15px;
    transition: transform 0.3s ease;
}

.ys-header-btn-content {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.ys-header-btn-content small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 500;
}

.ys-header-btn-content strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.ys-header-call-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255, 91, 0, 0.38);
}

.ys-header-call-btn:hover .ys-header-btn-icon {
    transform: rotate(-12deg) scale(1.06);
}

.ys-header-whatsapp-btn {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 98, 0, 0.18);
    border-radius: 50%;
    background: #1d8900;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
    transition: all 0.3s ease;
}
.ys-header-whatsapp-btn:hover {
    border-color: transparent;
    background: #111111;
    color: #ffffff;
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 12px 25px rgba(17, 17, 17, 0.2);
}

/* ==================
   MOBILE ELEMENTS
================== */

.ys-menu-toggle,
.ys-mobile-menu-head,
.ys-menu-overlay {
    display: none;
}

/* ==================
   LARGE TABLET
================== */

@media (max-width: 1199px) {

    .ys-navigation-wrapper {
        gap: 16px;
    }

    .ys-main-navigation ul {
        gap: 0;
    }

    .ys-nav-link {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 13px;
    }

    .ys-header-call-btn {
        padding-right: 15px;
    }

    .ys-header-btn-content small {
        display: none;
    }
}

/* ==================
   TABLET AND MOBILE
================== */

@media (max-width: 991px) {

    .ys-top-header::before {
        width: 55%;
    }

    .ys-main-header-inner {
        min-height: 72px;
    }

    .ys-header-logo {
        width: 190px;
        height: 54px;
    }
 

    .ys-menu-toggle {
        width: 48px;
        height: 48px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background-image: linear-gradient(
            90deg,
            rgb(255, 60, 0) 0%,
            rgb(255, 156, 0) 100%
        );
        box-shadow: 0 8px 22px rgba(255, 91, 0, 0.28);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .ys-menu-toggle span {
        width: 21px;
        height: 2px;
        display: block;
        border-radius: 10px;
        background: #ffffff;
        transition: all 0.3s ease;
    }

    .ys-menu-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 25px rgba(255, 91, 0, 0.4);
    }

    .ys-navigation-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10001;
        width: min(390px, 88%);
        height: 100vh;
        display: block;
        overflow-y: auto;
        padding: 0 25px 35px;
        background: #ffffff;
        box-shadow: -20px 0 50px rgba(17, 17, 17, 0.2);
        visibility: hidden;
        transition: right 0.45s ease, visibility 0.45s ease;
    }

    .ys-navigation-wrapper.active {
        right: 0;
        visibility: visible;
    }

    .ys-mobile-menu-head {
        min-height: 90px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin: 0 -25px 20px;
        padding: 15px 25px;
        background: #111111;
        border-bottom: 4px solid rgb(255, 60, 0);
    }

    .ys-mobile-menu-title {
        display: flex;
        flex-direction: column;
    }

    .ys-mobile-menu-title span {
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
    }

        .ys-mobile-menu-title small { 
            color: #ffffffdb;
            font-size: 16px;
        }
    .ys-mobile-menu-close {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .ys-mobile-menu-close:hover {
        border-color: transparent;
        background-image: linear-gradient(
            90deg,
            rgb(255, 60, 0) 0%,
            rgb(255, 156, 0) 100%
        );
        transform: rotate(90deg);
    }

    .ys-main-navigation ul {
        display: block;
    }

    .ys-main-navigation li {
        border-bottom: 1px solid rgba(17, 17, 17, 0.09);
    }

    .ys-nav-link {
        width: 100%;
        padding: 12px 5px;
        color: #111111;
        font-size: 16px;
    }

        .ys-nav-link::before {
            left: 6px;
            bottom: 7px;
            transform: none;
        }

    .ys-nav-link::after {
        display: none;
    }
    .ys-header-btn-content small { 
    font-size: 14px; 
    }
    .ys-header-btn-content strong { 
        font-size: 16px; 
    }

   
    .ys-header-actions {
        align-items: stretch;
        margin-top: 28px;
    }
    .ys-nav-link:hover::before, .ys-nav-link.active::before {
    width: 50px;
}

    .ys-header-call-btn {
        flex: 1;
        justify-content: center;
    }

    .ys-header-btn-content small {
        display: block;
    }

 
    .ys-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 10000;
        display: block;
        background: rgba(0, 0, 0, 0.62);
        backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
    }

    .ys-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .ys-menu-overlay.active {
    display: none;
}
.ys-navigation-wrapper {
    display: none;
}
.ys-navigation-wrapper.active{
        display: unset !important;
}

    body.ys-menu-open {
        overflow: hidden;
    }
}

/* ==================
   MOBILE VIEW
================== */

@media (max-width: 575px) {

    .ys-top-header-inner {
        min-height: 58px;
        gap: 10px;
    }

    .ys-top-header::before {
        width: 300px;
    }

    .ys-top-message { 
        line-height: 1.3;
        font-size: 13px;
    }

    .ys-top-message i {
        display: none;
    }

    .ys-top-contact {
        gap: 7px;
    }
    .ys-top-whatsapp-link span {
        display: none;
    }

    .ys-top-contact-link, .ys-top-whatsapp-link {
        min-height: 34px;
        justify-content: center;
        padding: 7px 10px;
        border-radius: 50px;
        background: rgb(255 100 0);
        font-size: 11px;
    }
    .ys-top-contact-link span {
        display: none;
    }

    .ys-top-contact-link {
        width: 34px;
        padding: 0;
    }

    .ys-top-contact-link i,
    .ys-top-whatsapp-link i {
        color: #ffffff;
    }

    .ys-main-header-inner {
        min-height: 68px;
    }
    .ys-header-logo {
        width: 265px;
        height: 78px;
    }
    .ys-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .ys-navigation-wrapper {
        width: 90%;
    }
}

@media (max-width: 380px) {

   .ys-top-message { 
    font-size: 12px;
}
    .ys-top-whatsapp-link span {
        display: none;
    }

    .ys-top-whatsapp-link {
        width: 34px;
        padding: 0;
    }

    .ys-header-logo {
        width: 222px;
    }
    .ys-top-header::before {
    width: 285px;
}
}

@media (max-width:350px) { 
.ys-top-message {
    font-size: 10px;
}
.ys-top-header::before {
    width: 230px;
}
}

/**/

 /* =================================
   FULL WIDTH INSTANT RESULTS STRIP
================================= */

.ys-quick-strip {
    position: relative;
    width: 100%;
    padding: 0;
    background: #fff8f3;
    border-top: 1px solid rgba(255, 60, 0, 0.08);
    border-bottom: 1px solid rgba(255, 60, 0, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

 
.ys-quick-strip-inner {
    width: 100%;
    min-height: 78px;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: stretch;
}

/* =================================
   LEFT BADGE
================================= */

.ys-quick-strip-badge {
    position: relative;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px 14px 22px;
    background: #111111;
    overflow: hidden;
}

.ys-quick-strip-badge::after {
    content: "";
    position: absolute;
    top: 0;
    right: -28px;
    width: 60px;
    height: 100%;
    background: #111111;
    transform: skewX(-25deg);
}

.ys-quick-strip-badge-icon {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    box-shadow: 0 8px 18px rgba(255, 102, 0, 0.28);
    animation: ysQuickBadgePulse 2.2s ease-in-out infinite;
}

.ys-quick-strip-badge-text {
    position: relative;
    z-index: 2;
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.ys-quick-strip-badge-text small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.ys-quick-strip-badge-text strong {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
}

/* =================================
   MOBILE NAVIGATION BUTTONS
================================= */

.ys-quick-strip-mobile-nav {
    position: relative;
    z-index: 3;
    display: none;
    align-items: center;
    gap: 7px;
    margin-left: auto;
}

.ys-quick-nav-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.ys-quick-nav-btn:last-child {
    background: #ffffff;
    color: rgb(255, 60, 0);
}

.ys-quick-nav-btn:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: rgb(255, 60, 0);
    transform: scale(1.07);
}

/* =================================
   SERVICES AREA
================================= */

.ys-quick-strip-services {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    background: #ffffff;
}

.ys-quick-service-item {
    position: relative;
    min-width: 0;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-left: 1px solid rgba(17, 17, 17, 0.08);
    background: #ffffff;
    color: #111111;
    text-decoration: none;
    overflow: hidden;
    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ys-quick-service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent,
        rgba(255, 98, 0, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

.ys-quick-service-item::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.ys-quick-service-item:hover {
    z-index: 2;
    background: #fff9f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 80, 0, 0.1);
}

.ys-quick-service-item:hover::before {
    left: 145%;
}

.ys-quick-service-item:hover::after,
.ys-quick-service-item.ys-quick-active::after {
    transform: scaleX(1);
}

/* Service Icon */

.ys-quick-service-icon {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    border-radius: 50%;
    background: rgba(255, 98, 0, 0.08);
    color: rgb(255, 82, 0);
    font-size: 16px;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.ys-quick-service-item:hover .ys-quick-service-icon,
.ys-quick-service-item.ys-quick-active .ys-quick-service-icon {
    background: #111111;
    color: #ffffff;
    transform: rotate(-7deg) scale(1.05);
}

/* Service Text */

.ys-quick-service-text {
    position: relative;
    z-index: 2;
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    line-height: 1.2;
}

.ys-quick-service-text small {
    margin-bottom: 4px;
    overflow: hidden;
    color: #ff3c00;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.ys-quick-service-text strong {
    overflow: hidden;
    color: #111111;
    font-size: 19px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.ys-quick-service-item:hover .ys-quick-service-text strong,
.ys-quick-service-item.ys-quick-active .ys-quick-service-text strong {
    color: rgb(255, 60, 0);
}

/* =================================
   ANIMATION
================================= */

.ys-quick-strip {
    animation: ysQuickStripReveal 0.7s ease both;
}

@keyframes ysQuickStripReveal {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ysQuickBadgePulse {
    0%,
    100% {
        box-shadow: 0 8px 18px rgba(255, 102, 0, 0.28);
    }

    50% {
        box-shadow:
            0 8px 22px rgba(255, 102, 0, 0.45),
            0 0 0 5px rgba(255, 102, 0, 0.08);
    }
}

/* =================================
   LARGE TABLET
================================= */

@media (max-width: 1199px) {

    .ys-quick-strip-inner {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .ys-quick-strip-badge {
        padding-right: 24px;
        padding-left: 16px;
    }

    .ys-quick-strip-badge-text strong {
        font-size: 20px;
    }

    .ys-quick-service-item {
        gap: 9px;
        padding: 12px 10px;
    }

    .ys-quick-service-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 14px;
    }

    .ys-quick-service-text small {
        font-size: 10px;
    }

    .ys-quick-service-text strong {
        font-size: 15px;
    }
}

/* =================================
   TABLET AND MOBILE
   TWO COLUMNS PER SLIDE
================================= */

@media (max-width: 991px) {

    .ys-quick-strip-inner {
        display: block;
        min-height: auto;
    }

    .ys-quick-strip-badge {
        width: 100%;
        min-height: 60px;
        gap: 10px;
        padding: 10px 14px;
    }

    .ys-quick-strip-badge::after {
        display: none;
    }

    .ys-quick-strip-badge-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 14px;
    }

    .ys-quick-strip-badge-text small {
        margin-bottom: 3px;
        font-size: 9px;
    }

    .ys-quick-strip-badge-text strong {
        font-size: 17px;
    }

    .ys-quick-strip-mobile-nav {
        display: flex;
    }

    .ys-quick-strip-services {
        width: 100%;
        display: flex;
        align-items: stretch;
        gap: 0;
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        background: #ffffff;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        overscroll-behavior-x: contain;
    }

    .ys-quick-strip-services::-webkit-scrollbar {
        display: none;
    }

    .ys-quick-service-item {
        width: 50%;
        max-width: 50%;
        min-width: 50%;
        min-height: 72px;
        flex: 0 0 50%;
        gap: 9px;
        padding: 10px;
        border-left: 0;
        border-right: 1px solid rgba(17, 17, 17, 0.09);
        border-bottom: 1px solid rgba(17, 17, 17, 0.07);
        box-sizing: border-box;
        scroll-snap-align: none;
        transform: none;
    }

    /*
      First and third service pair ke starting points hain.
      Isliye swipe karte waqt 2 cards ek saath snap honge.
    */

    .ys-quick-service-item:nth-child(odd) {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .ys-quick-service-item:nth-child(even) {
        border-right: 0;
    }

    .ys-quick-service-item:hover {
        transform: none;
        box-shadow: none;
    }

    .ys-quick-service-item::after {
        left: 9px;
        right: 9px;
    }

    .ys-quick-service-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 14px;
    }

    .ys-quick-service-text small {
        margin-bottom: 3px;
        font-size: 9px;
        letter-spacing: 0.2px;
    }

    .ys-quick-service-text strong {
        display: -webkit-box;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.2;
        text-overflow: ellipsis;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

/* =================================
   MOBILE VIEW
================================= */

@media (max-width: 575px) {

    .ys-quick-strip-badge {
        min-height: 58px;
        gap: 9px;
        padding: 9px 11px;
    }

    .ys-quick-strip-badge-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 13px;
    }

    .ys-quick-strip-badge-text small {
        font-size: 8px;
        letter-spacing: 0.4px;
    }

    .ys-quick-strip-badge-text strong {
        font-size: 16px;
    }

    .ys-quick-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .ys-quick-service-item {
        width: 50%;
        max-width: 50%;
        min-width: 50%;
        min-height: 68px;
        flex-basis: 50%;
        gap: 7px;
        padding: 9px 7px;
    }

    .ys-quick-service-item::after {
        left: 7px;
        right: 7px;
    }

    .ys-quick-service-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 12px;
    }

    .ys-quick-service-text small {
        font-size: 10px;
        letter-spacing: 0;
    }

    .ys-quick-service-text strong {
        font-size: 15px;
        line-height: 1.22;
    }
 
    .carousel-control-next-icon, .carousel-control-prev-icon { 
    width: 1.5rem;
    height:1.5rem; 
}


}

/* =================================
   EXTRA SMALL MOBILE
================================= */

@media (max-width: 390px) {

    .ys-quick-strip-badge-text strong {
        font-size: 15px;
    }

    .ys-quick-strip-badge-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .ys-quick-service-item {
        min-height: 66px;
        gap: 6px;
        padding-right: 5px;
        padding-left: 5px;
    }

    .ys-quick-service-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
        font-size: 11px;
    }

    .ys-quick-service-text small {
        font-size: 8px;
    }

    .ys-quick-service-text strong {
        font-size: 13px;
    }
}

/* =================================
   REDUCED MOTION
================================= */

@media (prefers-reduced-motion: reduce) {

    .ys-quick-strip,
    .ys-quick-strip-badge-icon {
        animation: none;
    }

    .ys-quick-strip-services {
        scroll-behavior: auto;
    }

    .ys-quick-service-item,
    .ys-quick-service-item::before,
    .ys-quick-service-item::after,
    .ys-quick-service-icon,
    .ys-quick-nav-btn {
        transition: none;
    }
}

/**/

/* =================================
   ABOUT ASTROLOGER SECTION
================================= */

.yogiraj-about-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background: #ffffff;
}

.yogiraj-about-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -170px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255, 105, 0, 0.05);
}

.yogiraj-about-section::after {
    content: "";
    position: absolute;
    bottom: -110px;
    left: -110px;
    width: 230px;
    height: 230px;
    border: 35px solid rgba(255, 60, 0, 0.035);
    border-radius: 50%;
}

.yogiraj-about-section .container {
    position: relative;
    z-index: 2;
}

/* Left Image */

.yogiraj-about-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
    opacity: 0;
    transform: translateX(-45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.yogiraj-about-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(255, 60, 0, 0.07),
        transparent 45%
    );
    pointer-events: none;
}

.yogiraj-about-image-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    height: 5px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.yogiraj-about-image-wrap:hover::after {
    transform: scaleX(1);
}

.yogiraj-about-image {
    display: block;
    width: 100%; 
    object-fit: cover;
    transition: transform 0.6s ease;
}

.yogiraj-about-image-wrap:hover .yogiraj-about-image {
    transform: scale(1.035);
}

/* Right Content */

.yogiraj-about-content {
    padding-left: 35px;
    opacity: 0;
    transform: translateX(45px);
    transition:
        opacity 0.8s ease 0.15s,
        transform 0.8s ease 0.15s;
}

.yogiraj-about-section.yogiraj-about-visible
.yogiraj-about-image-wrap,
.yogiraj-about-section.yogiraj-about-visible
.yogiraj-about-content {
    opacity: 1;
    transform: translateX(0);
}

.yogiraj-about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgb(255, 60, 0);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.yogiraj-about-subtitle span {
    width: 34px;
    height: 3px;
    display: inline-block;
    border-radius: 20px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
}

.yogiraj-about-content h2 {
    max-width: 600px;
    margin: 0 0 18px;
    color: #111111;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.22;
}

.yogiraj-about-content h2::after {
    content: "";
    width: 70px;
    height: 4px;
    display: block;
    margin-top: 17px;
    border-radius: 30px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
}

.yogiraj-about-content p {
    margin: 0 0 13px;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

/* Simple Points */

.yogiraj-about-points {
    display: grid;
    gap: 11px;
    margin-top: 22px;
}

.yogiraj-about-point {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    transition:
        padding-left 0.3s ease,
        border-color 0.3s ease;
}

.yogiraj-about-point:hover {
    padding-left: 7px;
    border-color: rgba(255, 60, 0, 0.3);
}

.yogiraj-about-point > span {
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff3eb;
    color: rgb(255, 60, 0);
    font-size: 14px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.yogiraj-about-point:hover > span {
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    transform: rotate(-7deg);
}

.yogiraj-about-point div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.yogiraj-about-point strong {
    margin-bottom: 3px;
    color: #111111;
    font-size: 17px;
    font-weight: 700;
}

.yogiraj-about-point small {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.4;
}

/* Buttons */

.yogiraj-about-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.yogiraj-about-call-btn,
.yogiraj-about-whatsapp-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 23px;
    border-radius: 80px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.yogiraj-about-call-btn {
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(255, 82, 0, 0.25);
}

.yogiraj-about-call-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255, 82, 0, 0.36);
}

.yogiraj-about-whatsapp-btn {
    border: 1px solid #111111;
    background: #111111;
    color: #ffffff;
}

.yogiraj-about-whatsapp-btn i {
    color: #25d366;
    font-size: 19px;
}

.yogiraj-about-whatsapp-btn:hover {
    border-color: #1d8900;
    background: #1d8900;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(17, 17, 17, 0.12);
}
.yogiraj-about-whatsapp-btn:hover  i {
    color: #ffffff; 
}

/* =================================
   TABLET VIEW
================================= */

@media (max-width: 991px) {

    .yogiraj-about-content {
        padding-left: 0;
    }

   

    .yogiraj-about-content h2 {
        font-size: 30px;
    }
}

/* =================================
   MOBILE VIEW
================================= */

@media (max-width: 575px) {

    .yogiraj-about-section {
        padding: 35px 0;
    }

    .yogiraj-about-image-wrap {
        border-radius: 16px;
    }

 

    .yogiraj-about-subtitle {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .yogiraj-about-content h2 {
        margin-bottom: 15px;
        font-size: 25px;
        line-height: 1.25;
    }

   

    .yogiraj-about-point {
        align-items: flex-start;
    }

    .yogiraj-about-point > span {
        width: 36px;
        height: 36px;
    }

    .yogiraj-about-point strong {
        font-size: 17px;
    }

    .yogiraj-about-point small {
        font-size: 14px;
    }

    .yogiraj-about-buttons {
        align-items: stretch;
        gap: 9px;
    }

    .yogiraj-about-call-btn {
        width: 100%;
    }

    .yogiraj-about-whatsapp-btn {
        width: 100%;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {

    .yogiraj-about-image-wrap,
    .yogiraj-about-content,
    .yogiraj-about-image,
    .yogiraj-about-point,
    .yogiraj-about-point > span,
    .yogiraj-about-call-btn,
    .yogiraj-about-whatsapp-btn {
        transition: none;
    }

    .yogiraj-about-image-wrap,
    .yogiraj-about-content {
        opacity: 1;
        transform: none;
    }
}


/**/
/* =================================
   OUR BEST SERVICES - CARD DESIGN
================================= */

.ys-service-card-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background: #fff8f3;
    border-top: solid 2px #ff3c000a;
}
.ys-service-card-section::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -190px;
    width: 380px;
    height: 380px;
    border: 55px solid rgba(255, 60, 0, 0.035);
    border-radius: 50%;
}

.ys-service-card-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 156, 0, 0.04);
}

.ys-service-card-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */

.ys-service-card-heading {
    max-width: 620px;
    margin: 0 auto 30px;
    text-align: center;
}

.ys-service-card-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 11px;
    color: rgb(255, 60, 0);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ys-service-card-subtitle span {
    width: 32px;
    height: 3px;
    display: inline-block;
    border-radius: 30px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
}

.ys-service-card-heading h2 {
    margin: 0 0 14px;
    color: #111111;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.22;
}

.ys-service-card-heading p {
    max-width: 740px;
    margin: 0 auto;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.75;
}

/* Card */

.ys-service-modern-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(17, 17, 17, 0.07);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    animation: ysServiceCardReveal 0.7s ease both;
}

.row > div:nth-child(2) .ys-service-modern-card {
    animation-delay: 0.08s;
}

.row > div:nth-child(3) .ys-service-modern-card {
    animation-delay: 0.16s;
}

.row > div:nth-child(4) .ys-service-modern-card {
    animation-delay: 0.24s;
}

.row > div:nth-child(5) .ys-service-modern-card {
    animation-delay: 0.32s;
}

.row > div:nth-child(6) .ys-service-modern-card {
    animation-delay: 0.4s;
}

.row > div:nth-child(7) .ys-service-modern-card {
    animation-delay: 0.48s;
}

.row > div:nth-child(8) .ys-service-modern-card {
    animation-delay: 0.56s;
}

.row > div:nth-child(9) .ys-service-modern-card {
    animation-delay: 0.64s;
}

.ys-service-modern-card:hover {
    border-color: rgba(255, 60, 0, 0.22);
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(255, 75, 0, 0.15);
}

/* Image */

.ys-service-modern-image {
    position: relative;
    height: 225px;
    overflow: hidden;
    background: #111111;
}
 
.ys-service-modern-image::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -80px;
    z-index: 3;
    width: 150px;
    height: 150px;
    border: 24px solid #ffffff82;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.ys-service-modern-card:hover
.ys-service-modern-image::after {
    transform: scale(1.18) rotate(15deg);
}

.ys-service-modern-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.ys-service-modern-card:hover
.ys-service-modern-image img {
    transform: scale(1.07);
}

.ys-service-card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 4;
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.65);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.ys-service-modern-card:hover
.ys-service-card-number {
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    transform: rotate(10deg);
}

/* Card Content */

.ys-service-modern-content {
    position: relative;
    padding: 42px 24px 24px;
}

.ys-service-modern-content::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75px;
    height: 75px;
    border-top-left-radius: 100%;
    background: rgba(255, 98, 0, 0.035);
    transition:
        width 0.4s ease,
        height 0.4s ease;
}

.ys-service-modern-card:hover
.ys-service-modern-content::after {
    width: 110px;
    height: 110px;
}

.ys-service-modern-icon {
    position: absolute;
    top: -29px;
    left: 24px;
    z-index: 4;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #ffffff;
    border-radius: 50%;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    font-size: 19px;
    box-shadow: 0 9px 22px rgba(255, 82, 0, 0.25);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ys-service-modern-card:hover
.ys-service-modern-icon {
    transform: rotate(-10deg) scale(1.08);
    box-shadow: 0 12px 28px rgba(255, 82, 0, 0.36);
}

.ys-service-modern-content h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: #111111;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.ys-service-modern-card:hover
.ys-service-modern-content h3 {
    color: rgb(255, 60, 0);
}

.ys-service-modern-content p {
    position: relative;
    z-index: 2;
    min-height: 84px;
    margin: 0 0 17px;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.65;
}

.ys-service-modern-content > a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #111111;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ys-service-modern-content > a i {
    width: 33px;
    height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    font-size: 11px;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.ys-service-modern-content > a:hover {
    color: rgb(255, 60, 0);
}

.ys-service-modern-content > a:hover i {
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    transform: translateX(4px);
}

/* Bottom CTA */

.ys-service-section-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 30px;
    padding: 22px 25px;
    border-radius: 18px;
    background: #111111;
    box-shadow: 0 16px 35px rgba(17, 17, 17, 0.14);
}

.ys-service-bottom-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ys-service-bottom-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    font-size: 18px;
}

.ys-service-bottom-content div {
    display: flex;
    flex-direction: column;
}

.ys-service-bottom-content small {
    margin-bottom: 4px;
    color: rgb(255, 156, 0);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ys-service-bottom-content strong {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.ys-service-bottom-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ys-service-bottom-call,
.ys-service-bottom-whatsapp {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 80px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ys-service-bottom-call {
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
}

.ys-service-bottom-whatsapp {
    background: #1d8900;
    color: #ffffff;
}

.ys-service-bottom-whatsapp i {
    color: #fff;
    font-size: 19px;
}

.ys-service-bottom-call:hover,
.ys-service-bottom-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
}

.ys-service-bottom-call:hover {
    color: #ffffff;
}

.ys-service-bottom-whatsapp:hover {
    color: #fff;
}

/* Animation */

@keyframes ysServiceCardReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */

@media (max-width: 991px) {

    .ys-service-modern-image {
        height: 215px;
    }

    .ys-service-section-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Mobile */

@media (max-width: 575px) {

    .ys-service-card-section {
        padding: 35px 0;
    }

    .ys-service-card-heading h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .ys-service-card-heading p {
        color: #1a1a1a;
        font-size: 16px;
        line-height: 1.7;
    }

    .ys-service-card-subtitle {
        font-size: 12px;
    }

    .ys-service-card-subtitle span {
        width: 22px;
    }

    .ys-service-modern-card {
        border-radius: 16px;
    }

    .ys-service-modern-image {
        height: 220px;
    }

    .ys-service-modern-content {
        padding: 39px 19px 21px;
    }

    .ys-service-modern-icon {
        left: 19px;
        width: 54px;
        height: 54px;
        font-size: 17px;
    }

    .ys-service-modern-content h3 {
        font-size: 19px;
    }

    .ys-service-modern-content p {
        min-height: auto;
        color: #1a1a1a;
        font-size: 16px;
        line-height: 1.65;
    }

    .ys-service-section-bottom {
        margin-top: 25px;
        padding: 19px;
        border-radius: 15px;
    }

    .ys-service-bottom-content {
        align-items: flex-start;
    }

    .ys-service-bottom-content strong {
        font-size: 17px;
        line-height: 1.4;
    }

    .ys-service-bottom-buttons {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .ys-service-bottom-call,
    .ys-service-bottom-whatsapp {
        width: 100%;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {

    .ys-service-modern-card {
        animation: none;
    }

    .ys-service-modern-card,
    .ys-service-modern-image img,
    .ys-service-card-number,
    .ys-service-modern-icon,
    .ys-service-modern-content::after,
    .ys-service-modern-content h3,
    .ys-service-modern-content > a,
    .ys-service-modern-content > a i {
        transition: none;
    }
}
/**/

/* =================================
   WHY CHOOSE US SECTION
================================= */

.ys-why-choose-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background: #111111;
}

.ys-why-choose-section::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 340px;
    height: 340px;
    border: 45px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.ys-why-choose-section::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 156, 0, 0.05);
}

.ys-why-choose-section .container {
    position: relative;
    z-index: 2;
}

/* Left Content */

.ys-why-choose-content {
    position: sticky;
    top: 120px;
    padding-right: 25px;
}

.ys-why-choose-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgb(255, 156, 0);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ys-why-choose-subtitle span {
    width: 34px;
    height: 3px;
    display: inline-block;
    border-radius: 30px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
}

.ys-why-choose-content h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.22;
}

.ys-why-choose-text {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.75;
}

.ys-why-choose-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ys-why-choose-call-btn,
.ys-why-choose-whatsapp-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 80px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.ys-why-choose-call-btn {
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(255, 82, 0, 0.24);
}

.ys-why-choose-call-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255, 82, 0, 0.34);
}

.ys-why-choose-whatsapp-btn {
    border: 1px solid rgba(255, 255, 255, 0.14);
       background: #1d8900;
    color: #ffffff;
}

.ys-why-choose-whatsapp-btn i {
    color: #fff;
    font-size: 18px;
}

.ys-why-choose-whatsapp-btn:hover { 
    color: #fff; 
    transform: translateY(-3px);
}

/* Right Grid */

.ys-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ys-why-choose-card {
    position: relative;
    min-height: 210px;
    padding: 26px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}
.why-choose-us {
    margin-top: 28px;
}
.ys-why-choose-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ys-why-choose-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 156, 0, 0.28);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.ys-why-choose-card:hover::before {
    transform: scaleX(1);
}

.ys-why-choose-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 16px;
    background-image: linear-gradient(
        135deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(255, 82, 0, 0.2);
    transition:
        transform 0.35s ease,
        border-radius 0.35s ease;
}

.ys-why-choose-card:hover .ys-why-choose-icon {
    transform: rotate(-8deg) scale(1.06);
    border-radius: 50%;
}

.ys-why-choose-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.ys-why-choose-card-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.65;
}

/* Tablet */

@media (max-width: 991px) {

    .ys-why-choose-content {
        position: relative;
        top: auto;
        padding-right: 0;
    }

    .ys-why-choose-grid {
        margin-top: 6px;
    }
}

/* Mobile */

@media (max-width: 575px) {

    .ys-why-choose-section {
        padding: 35px 0;
    }

    .ys-why-choose-content h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .ys-why-choose-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .ys-why-choose-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .ys-why-choose-call-btn,
    .ys-why-choose-whatsapp-btn {
        width: 100%;
    }

    .ys-why-choose-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ys-why-choose-card {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 16px;
    }

    .ys-why-choose-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
        font-size: 18px;
    }

    .ys-why-choose-card h3 {
        font-size: 19px;
    }

    .ys-why-choose-card-text {
        font-size: 15px;
        line-height: 1.6;
    }
}


/**/

/* =================================
   TESTIMONIALS SECTION
================================= */

.ys-testimonials-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background: #ffffff;
}

.ys-testimonials-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -170px;
    width: 340px;
    height: 340px;
    border: 45px solid rgba(255, 60, 0, 0.035);
    border-radius: 50%;
}

.ys-testimonials-section::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 156, 0, 0.04);
}

.ys-testimonials-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */

.ys-testimonials-heading {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.ys-testimonials-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 11px;
    color: rgb(255, 60, 0);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ys-testimonials-subtitle span {
    width: 28px;
    height: 3px;
    display: inline-block;
    border-radius: 30px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
}

.ys-testimonials-heading h2 {
    margin: 0 0 14px;
    color: #111111;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.22;
}

.ys-testimonials-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.75;
}

/* Slider */

.ys-testimonials-slider-wrap {
    position: relative;
    padding: 0 68px;
}

.ys-testimonials-slider {
    overflow: hidden;
}

.ys-testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    padding: 8px 0;
}

/* Card */

.ys-testimonial-card {
    min-width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
    padding: 26px 24px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    background: #fff8f3;
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.ys-testimonial-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 60, 0, 0.18);
    box-shadow: 0 18px 38px rgba(255, 82, 0, 0.12);
}

/* Top */

.ys-testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.ys-testimonial-client {
    display: flex;
    align-items: center;
    gap: 13px;
}

.ys-testimonial-avatar {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    border-radius: 50%;
    background-image: linear-gradient(
        135deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 10px 22px rgba(255, 82, 0, 0.18);
}

.ys-testimonial-client-info h3 {
    margin: 0 0 4px;
    color: #111111;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.ys-testimonial-client-info span {
    color: rgb(255, 60, 0);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.ys-testimonial-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgb(255, 156, 0);
    font-size: 14px;
    flex-shrink: 0;
}

/* Text */

.ys-testimonial-card p {
    margin: 0;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.75;
}

/* Arrows */

.ys-testimonials-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
    transform: translateY(-50%);
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.ys-testimonials-prev {
    left: 0;
}

.ys-testimonials-next {
    right: 0;
}

.ys-testimonials-arrow:hover {
    border-color: transparent;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 14px 28px rgba(255, 82, 0, 0.22);
}

/* Dots */

.ys-testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.ys-testimonials-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.18);
    cursor: pointer;
    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        background 0.3s ease;
}
.stop-extra-affairs {
    border-radius: 12px;
    margin-top: 25px;
    border: solid 2px #ff8e00;
}
.ys-testimonials-dot.active {
    width: 34px;
    border-radius: 20px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
}

/* Tablet */

@media (max-width: 991px) {

    .ys-testimonials-slider-wrap {
        padding: 0 56px;
    }

    .ys-testimonial-card {
        min-width: calc(100% - 0px);
        flex: 0 0 100%;
    }
}

/* Mobile */

@media (max-width: 575px) {

    .ys-testimonials-section {
        padding: 35px 0;
    }

    .ys-testimonials-heading h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .ys-testimonials-heading p {
        color: #1a1a1a;
        font-size: 16px;
        line-height: 1.7;
    }

    .ys-testimonials-slider-wrap {
        padding: 0 44px;
    }

    .ys-testimonial-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .ys-testimonial-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .ys-testimonial-avatar {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 18px;
    }

    .ys-testimonial-client-info h3 {
        font-size: 18px;
            margin: 0 0 0;
    }

    .ys-testimonial-card p {
        color: #1a1a1a;
        font-size: 16px;
        line-height: 1.4;
    }

    .ys-testimonials-arrow {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
}

/**/

/* =================================
   SIMPLE WHATSAPP CONTACT FORM
================================= */

.ys-simple-contact-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background: #fff8f3;
}

.ys-simple-contact-section::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 290px;
    height: 290px;
    border: 42px solid rgba(255, 60, 0, 0.035);
    border-radius: 50%;
}

.ys-simple-contact-section .container {
    position: relative;
    z-index: 2;
}

.ys-simple-contact-wrap {
    max-width: 850px;
    margin: 0 auto;
    padding: 35px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

/* Heading */

.ys-simple-contact-heading {
    margin-bottom: 27px;
    text-align: center;
}

.ys-simple-contact-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 18px;
    background: #111111;
    color: #25d366;
    font-size: 27px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.13);
    transition:
        transform 0.3s ease,
        border-radius 0.3s ease;
}

.ys-simple-contact-wrap:hover .ys-simple-contact-icon {
    border-radius: 50%;
    transform: rotate(-7deg);
}

.ys-simple-contact-title > span {
    display: block;
    margin-bottom: 7px;
    color: rgb(255, 60, 0);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ys-simple-contact-title h2 {
    margin: 0 0 11px;
    color: #111111;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.22;
}

.ys-simple-contact-heading p {
    max-width: 500px;
    margin: 0 auto;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.7;
}

/* Form */

.ys-simple-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ys-simple-form-group {
    margin-bottom: 17px;
}

.ys-simple-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
}

.ys-simple-form-field {
    position: relative;
}

.ys-simple-form-field > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    color: rgb(255, 60, 0);
    font-size: 14px;
    transform: translateY(-50%);
    pointer-events: none;
}

.ys-simple-form-field input,
.ys-simple-form-field select,
.ys-simple-form-field textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 12px;
    outline: none;
    background: #fffaf7;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 16px;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.ys-simple-form-field input,
.ys-simple-form-field select {
    min-height: 54px;
    padding: 12px 15px 12px 44px;
}

.ys-simple-form-field textarea {
    min-height: 125px;
    padding: 15px 15px 15px 44px;
    resize: vertical;
}

.ys-simple-message-field > i {
    top: 18px;
    transform: none;
}

.ys-simple-form-field input:focus,
.ys-simple-form-field select:focus,
.ys-simple-form-field textarea:focus {
    border-color: rgb(255, 60, 0);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 60, 0, 0.07);
}

.ys-simple-form-field input::placeholder,
.ys-simple-form-field textarea::placeholder {
    color: #777777;
}

/* Submit Button */

.ys-simple-submit-btn {
    width: fit-content;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 0;
    border-radius: 80px;
    margin: 0 auto;
    background: #1d8900;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 27px rgba(255, 82, 0, 0.23);
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ys-simple-submit-btn > i {
    font-size: 20px;
}

.ys-simple-submit-btn span {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 11px;
    transition: transform 0.3s ease;
}

.ys-simple-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 33px rgba(255, 82, 0, 0.34);
}

.ys-simple-submit-btn:hover span {
    transform: translateX(4px);
}

/* Mobile */

@media (max-width: 575px) {

    .ys-simple-contact-section {
        padding: 35px 0;
    }

    .ys-simple-contact-wrap {
        padding: 25px 17px;
        border-radius: 17px;
    }

    .ys-simple-contact-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .ys-simple-contact-title h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .ys-simple-contact-heading p {
        color: #1a1a1a;
        font-size: 16px;
        line-height: 1.7;
    }

    .ys-simple-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ys-simple-form-field input,
    .ys-simple-form-field select,
    .ys-simple-form-field textarea {
        font-size: 16px;
    }
}

/**/

/* =================================
   FOOTER SECTION
================================= */

.ys-footer {
    position: relative;
    overflow: hidden;
    background: #111111;
}

/* =================================
   FOOTER CTA
================================= */

.ys-footer-cta {
    position: relative;
    z-index: 4;
    padding: 0;
    background: #ffffff;
}

.ys-footer-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 26px 30px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
}

.ys-footer-cta-inner::before {
    content: "";
    position: absolute;
    top: -75px;
    right: 30%;
    width: 170px;
    height: 170px;
    border: 26px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.ys-footer-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ys-footer-cta-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.18);
    transition:
        transform 0.3s ease,
        border-radius 0.3s ease;
}

.ys-footer-cta-inner:hover .ys-footer-cta-icon {
    border-radius: 16px;
    transform: rotate(-7deg);
}

.ys-footer-cta-content > div {
    display: flex;
    flex-direction: column;
}

.ys-footer-cta-content > div > span {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.ys-footer-cta-content h2 {
    max-width: 690px;
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.ys-footer-cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ys-footer-call-btn,
.ys-footer-whatsapp-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 80px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.ys-footer-call-btn {
    background: #111111;
    color: #ffffff;
}

.ys-footer-whatsapp-btn {
    background: #ffffff;
    color: #111111;
}

.ys-footer-whatsapp-btn i {
    color: #25d366;
    font-size: 19px;
}

.ys-footer-call-btn:hover,
.ys-footer-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(17, 17, 17, 0.2);
}

.ys-footer-call-btn:hover {
    background: #ffffff;
    color: rgb(255, 60, 0);
}

.ys-footer-whatsapp-btn:hover {
    background: #111111;
    color: #ffffff;
}

/* =================================
   MAIN FOOTER
================================= */

.ys-footer-main {
    position: relative;
    padding: 55px 0 42px;
    overflow: hidden;
    background: #111111;
}

.ys-footer-main::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -190px;
    width: 390px;
    height: 390px;
    border: 55px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.ys-footer-main::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 98, 0, 0.045);
}

.ys-footer-main .container {
    position: relative;
    z-index: 2;
}

/* Brand */

.ys-footer-brand {
    padding-right: 25px;
}

.ys-footer-logo {
    width: 240px;
    max-width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.ys-footer-logo img {
    display: block;
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #fff;
    padding: 9px;
    border-radius: 15px;
    border: solid 1px #ff9600;
}

.ys-footer-description {
    max-width: 370px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.75;
}

.ys-footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ys-footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.ys-footer-social a:hover {
    border-color: transparent;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    transform: translateY(-4px) rotate(6deg);
}

/* Columns */

.ys-footer-column h3 {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.ys-footer-column h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    border-radius: 20px;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
}

.ys-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ys-footer-column li {
    margin-bottom: 12px;
}

.ys-footer-column li:last-child {
    margin-bottom: 0;
}

.ys-footer-column li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.73);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.ys-footer-column li a i {
    color: rgb(255, 156, 0);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.ys-footer-column li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.ys-footer-column li a:hover i {
    transform: translateX(3px);
}

/* Contact */

.ys-footer-contact {
    padding-left: 10px;
}

.ys-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
    text-decoration: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.ys-footer-contact-item:hover {
    border-color: rgba(255, 156, 0, 0.35);
    background: rgba(255, 255, 255, 0.055);
    transform: translateX(5px);
}

.ys-footer-contact-item > span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    border-radius: 50%;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    font-size: 15px;
}

.ys-footer-contact-item > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ys-footer-contact-item small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.ys-footer-contact-item strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.ys-footer-availability {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
}

.ys-footer-availability i {
    margin-top: 4px;
    color: rgb(255, 156, 0);
}

/* =================================
   FOOTER BOTTOM
================================= */

.ys-footer-bottom {
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0a0a0a;
}

.ys-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ys-footer-copyright {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.5;
}

.ys-footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ys-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ys-footer-bottom-links a:hover {
    color: rgb(255, 156, 0);
}

.ys-footer-bottom-links span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgb(255, 60, 0);
}

/* =================================
   TABLET
================================= */

@media (max-width: 991px) {

    .ys-footer-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .ys-footer-cta-buttons {
        width: 100%;
    }

    .ys-footer-contact {
        padding-left: 0;
    }

    .ys-footer-brand {
        padding-right: 0;
    }

    .ys-footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

/* =================================
   MOBILE
================================= */

@media (max-width: 575px) {

    .ys-footer-cta-inner {
        gap: 20px;
        padding: 22px 17px;
        border-radius: 16px 16px 0 0;
    }

    .ys-footer-cta-content {
        align-items: flex-start;
    }

    .ys-footer-cta-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 17px;
    }

    .ys-footer-cta-content h2 {
        font-size: 20px;
        line-height: 1.35;
    }

    .ys-footer-cta-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .ys-footer-call-btn,
    .ys-footer-whatsapp-btn {
        width: 100%;
    }

    .ys-footer-main {
        padding: 40px 0 30px;
    }

    .ys-footer-logo {
        width: 210px;
        min-height: 60px;
    }

    .ys-footer-logo img {
        max-height: 60px;
    }

    .ys-footer-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .ys-footer-column h3 {
        margin-bottom: 18px;
        font-size: 19px;
    }

    .ys-footer-column li a {
        font-size: 15px;
    }

    .ys-footer-contact-item {
        padding: 11px;
    }

    .ys-footer-bottom {
        padding: 18px 0;
    }

    .ys-footer-bottom-inner {
        align-items: center;
        text-align: center;
    }

    .ys-footer-bottom-links {
        justify-content: center;
    }
}


/**/
/* =================================
   LEGAL PAGE HERO
================================= */

.ys-legal-hero {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
}

.ys-legal-hero::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -100px;
    width: 330px;
    height: 330px;
    border: 50px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.ys-legal-hero::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.08);
}

.ys-legal-hero .container {
    position: relative;
    z-index: 2;
}

.ys-legal-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ys-legal-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.ys-legal-label span {
    width: 30px;
    height: 2px;
    display: inline-block;
    background: #ffffff;
}

.ys-legal-hero h1 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
}

.ys-legal-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.75;
}

.ys-legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    background: rgba(17, 17, 17, 0.12);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

/* =================================
   LEGAL CONTENT
================================= */

.ys-legal-content-section {
    position: relative;
    padding: 40px 0;
    background: #fff8f3;
}

.ys-legal-content-box {
    max-width: 1050px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.06);
}

.ys-legal-introduction {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.ys-legal-introduction h2 {
    margin: 0 0 15px;
    color: #111111;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.ys-legal-introduction p,
.ys-legal-block p {
    margin: 0 0 13px;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.ys-legal-introduction p:last-child,
.ys-legal-block p:last-child {
    margin-bottom: 0;
}

/* Content Blocks */

.ys-legal-block {
    padding: 25px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.09);
}

.ys-legal-block:last-child {
    border-bottom: 0;
}

.ys-legal-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 15px;
    color: #111111;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.ys-legal-block h3 > span {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    border-radius: 50%;
    background: #fff1e8;
    color: rgb(255, 60, 0);
    font-size: 12px;
    font-weight: 800;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.ys-legal-block:hover h3 > span {
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    transform: rotate(-7deg);
}

/* Lists */

.ys-legal-block ul {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.ys-legal-block li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 27px;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.65;
}

.ys-legal-block li:last-child {
    margin-bottom: 0;
}

.ys-legal-block li::before {
    content: "\f00c";
    position: absolute;
    top: 4px;
    left: 0;
    color: rgb(255, 60, 0);
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
}

/* Contact Block */

.ys-legal-contact-block {
    margin-top: 10px;
    padding: 27px;
    border-bottom: 0;
    border-radius: 15px;
    background: #fff8f3;
}

.ys-legal-contact-links {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 20px;
}

.ys-legal-contact-links > a {
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: 13px;
    background: #ffffff;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ys-legal-contact-links > a:hover {
    border-color: rgba(255, 60, 0, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 82, 0, 0.1);
}

.ys-legal-contact-links > a > i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    border-radius: 50%;
    background-image: linear-gradient(
        90deg,
        rgb(255, 60, 0) 0%,
        rgb(255, 156, 0) 100%
    );
    color: #ffffff;
    font-size: 15px;
}

.ys-legal-contact-links > a > span {
    display: flex;
    flex-direction: column;
}

.ys-legal-contact-links small {
    margin-bottom: 3px;
    color: #666666;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.ys-legal-contact-links strong {
    color: #111111;
    font-size: 15px;
    font-weight: 700;
}

/* =================================
   TABLET
================================= */

@media (max-width: 991px) {

    .ys-legal-hero {
        padding: 60px 0;
    }

    .ys-legal-content-box {
        padding: 32px 28px;
    }
}

/* =================================
   MOBILE
================================= */

@media (max-width: 575px) {

    .ys-legal-hero {
        padding: 50px 0;
    }

    .ys-legal-hero h1 {
        font-size: 34px;
    }

    .ys-legal-hero p {
        color: #ffffff;
        font-size: 16px;
        line-height: 1.7;
    }

    .ys-legal-label {
        font-size: 11px;
    }

    .ys-legal-label span {
        width: 21px;
    }

    .ys-legal-content-section {
        padding: 35px 0;
    }

    .ys-legal-content-box {
        padding: 25px 17px;
        border-radius: 16px;
    }

    .ys-legal-introduction {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .ys-legal-introduction h2 {
        font-size: 24px;
    }

    .ys-legal-introduction p,
    .ys-legal-block p {
        color: #1a1a1a;
        font-size: 16px;
        line-height: 1.7;
    }

    .ys-legal-block {
        padding: 21px 0;
    }

    .ys-legal-block h3 {
        align-items: flex-start;
        gap: 10px;
        font-size: 19px;
    }

    .ys-legal-block h3 > span {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 11px;
    }

    .ys-legal-block li {
        color: #1a1a1a;
        font-size: 16px;
        line-height: 1.65;
    }

    .ys-legal-contact-block {
        padding: 20px 15px;
    }

    .ys-legal-contact-links {
        align-items: stretch;
        flex-direction: column;
    }

    .ys-legal-contact-links > a {
        width: 100%;
        min-width: 0;
    }
}

/**/



@media (max-width:767px) { 
 
}