/* ============================
   KlinikPlus Global Styles
   ============================
*/

/* ===== HOME PAGE STYLES ===== */
.klinikplus-home-page {
    position: relative;
    overflow-x: hidden;
}

/* Background Lines */
.home-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/home_page/bg_lines.svg');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

/* Add a specific bg_lines for stats cards */
.stats-bg-lines {
    position: absolute;
    top: 600px; /* Position to align with stats cards */
    left: 0;
    width: 100%;
    height: 600px; /* Height to cover the stats area */
    background-image: url('../images/home_page/bg_lines.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    opacity: 0.15;
    z-index: 5; /* Above the decorative circles but below the content */
    pointer-events: none;
}

/* Decorative Background Elements */
.hero-decorative-bg {
    position: absolute;
    top: 50px;
    right: 0;
    width: 50.16669rem;
    height: 50.16669rem;
    flex-shrink: 0;
    border-radius: 50.16669rem;
    opacity: 0.18;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 1;
    pointer-events: none;
    transform: translateX(20%);
}

.stats-decorative-bg {
    position: absolute;
    top: 800px;
    left: -200px;
    width: 76.16669rem;
    height: 76.16669rem;
    flex-shrink: 0;
    border-radius: 76.16669rem;
    opacity: 0.1;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 1;
    pointer-events: none;
}

.transform-decorative-bg {
    position: absolute;
    top: 1400px;
    right: -100px;
    width: 50.16669rem;
    height: 50.16669rem;
    transform: rotate(60deg);
    flex-shrink: 0;
    border-radius: 76.16669rem;
    opacity: 0.1;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 1;
    pointer-events: none;
}

.services-decorative-bg {
    position: absolute;
    top: 1900px;
    left: -200px;
    width: 76.94569rem;
    height: 76.94569rem;
    transform: rotate(60deg);
    flex-shrink: 0;
    border-radius: 76.94569rem;
    opacity: 0.05;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 1;
    pointer-events: none;
}

.team-decorative-bg {
    position: absolute;
    top: 2400px;
    right: -200px;
    width: 76.94569rem;
    height: 76.94569rem;
    transform: rotate(60deg);
    flex-shrink: 0;
    border-radius: 76.94569rem;
    opacity: 0.05;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 1;
    pointer-events: none;
}

.testimonial-decorative-bg {
    position: absolute;
    top: 3100px;
    left: -100px;
    width: 50.16669rem;
    height: 50.16669rem;
    transform: rotate(60deg);
    flex-shrink: 0;
    border-radius: 50.16669rem;
    opacity: 0.05;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 1;
    pointer-events: none;
}

/* How it works decorative element is defined in a separate CSS file */

/* Hero Section */
.hero-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 10;
}

/* Hero title now uses semantic h1 tag with predefined typography */

.hero-subtitle {
    color: #373737;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

/* Floating Images */
.hero-image {
    position: relative;
    padding-left: 15px; /* Add padding to move doctor image more to the right */
    display: flex;
    justify-content: center;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating-image {
    position: absolute;
    z-index: 10;
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.floating-image:hover {
    transform: translateY(-5px);
}

/* Position for each floating image */
.floating-image-1 {
    top: 28%;
    left: 15%;
    max-width: 160px;
    animation-delay: 0s;
}

.floating-image-2 {
    top: 25%;
    right: 2%;
    max-width: 160px;
    animation-delay: 1s;
}

.floating-image-3 {
    bottom: 15%;
    right: 0;
    max-width: 260px;
    animation-delay: 2s;
}

/* Responsive Styles for Floating Images */
/* MacBook Air and similar sized laptops */
/* Changed to 1439px so 1440px displays like 1920px */
@media (max-width: 1439px) {
    .floating-image-2 {
        top: 25%;
        right: 0;
    }

    .floating-image-3 {
        bottom: 15%;
        right: 0;
    }

    /* Decorative elements responsive */
    .hero-decorative-bg {
        width: 40rem;
        height: 40rem;
        border-radius: 40rem;
    }

    .stats-decorative-bg {
        width: 60rem;
        height: 60rem;
        border-radius: 60rem;
        left: -120px;
    }

    .transform-decorative-bg {
        width: 40rem;
        height: 40rem;
    }

    .services-decorative-bg {
        width: 60rem;
        height: 60rem;
        left: -120px;
    }

    .team-decorative-bg {
        width: 60rem;
        height: 60rem;
        right: -120px;
    }

    .testimonial-decorative-bg {
        width: 40rem;
        height: 40rem;
        left: -80px;
    }

    .team-testimonials-bg-lines {
        top: 3700px;
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .hero-subtitle {
        font-size: 16px;
    }

    .floating-image-1 {
        top: 20%;
        left: 10%;
    }

    .floating-image-2 {
        top: 20%;
        right: 0;
    }

    .floating-image-3 {
        bottom: 20%;
        right: -10px;
    }

    .hero-decorative-bg {
        width: 40rem;
        height: 40rem;
        border-radius: 40rem;
        right: -100px;
    }

    .stats-decorative-bg {
        width: 60rem;
        height: 60rem;
        border-radius: 60rem;
        left: -150px;
        top: 750px;
    }

    .stats-bg-lines {
        top: 600px;
        background-size: 110%;
    }

    .transform-decorative-bg {
        width: 40rem;
        height: 40rem;
        right: -80px;
    }

    .services-decorative-bg {
        width: 60rem;
        height: 60rem;
        left: -150px;
    }

    .team-decorative-bg {
        width: 60rem;
        height: 60rem;
        right: -150px;
        top: 2300px;
    }

    .testimonial-decorative-bg {
        width: 40rem;
        height: 40rem;
        left: -80px;
        top: 3000px;
    }
}

@media (max-width: 992px) {
    .floating-image {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 15px auto;
        width: 80%;
        max-width: 280px !important;
        animation: none;
    }

    .hero-image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Decorative elements responsive */
    .hero-decorative-bg {
        width: 30rem;
        height: 30rem;
        border-radius: 30rem;
        top: 200px;
        transform: translateX(30%);
    }

    .stats-decorative-bg {
        width: 40rem;
        height: 40rem;
        border-radius: 40rem;
        left: -120px;
        top: 900px;
    }

    .stats-bg-lines {
        top: 800px;
        height: 800px;
        background-size: 120%;
        opacity: 0.05;
    }

    .transform-decorative-bg {
        width: 30rem;
        height: 30rem;
        top: 1600px;
        right: -70px;
    }

    .services-decorative-bg {
        width: 40rem;
        height: 40rem;
        top: 1900px;
        left: -100px;
    }

    .team-decorative-bg {
        width: 40rem;
        height: 40rem;
        top: 2700px;
        right: -100px;
    }

    .testimonial-decorative-bg {
        width: 30rem;
        height: 30rem;
        top: 3400px;
        left: -80px;
    }

    .team-testimonials-bg-lines {
        top: 3800px;
        height: 400px;
    }
}

.team-decorative-bg {
    width: 40rem;
    height: 40rem;
    top: 2800px;
    right: -120px;
}

.testimonial-decorative-bg {
    width: 30rem;
    height: 30rem;
    top: 3400px;
    left: -80px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    height: 68px;
    background: #FF8E6C;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    background: #ff7a53;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 142, 108, 0.4);
}

.hero-btn-arrow {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover .hero-btn-arrow {
    transform: translateX(2px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #FF8E6C;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-icon {
    width: 50px;
    height: 50px;
}

.hero-btn-secondary:hover {
    border-color: #FF8E6C;
    color: #FF8E6C;
    transform: translateY(-2px);
}

.hero-doctor-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    transform: translateY(-60px);
}

/* Stats Section */
.stats-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 10;
    background: transparent;
}

.stats-card {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    height: 26.26256rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-card-orange {
    background: #FF8E6C;
    color: white;
}

.stats-card-black {
    background: linear-gradient(135deg, #2D2D2D, #1A1A1A);
    color: white;
}

.stats-card-yellow {
    background: #FEE581;
    color: #2D2D2D;
}

.stats-card-content {
    z-index: 2;
    position: relative;
}

.stats-number {
    color: #FFF;
    font-family: 'Outfit', sans-serif;
    font-size: 4.53888rem;
    font-weight: 600;
    line-height: 5.21975rem;
    letter-spacing: -0.12606rem;
    margin-bottom: 0.5rem;
}

.stats-text {
    color: #FFF;
    font-family: 'Outfit', sans-serif;
    font-size: 1.26081rem;
    font-weight: 500;
    line-height: 2.14338rem;
    text-transform: capitalize;
}

/* Yellow card text override */
.stats-card-yellow .stats-number,
.stats-card-yellow .stats-text {
    color: #2D2D2D;
}

.stats-card-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
}

.stats-card-image img {
    display: block;
    width: 100%;
    object-fit: contain;
    object-position: bottom;
}

/* Specific image heights and positioning for each card */
.stats-card-orange .stats-card-image {
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.stats-card-orange .stats-card-image img {
    height: 14rem;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
}

.stats-card-black .stats-card-image img {
    height: 15.8125rem;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
}

.stats-card-yellow .stats-card-image img {
    height: 15.3125rem;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
}

/* Transforming Section */
.transforming-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 10;
}

/* Transforming title now uses semantic h2 tag */

.transforming-text {
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.transforming-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.transforming-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    height: 68px;
    background: #FF8E6C;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transforming-btn:hover {
    background: #ff7a53;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 142, 108, 0.4);
}

.transforming-btn-arrow {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.transforming-btn:hover .transforming-btn-arrow {
    transform: translateX(2px);
}

.solutions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    height: 68px;
    background: transparent;
    color: #150F02;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solutions-btn:hover {
    transform: translateY(-2px);
}

.solutions-icon {
    width: 26px;
    height: 26px;
    transition: transform 0.3s ease;
}

.solutions-btn:hover .solutions-icon {
    transform: translateX(2px);
}

.transforming-image img {
    height: auto;
    border-radius: 20px;
}

/* Services Section */
.services-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 10;
}

/* New Service Cards */
.service-card-new {
    height: 393px;
    border-radius: 26px;
    background-color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1.326px solid #ECECEC;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card-new:hover {
    background-color: #140F2D;
    transform: translateY(-5px);
    border-color: #140F2D;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.service-card-new:hover .service-card-content {
    opacity: 0;
}

.service-card-icon {
    position: absolute;
    width: 103px;
    height: 103px;
    top: 30px;
    left: 30px;
}

.service-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.service-icon-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    object-fit: contain;
    color: #FF8E6C;
}

.service-card-title {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
    text-edge: cap;
    leading-trim: both;
}

.service-card-text {
    color: #696969;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

/* Responsive service card styles */
@media (max-width: 992px) {
    .service-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-card-title {
        font-size: 1.35rem;
    }

    .service-card-content {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .service-card-title {
        font-size: 1.25rem;
    }

    .service-card-new {
        padding: 30px 20px;
        height: 350px;
    }

    .service-card-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .service-learn-more {
        width: 170px;
        padding: 1rem 1.5rem;
    }
}

.service-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #140F2D;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 26px;
}

.service-card-new:hover .service-card-hover,
.service-card-new.hover-active .service-card-hover {
    opacity: 1;
    visibility: visible;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FF8E6C;
    margin-right: 12px;
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    height: 68px;
    width: 190px;
    background: #FF8E6C;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.service-learn-more img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.service-learn-more span {
    display: inline-block;
    position: relative;
    transition: opacity 0.3s ease;
}

/* Default button shows "Join Now" */
.service-card-new .service-learn-more span::after {
    content: "";
}

/* When card is hovered, change button text to "Learn More" */
.service-card-new:hover .service-learn-more span {
    opacity: 0;
}

/* When card is hovered, make the arrow white */
.service-card-new:hover .service-learn-more img {
    transform: translateX(5px);
    filter: brightness(0) invert(1);
}

/* Add pseudo-element for "Learn More" text when card is hovered */
.service-learn-more::before {
    content: "Learn More";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 16px), -50%); /* Adjust for the arrow icon */
    width: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: 600;
    white-space: nowrap;
}

.service-card-new:hover .service-learn-more::before {
    opacity: 1;
}

.service-learn-more:hover {
    background: #ff7a53;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 142, 108, 0.4);
}

/* Force hover state for the second card */
/* Remove hover-active special styling */

/* Services title now uses semantic h2 tag */

.services-subtitle {
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-text {
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
}

.services-cta-card {
    background: linear-gradient(135deg, #FF8E6C, #ff7a53);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    height: fit-content;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: #FF8E6C;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn-arrow {
    width: 16px;
    height: 16px;
}

/* Team Section */
.team-section {
    padding: 40px 0 80px;
    position: relative;
    z-index: 10;
}

/* Team title now uses semantic h2 tag */

.team-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-card-featured {
    background: linear-gradient(135deg, #FF8E6C, #ff7a53);
    color: white;
    transform: scale(1.05);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #FF8E6C;
    margin-bottom: 1rem;
}

.team-card-featured .team-role {
    color: rgba(255, 255, 255, 0.9);
}

.team-description {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
}

.team-card-featured .team-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section - New Styles */
.testimonials-section {
    position: relative;
    background-color: transparent;
    overflow: visible; /* Allow slider to extend beyond section if needed */
    width: 100%;
    padding-bottom: 40px; /* Added bottom padding to prevent clipping */
}

.testimonials-section::before,
.testimonials-section::after {
    display: none;
}

/* Ensure container allows slider to work properly without clipping - Full width */
/* .testimonials-section .klinikplus-container {
    overflow: visible;
    position: relative;
    width: 100%;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
} */

/* Keep heading centered with max-width constraint */
.testimonials-section .klinikplus-container > .text-center {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Make slider extend full width */
.testimonials-section .testimonials-slider {
    width: 100%;
    max-width: 100%;
}

.testimonials-slider {
    position: relative;
    margin-top: 50px;
    overflow: hidden; /* Keep hidden for slider functionality, but add padding to prevent clipping */
    /* padding: 30px 60px 80px 60px;  */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 750px; /* Increased height to prevent content clipping */
}
.testimonials-dots {
    display: none !important;
}
.testimonials-track {
    display: flex;
    gap: 30px;
    padding: 0;
    padding-bottom: 60px; /* Increased padding to prevent card clipping */
    transition: transform 0.6s ease;
    will-change: transform;
    width: max-content;
    align-items: flex-start; /* Align cards to top */
    overflow: visible; /* Ensure cards are not clipped */
    position: relative;
}

.testimonial-slide {
    width: 408px;
    flex: 0 0 408px;
    display: flex;
    flex-shrink: 0;
    overflow: visible; /* Ensure card content is not clipped */
    align-items: stretch; /* Allow cards to grow to full height */
    min-width: 408px;
    max-width: 408px;
    box-sizing: border-box;
}

.testimonial-slide .testimonial-card-new {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

@media (min-width: 1441px) and (max-width: 1599px) {
    .testimonials-section {
        overflow: visible;
    }

    .testimonials-section .klinikplus-container {
        overflow: visible;
    }

    .testimonials-slider {
        overflow: hidden; /* Keep hidden for slider functionality */
        width: 100%;
        max-width: 100%;
        padding: 30px 60px; /* Increased padding on both sides to prevent clipping */
        min-height: 690px; /* Fixed height to prevent navigation buttons from moving */
    }

    .testimonials-nav {
        top: calc(30px + 315px); /* Maintain fixed position */
    }

    .testimonials-nav-prev {
        left: 10px;
    }

    .testimonials-nav-next {
        right: 10px;
    }

    .testimonial-slide {
        width: 306px !important;
        flex: 0 0 306px !important;
        min-width: 306px;
        max-width: 306px;
    }

    .testimonial-slide .testimonial-card-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .testimonial-slide .testimonial-card-new {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        box-sizing: border-box;
    }
}

@media (max-width: 1439px) {
    .testimonials-track {
        gap: 24px;
    }

    .testimonial-slide {
        width: calc((100% - 24px) / 2);
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 991px) {
    .testimonials-track {
        gap: 20px;
    }

    .testimonial-slide {
        width: 100%;
        flex: 0 0 100%;
    }

    .testimonials-slider {
        overflow: hidden; /* Keep hidden for slider functionality */
        padding: 20px 30px; /* Adequate padding on mobile to prevent clipping */
        min-height: auto; /* Remove fixed height on mobile */
    }
}

.testimonials-nav {
    position: absolute;
    top: calc(30px + 315px); /* Fixed position: padding + half of card height (630px/2) */
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 142, 108, 0.4);
    background: #fff;
    color: #FF8E6C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 142, 108, 0.15);
    z-index: 10; /* Higher z-index to stay above cards */
}

.testimonials-nav:hover:not(:disabled) {
    background: #FF8E6C;
    color: #fff;
    box-shadow: 0 15px 40px rgba(255, 142, 108, 0.25);
}

.testimonials-nav:disabled {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
}

.testimonials-nav-prev {
    left: 10px; /* Positioned to not overlap with shadow */
}

.testimonials-nav-next {
    right: 10px; /* Positioned to not overlap with shadow */
}

@media (max-width: 1400px) {
    .testimonials-nav-prev {
        left: 5px; /* Closer on smaller screens but still clear of shadow */
    }

    .testimonials-nav-next {
        right: 5px; /* Closer on smaller screens but still clear of shadow */
    }

    .testimonials-nav {
        top: calc(30px + 315px); /* Maintain fixed position */
    }
}

@media (max-width: 991px) {
    .testimonials-nav {
        display: none;
    }
}

/*.testimonials-dots {*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*gap: 0.75rem;*/
    /*margin-top: 2rem;*/
/*}*/

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 142, 108, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonials-dot.active,
.testimonials-dot:hover {
    background: #FF8E6C;
    transform: scale(1.1);
}

/* Testimonial Card Wrapper */
.testimonial-card-wrapper {
    position: relative;
    overflow: visible; /* Ensure content is not clipped */
    height: auto; /* Allow wrapper to grow with content */
    width: 100%;
    box-sizing: border-box;
}

/* Testimonial Decorative Blur */
.testimonial-decorative-blur {
    position: absolute;
    width: 50.16669rem;
    height: 50.16669rem;
    transform: rotate(60deg);
    flex-shrink: 0;
    border-radius: 50.16669rem;
    opacity: 0.1;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 0;
    left: -20rem;
    top: -20rem;
    pointer-events: none;
}

/* Responsive styles for testimonial decorative blur */
@media (max-width: 1200px) {
    .testimonial-decorative-blur {
        width: 40rem;
        height: 40rem;
        left: -15rem;
        top: -15rem;
    }
}

@media (max-width: 991px) {
    .testimonial-decorative-blur {
        width: 35rem;
        height: 35rem;
        left: -12rem;
        top: -12rem;
    }
}

@media (max-width: 768px) {
    .testimonial-decorative-blur {
        width: 30rem;
        height: 30rem;
        left: -10rem;
        top: -10rem;
    }

    .testimonial-card-new {
        height: auto !important;
        min-height: auto !important;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .testimonial-card-new:hover {
        height: auto !important;
        min-height: auto !important;
    }

    .testimonial-header {
        margin-bottom: 15px;
    }

    .testimonial-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .testimonial-author-wrapper {
        margin-top: auto;
    }

    .testimonial-author {
        padding: 15px 10px 10px 10px;
    }

    .author-info h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .author-info p {
        font-size: 0.8rem;
        margin: 0;
    }

    .watch-video-btn {
        margin-top: 15px;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .testimonial-decorative-blur {
        width: 25rem;
        height: 25rem;
        left: -8rem;
        top: -8rem;
    }

    .testimonial-card-new {
        height: auto !important;
        min-height: auto !important;
        padding: 15px;
        display: flex;
        flex-direction: column;
    }

    .testimonial-card-new:hover {
        height: auto !important;
        min-height: auto !important;
    }

    .testimonial-header {
        margin-bottom: 12px;
    }

    .testimonial-title {
        font-size: 1rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
        flex-grow: 1;
    }

    .testimonial-author-wrapper {
        margin-top: auto;
    }

    .testimonial-author {
        padding: 12px 8px 8px 8px;
    }

    .author-info h4 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .author-info p {
        font-size: 0.75rem;
        margin: 0;
    }

    .watch-video-btn {
        margin-top: 12px;
        opacity: 1;
        transform: translateY(0);
    }

    .testimonials-container {
        gap: 20px;
    }
}

.testimonial-card-new {
    position: relative;
    min-height: auto; /* Allow card to grow based on content */
    height: auto;
    max-height: none; /* Remove any max-height constraint */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-color: white;
    border-radius: 30px;
    padding: 30px;
    padding-bottom: 60px; /* Increased bottom padding to prevent clipping */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    overflow: visible; /* Changed from hidden to visible to prevent clipping */
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card-new:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #342F4D;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 30px;
}

.testimonial-card-new:hover {
    /* Remove fixed min-height on hover - let content determine height */
    border-radius: 30px;
}

.testimonial-card-new:hover:before {
    opacity: 1;
    border-radius: 30px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-quote-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-title {
    font-size: 22px; /* 22px font size */
    color: #696969; /* Color 696969 */
    line-height: normal; /* Auto line height */
    font-weight: 600;
    margin: 0;
    transition: color 0.25s ease;
    position: relative;
    z-index: 2;
}

.testimonial-divider {
    height: 1px;
    width: 100%;
    background-color: #E6E7EA; /* Divider color E6E7EA */
    margin-bottom: 30px;
    transition: background-color 0.25s ease;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 18px;
    color: #696969; /* Same heading color */
    line-height: 1.6;
    margin-bottom: 30px;
    transition: color 0.25s ease;
    position: relative;
    z-index: 2;
    flex-grow: 1; /* Allow text to grow and push author section down */
}

.testimonial-author-wrapper {
    position: relative;
    margin-top: auto; /* Push to bottom of flex container */
    margin-bottom: 0;
    padding: 0;
    padding-bottom: 30px; /* Increased bottom padding to prevent clipping */
    z-index: 2;
    flex-shrink: 0; /* Prevent author section from shrinking */
    overflow: visible; /* Ensure content is not clipped */
    min-height: auto; /* Allow wrapper to grow with content */
}

.testimonial-author-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Use full height of wrapper */
    min-height: 127px; /* Minimum height to match SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='310' height='127' viewBox='0 0 310 127' fill='none' preserveAspectRatio='none'%3E%3Cpath d='M45.6664 20H292.333C301.906 20 309.666 27.7602 309.666 37.333V109.333C309.666 118.906 301.906 126.667 292.333 126.667H17.6664C8.09361 126.667 0.333374 118.906 0.333374 109.333V37.333C0.333544 27.7603 8.0937 20.0002 17.6664 20H25.6664V0L45.6664 20Z' fill='%23F6F2ED'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Stretch to fill full height */
    background-position: top left;
    z-index: 1;
    pointer-events: none;
}

.testimonial-card-new:hover .testimonial-author-wrapper:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='310' height='127' viewBox='0 0 310 127' fill='none' preserveAspectRatio='none'%3E%3Cpath d='M45.6664 20H292.333C301.906 20 309.666 27.7602 309.666 37.333V109.333C309.666 118.906 301.906 126.667 292.333 126.667H17.6664C8.09361 126.667 0.333374 118.906 0.333374 109.333V37.333C0.333544 27.7603 8.0937 20.0002 17.6664 20H25.6664V0L45.6664 20Z' fill='%23403A5F'/%3E%3C/svg%3E");
    background-size: 100% 100%; /* Stretch to fill full height */
}

.testimonial-author {
    display: flex;
    align-items: flex-start; /* Align to top to allow text wrapping */
    gap: 15px;
    position: relative;
    z-index: 2;
    padding: 30px 20px 30px 20px; /* Increased bottom padding to prevent clipping */
    min-height: auto; /* Allow author section to grow */
    overflow: visible; /* Ensure content is not clipped */
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    position: relative;
    flex: 1;
    min-width: 0; /* Allow text to wrap properly */
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #140F2D;
    transition: color 0.25s ease;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.author-info p {
    font-size: 16px;
    color: #696969;
    margin: 0;
    padding: 0;
    transition: color 0.25s ease;
    line-height: 1.6; /* Increased line height for better readability */
    word-wrap: break-word; /* Ensure long text wraps */
    overflow: visible; /* Ensure text is not clipped */
    white-space: normal; /* Allow text to wrap to multiple lines */
}

.testimonial-card-new:hover .testimonial-title,
.testimonial-card-new:hover .testimonial-text,
.testimonial-card-new:hover .author-info h4,
.testimonial-card-new:hover .author-info p {
    color: white;
}

.testimonial-card-new:hover .testimonial-divider {
    background-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card-new:hover .watch-video-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card-new {
        height: auto !important;
        min-height: auto !important;
        padding: 25px;
        display: flex;
        flex-direction: column;
    }

    .testimonial-card-new:hover {
        height: auto !important;
        min-height: auto !important;
    }

    .testimonial-text {
        flex-grow: 1;
        margin-bottom: 25px;
    }

    .testimonial-author-wrapper {
        margin-top: auto;
    }

    .watch-video-btn {
        opacity: 1;
        transform: translateY(0);
        margin-top: 20px;
    }
}

@media (min-width: 1024px) {
    .testimonials-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Original testimonial cards styles below - kept for reference */

/* How It Works Section - New Design */
.how-it-works-section {
    padding: 0 0 80px;
    background-color: transparent;
    position: relative;
    z-index: 10;
}

/* How it works section styles */
.how-it-works-wrapper {
    border-radius: 2.66669rem;
    border: 1.333px solid #E0DFDF;
    background: #FFF;
    padding: 40px 40px 60px;
    margin-bottom: 40px;
    position: relative;
}

.how-it-works-section h2 {
    position: relative;
    margin: 0 auto 30px;
    width: fit-content;
    padding: 0 30px;
    text-align: center;
}

.how-it-works-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    background-color: transparent;
    border-radius: 24px;
    padding: 20px 0 10px;
    box-shadow: none;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content Area */
.how-it-works-content {
    padding: 0 30px 0 0;
}

.step-content-area {
    min-height: 400px;
    transition: all 0.3s ease;
}

.step-number {
    display: inline-block;
    color: #FF8E6C;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #140F2D;
    margin-bottom: 20px;
}

.step-description {
    color: #696969;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.step-description p {
    margin-bottom: 16px;
}

/* Middle Timeline */
.timeline-container {
    position: relative;
    padding: 0;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.timeline-line {
    display: none;
}

/* Create individual timeline lines for each step */
.timeline-step {
    position: relative;
}

.timeline-step::after {
    content: "";
    position: absolute;
    top: 50px;
    bottom: -50px;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    z-index: 1;
    border-left: 1px dashed #000;
}

/* Last step doesn't need a line after it */
.timeline-step:last-child::after {
    display: none;
}

/* Customize each step's line */
.timeline-step[data-step="1"]::after {
    border-left: 1px dashed #FF8E6C;
}

.timeline-step[data-step="2"]::after,
.timeline-step[data-step="3"]::after,
.timeline-step[data-step="4"]::after {
    border-left: 1px dashed #000;
}

/* Active styles */
.timeline-step.active::after {
    border-left-color: #FF8E6C;
}

.timeline-step[data-step="5"]::before {
    content: "";
    position: absolute;
    top: -70px;
    height: 60px;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    z-index: 1;
    border-left: 1px dashed #000;
}

.timeline-step {
    position: relative;
    padding: 15px 0;
    width: 100%;
    cursor: pointer;
    z-index: 2;
    margin-bottom: 40px; /* Increased spacing between steps */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Hide the timeline dots and use colored text instead */
.timeline-dot {
    display: none;
}

.timeline-step[data-step="1"] .timeline-label {
    color: #FF8E6C;
}

.timeline-label {
    position: relative;
    margin-top: 0;
    padding-top: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.timeline-step.active .timeline-label {
    color: #FF8E6C;
    font-weight: 600;
}

/* Remove horizontal line elements */
.timeline-step:before {
    display: none;
}

/* Right Image Area */
.how-it-works-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 420px;
    background-color: #FFF1EE;
}

.step-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    max-height: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .how-it-works-container {
        grid-template-columns: 1fr;
    }

    .timeline-container {
        order: 1;
        flex-direction: row;
        justify-content: space-between;
        padding: 30px 20px;
        overflow-x: auto;
        min-width: 100%;
    }

    .timeline-line {
        display: none !important;
    }

    .timeline-step {
        margin-bottom: 0;
        margin-right: 20px;
        padding: 0 15px;
        min-width: 150px;
    }

    .timeline-step::after {
        display: none !important;
    }

    .timeline-step:last-child {
        margin-right: 0;
    }

    .timeline-dot {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .timeline-label {
        position: static;
        transform: none;
        margin-top: 30px;
        width: 100%;
        text-align: center;
    }

    .timeline-step:before {
        display: none !important;
    }

    .timeline-step:first-child:before {
        display: none !important;
    }

    .how-it-works-content {
        order: 2;
    }

    .how-it-works-image {
        order: 3;
    }
}

/* Contact Section */
.contact-section {
    padding: 0 0 80px;
    background: transparent;
    position: relative;
    z-index: 10;
}

/* Contact title now uses semantic h2 tag */

.contact-text {
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-features {
    /* Features container */
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #150F02;
}

.contact-check {
    color: #FF8E6C;
    font-size: 1.125rem;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 2;
}

.contact-form .form-control {
    width: 100%;

    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    background: white;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #FF8E6C;
    box-shadow: 0 0 0 3px rgba(255, 142, 108, 0.1);
}

.contact-form .textarea {
    padding: 1rem;
    min-height: 120px;
    resize: vertical;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #FF8E6C;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.contact-submit-btn:hover {
    background: #ff7a53;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 142, 108, 0.4);
}

.btn-icon {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .services-title,
    .team-title,
    .testimonials-title,
    .how-it-works-title,
    .contact-title,
    .transforming-title {
        font-size: 2rem;
    }
}

/* Tablet specific styles */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section .row {
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-section h1 {
        text-align: center;
        width: 100%;
        max-width: none;
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.125rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        min-width: 140px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 0 0 60px;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-card-featured {
        transform: none;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section .row {
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-section h1 {
        text-align: center;
        width: 100%;
        max-width: none;
    }

    .hero-subtitle {
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .stats-card {
        height: 26.26256rem;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .stats-bg-lines {
        top: 900px;
        height: 700px;
        background-size: 140%;
        opacity: 0.04;
    }

    .stats-card-image img {
        display: block;
        object-fit: contain;
        object-position: bottom;
    }

    .stats-card-orange .stats-card-image img {
        height: 14rem;
        width: auto;
        object-fit: contain;
        object-position: bottom right;
    }

    .stats-card-black .stats-card-image img {
        height: 15.8125rem;
        width: auto;
        object-fit: contain;
        object-position: bottom center;
    }

    .stats-card-yellow .stats-card-image img {
        height: 15.3125rem;
        width: auto;
        object-fit: contain;
        object-position: bottom center;
    }

    .team-testimonials-bg-lines {
        top: 3900px;
        height: 300px;
    }

    h2,
    .services-title,
    .team-title,
    .testimonials-title,
    .how-it-works-title,
    .contact-title,
    .transforming-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .service-card,
    .team-card,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section,
    .stats-section,
    .transforming-section,
    .services-section,
    .team-section,
    .testimonials-section,
    .how-it-works-section,
    .contact-section {
        padding: 0 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        width: 100%;
    }

    h2,
    section h2,
    .section-title,
    .services-title,
    .team-title,
    .testimonials-title,
    .how-it-works-title,
    .contact-title,
    .transforming-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        height: auto;
    }

    .hero-btn-secondary {
        padding: 0.875rem;
        font-size: 0.875rem;
    }

    .video-icon {
        width: 50px;
        height: 50px;
    }

    .stats-number {
        font-size: 4.53888rem;
        font-weight: 600;
        line-height: 5.21975rem;
        letter-spacing: -0.12606rem;
    }

    .team-testimonials-bg-lines {
        top: 4000px;
        height: 250px;
    }

    /* Stats cards responsive adjustments for very small screens */
    .stats-card {
        height: 24rem;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .stats-number {
        font-size: 3.8rem;
        line-height: 4.5rem;
        font-weight: 600;
        letter-spacing: -0.12606rem;
    }

    .stats-text {
        font-size: 1.1rem;
        line-height: 1.8rem;
        font-weight: 500;
    }

    .stats-card-orange .stats-card-image img {
        height: 12rem;
        width: auto;
        object-fit: contain;
        object-position: bottom right;
    }

    .stats-card-black .stats-card-image img {
        height: 13rem;
        width: auto;
        object-fit: contain;
        object-position: bottom center;
    }

    .stats-card-yellow .stats-card-image img {
        height: 12.5rem;
        width: auto;
        object-fit: contain;
        object-position: bottom center;
    }
}

/* Tailwind CSS Compatibility */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Font Faces */
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
    padding-top: 80px; /* Compensate for fixed navigation */
}

/* Utility Classes */
.text-primary {
    color: #FF8E6C !important;
}

/* Container System */
.klinikplus-container {
    max-width: 1290px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10; /* Ensure content is above decorative backgrounds */
}

/* Responsive Container Padding */

/* Force 1440px to display exactly like 1920px - Same padding and spacing */
@media (min-width: 1441px) and (max-width: 1599px) {
    /* Container - 236px left and right padding for 1440px, no margins */
    .klinikplus-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding-left: 236px !important;
        padding-right: 236px !important;
    }

    /* Navigation - 236px left and right padding for 1440px, no margins */
    .klinikplus-nav-container {
        padding: 0 236px !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Hero section - Match 1920px layout exactly */
    .hero-section .row {
        margin: 0 !important;
    }

    .hero-section .col-lg-5 {
        padding-right: 0 !important;
    }

    .hero-section .col-lg-7 {
        padding-left: 0 !important;
    }

    /* Hero image - Exact same as 1920px */
    .hero-doctor-img {
        width: 100% !important;
        height: auto !important;
        max-width: 600px !important;
        transform: translateY(-60px) !important;
    }

    /* Hero heading - Exact same as 1920px */
    .hero-section h1 {
        font-family: 'Outfit', sans-serif !important;
        font-weight: 700 !important;
        font-size: 4.5rem !important;
        color: #150F02 !important;
        margin-bottom: 1.5rem !important;
        width: max-content !important;
        line-height: normal !important;
    }

    /* Decorative backgrounds - Exact same sizes as 1920px */
    .hero-decorative-bg {
        width: 50.16669rem !important;
        height: 50.16669rem !important;
        border-radius: 50.16669rem !important;
        transform: translateX(20%) !important;
    }

    .stats-decorative-bg {
        width: 76.16669rem !important;
        height: 76.16669rem !important;
        border-radius: 76.16669rem !important;
        left: -200px !important;
    }

    .transform-decorative-bg {
        width: 50.16669rem !important;
        height: 50.16669rem !important;
        transform: rotate(60deg) !important;
    }

    .services-decorative-bg {
        width: 76.94569rem !important;
        height: 76.94569rem !important;
        left: -200px !important;
        transform: rotate(60deg) !important;
    }

    .team-decorative-bg {
        width: 76.16669rem !important;
        height: 76.16669rem !important;
        right: -200px !important;
    }

    .testimonial-decorative-bg {
        width: 50.16669rem !important;
        height: 50.16669rem !important;
        left: -100px !important;
    }

    /* H1 headings - Custom styling for 1440px */
    h1,
    .hero-section h1 {
        color: #150F02 !important;
        font-family: 'Outfit', sans-serif !important;
        font-size: 3.75rem !important;
        font-style: normal !important;
        font-weight: 600 !important;
        line-height: 3.8125rem !important; /* 101.667% */
    }

    /* H2 headings - Custom styling for 1440px */
    h2,
    section h2,
    .section-title,
    .services-title,
    .team-title,
    .testimonials-title,
    .how-it-works-title,
    .contact-title,
    .transforming-title {
        color: #150F02 !important;
        font-family: 'Outfit', sans-serif !important;
        font-size: 2.25rem !important;
        font-style: normal !important;
        font-weight: 600 !important;
        line-height: 3.375rem !important; /* 150% */
        text-transform: capitalize !important;
    }

    /* Paragraph text - 14.5px for 1440px */
    p,
    .hero-subtitle,
    .transforming-text,
    .service-card-text,
    .team-description,
    .testimonial-text,
    .contact-text {
        font-size: 14.5px !important;
    }

    /* Navigation text - 13.5px for 1440px */
    .klinikplus-nav-link,
    .klinikplus-phone-number,
    .klinikplus-btn-text,
    .klinikplus-lang-active,
    .klinikplus-lang-inactive {
        font-size: 13.5px !important;
    }

    /* Navigation layout - Reduce gaps and align right */
    .klinikplus-nav-links {
        gap: 1.5rem !important; /* Reduced from 2rem */
        white-space: nowrap !important; /* Keep text in one line */
    }

    .klinikplus-nav-right {
        gap: 2rem !important; /* Reduced from 4.375rem (70px) */
        white-space: nowrap !important; /* Keep text in one line */
        margin-left: auto !important; /* Push to right */
    }

    .klinikplus-nav-link,
    .klinikplus-phone-number,
    .klinikplus-btn-text {
        white-space: nowrap !important; /* Prevent text wrapping */
    }

    /* Submit button - Reduce width for better spacing */
    .klinikplus-submit-btn {
        width: 12rem !important; /* Reduced from 14.5rem */
        gap: 0.75rem !important; /* Reduced internal gap */
    }

    /* Compare Plans Section - Buttons height 34.72px for 1440px - Apply to ALL cards */
    /* Multiple selector variations to ensure all buttons get styled */
    .klinikplus-compare-section .klinikplus-compare-right > .klinikplus-compare-card > .klinikplus-compare-subscribe-btn,
    .klinikplus-compare-section .klinikplus-compare-right > .klinikplus-compare-card > button.klinikplus-compare-subscribe-btn,
    .klinikplus-compare-section .klinikplus-compare-right .klinikplus-compare-card .klinikplus-compare-subscribe-btn,
    .klinikplus-compare-section .klinikplus-compare-right .klinikplus-compare-card button.klinikplus-compare-subscribe-btn,
    .klinikplus-compare-right > .klinikplus-compare-card > .klinikplus-compare-subscribe-btn,
    .klinikplus-compare-right > .klinikplus-compare-card > button.klinikplus-compare-subscribe-btn,
    .klinikplus-compare-right .klinikplus-compare-card .klinikplus-compare-subscribe-btn,
    .klinikplus-compare-right .klinikplus-compare-card button.klinikplus-compare-subscribe-btn,
    .klinikplus-compare-card > .klinikplus-compare-subscribe-btn,
    .klinikplus-compare-card > button.klinikplus-compare-subscribe-btn,
    .klinikplus-compare-card .klinikplus-compare-subscribe-btn,
    .klinikplus-compare-card button.klinikplus-compare-subscribe-btn,
    button.klinikplus-compare-subscribe-btn.rounded-full,
    .klinikplus-compare-subscribe-btn.rounded-full,
    button.klinikplus-compare-subscribe-btn,
    .klinikplus-compare-subscribe-btn {
        height: 34.720829010009766px !important;
        font-family: 'Outfit', sans-serif !important;
        font-weight: 500 !important;
        font-style: normal !important;
        font-size: 13.89px !important;
        line-height: 20.83px !important;
        text-align: center !important;
        letter-spacing: 0% !important;
    }

    /* Compare Plans Section - Text below button (period) for 1440px - Apply to ALL cards */
    /* Multiple selector variations to ensure all period texts get styled */
    .klinikplus-compare-section .klinikplus-compare-right > .klinikplus-compare-card > .klinikplus-compare-card-period,
    .klinikplus-compare-section .klinikplus-compare-right > .klinikplus-compare-card > div.klinikplus-compare-card-period,
    .klinikplus-compare-section .klinikplus-compare-right .klinikplus-compare-card .klinikplus-compare-card-period,
    .klinikplus-compare-section .klinikplus-compare-right .klinikplus-compare-card div.klinikplus-compare-card-period,
    .klinikplus-compare-right > .klinikplus-compare-card > .klinikplus-compare-card-period,
    .klinikplus-compare-right > .klinikplus-compare-card > div.klinikplus-compare-card-period,
    .klinikplus-compare-right .klinikplus-compare-card .klinikplus-compare-card-period,
    .klinikplus-compare-right .klinikplus-compare-card div.klinikplus-compare-card-period,
    .klinikplus-compare-card > .klinikplus-compare-card-period,
    .klinikplus-compare-card > div.klinikplus-compare-card-period,
    .klinikplus-compare-card .klinikplus-compare-card-period,
    .klinikplus-compare-card div.klinikplus-compare-card-period,
    div.klinikplus-compare-card-period,
    .klinikplus-compare-card-period {
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-style: normal !important;
        font-size: 13.89px !important;
        line-height: 20.83px !important;
        letter-spacing: 0% !important;
    }

    /* Compare Plans Section - Feature text (icons next to text) for 1440px */
    .klinikplus-card-features .klinikplus-feature-item .klinikplus-feature-text,
    .klinikplus-feature-item .klinikplus-feature-text,
    .klinikplus-feature-text {
        font-family: 'Inter', sans-serif !important;
        font-weight: 400 !important;
        font-style: normal !important;
        font-size: 13.89px !important;
        line-height: 20.83px !important;
        letter-spacing: 0% !important;
    }

    /* Compare Plans Section - Show cards in one row for 1440px */
    .klinikplus-compare-section .klinikplus-compare-right,
    .klinikplus-compare-right {
        display: flex !important;
        flex-direction: row !important;
        gap: 2rem !important;
        justify-content: flex-end !important;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
        width: auto !important;
    }

    /* CRITICAL OVERRIDE: Force styles on ALL compare buttons for 1440px - using nth-child to target each card */
    .klinikplus-compare-right .klinikplus-compare-card:nth-child(1) .klinikplus-compare-subscribe-btn,
    .klinikplus-compare-right .klinikplus-compare-card:nth-child(2) .klinikplus-compare-subscribe-btn,
    .klinikplus-compare-right .klinikplus-compare-card:nth-child(3) .klinikplus-compare-subscribe-btn,
    .klinikplus-compare-right .klinikplus-compare-card:nth-child(n) .klinikplus-compare-subscribe-btn,
    button.klinikplus-compare-subscribe-btn.rounded-full,
    .klinikplus-compare-right button.klinikplus-compare-subscribe-btn,
    .klinikplus-compare-section .klinikplus-compare-right button,
    .klinikplus-compare-card button,
    .klinikplus-compare-card .klinikplus-compare-subscribe-btn {
        height: 34.720829010009766px !important;
        font-family: 'Outfit', sans-serif !important;
        font-weight: 500 !important;
        font-size: 13.89px !important;
        line-height: 20.83px !important;
        text-align: center !important;
        letter-spacing: 0% !important;
    }

    /* CRITICAL OVERRIDE: Force styles on ALL period text for 1440px - using nth-child to target each card */
    .klinikplus-compare-right .klinikplus-compare-card:nth-child(1) .klinikplus-compare-card-period,
    .klinikplus-compare-right .klinikplus-compare-card:nth-child(2) .klinikplus-compare-card-period,
    .klinikplus-compare-right .klinikplus-compare-card:nth-child(3) .klinikplus-compare-card-period,
    .klinikplus-compare-right .klinikplus-compare-card:nth-child(n) .klinikplus-compare-card-period,
    .klinikplus-compare-right div.klinikplus-compare-card-period,
    .klinikplus-compare-section .klinikplus-compare-right div.klinikplus-compare-card-period,
    .klinikplus-compare-card div.klinikplus-compare-card-period,
    .klinikplus-compare-card .klinikplus-compare-card-period {
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 13.89px !important;
        line-height: 20.83px !important;
        letter-spacing: 0% !important;
    }
}

@media (max-width: 1400px) {
    .klinikplus-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1200px) {
    .klinikplus-container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .klinikplus-container {
        padding: 0 0.75rem;
    }

    .how-it-works-section {
        padding: 0 0 20px;
    }

    .how-it-works-wrapper {
        padding: 20px 15px 20px;
        margin-bottom: 10px;
    }

    .how-it-works-content {
        padding: 0 10px 0 0;
    }

    .step-content-area {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .klinikplus-container {
        padding: 0 0.5rem;
    }

    .how-it-works-section {
        padding: 0 0 15px;
    }

    .how-it-works-wrapper {
        padding: 15px 10px 15px;
        margin-bottom: 5px;
    }

    .how-it-works-content {
        padding: 0 5px 0 0;
    }

    .step-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .step-description p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #150F02;
}

h1 {
    font-size: 4.5rem;
    line-height: 81.5px;
    font-weight: 700;
}

h2 {
    font-size: 48px !important;
    line-height: 72px !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
}

h3 {
    font-size: 36px;
    line-height: 50.5px;
    font-weight: 600;
}

h4 {
    font-size: 32px;
    line-height: 48px;
    font-weight: 500;
}

h5 {
    font-size: 28px;
    line-height: 42px;
    font-weight: 500;
}

h6 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
    color: #5B5B5B;
}

/* Links */
a {
    color: #FF8E6C;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff7a53;
}

/* Navigation Styles */
.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #007bff !important;
}

.navbar-nav .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

.navbar-nav .nav-link.active {
    color: #007bff !important;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
}

.hero-section h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 4.5rem;
    color: #150F02;
    margin-bottom: 1.5rem;
    width: max-content;
}

/* 1440px hero heading uses default 1920px styles */

.hero-section .lead {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #FF8E6C;
    border-color: #FF8E6C;
}

.btn-primary:hover {
    background-color: #ff7a53;
    border-color: #ff7a53;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: #FF8E6C;
    border-color: #FF8E6C;
}

.btn-outline-primary:hover {
    background-color: #FF8E6C;
    border-color: #FF8E6C;
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

/* Footer Styles */
footer {
    background-color: #343a40 !important;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

footer h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

footer p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

footer .text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

footer .text-white-50:hover {
    color: #ffffff !important;
}

/* Cards */
.card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.card-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

/* Form Styles */
.form-control {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 3rem;
    text-align: center;
}

/* Medical Theme Colors */
.medical-primary {
    color: #FF8E6C;
}

.medical-secondary {
    color: #28a745;
}

.medical-accent {
    color: #17a2b8;
}

/* KlinikPlus Brand Colors */
:root {
    --primary-color: #FF8E6C;
    --heading-color: #150F02;
    --text-color: #5B5B5B;
    --primary-hover: #ff7a53;
    --light-bg: #F9F9F9;
    --white: #FFFFFF;
    --dark: #150F02;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 48px;
        line-height: 56px;
    }

    h2 {
        font-size: 48px !important;
        line-height: 72px !important;
        font-weight: 600 !important;
        font-family: 'Outfit', sans-serif !important;
    }

    h3 {
        font-size: 28px;
        line-height: 38px;
    }

    h4 {
        font-size: 24px;
        line-height: 36px;
    }

    h5 {
        font-size: 20px;
        line-height: 30px;
    }

    h6 {
        font-size: 18px;
        line-height: 28px;
    }

    .hero-section h1 {
        font-size: 48px;
        line-height: 56px;
    }

    .hero-section .lead {
        font-size: 1.125rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .section-title {
        font-size: 36px;
        line-height: 48px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 36px;
        line-height: 46px;
    }

    h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
        font-family: 'Outfit', sans-serif !important;
    }

    h3 {
        font-size: 24px;
        line-height: 34px;
    }

    h4 {
        font-size: 20px;
        line-height: 30px;
    }

    h5 {
        font-size: 18px;
        line-height: 28px;
    }

    h6 {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-section h1 {
        font-size: 36px;
        line-height: 46px;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 30px;
        line-height: 40px;
    }

    /* Stats cards responsive adjustments for very small screens */
    .stats-card {
        height: 24rem;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .stats-number {
        font-size: 3.8rem;
        line-height: 4.5rem;
        font-weight: 600;
        letter-spacing: -0.12606rem;
    }

    .stats-text {
        font-size: 1.1rem;
        line-height: 1.8rem;
        font-weight: 500;
    }

    .stats-card-orange .stats-card-image img {
        height: 12rem;
        width: auto;
        object-fit: contain;
        object-position: bottom right;
    }

    .stats-card-black .stats-card-image img {
        height: 13rem;
        width: auto;
        object-fit: contain;
        object-position: bottom center;
    }

    .stats-card-yellow .stats-card-image img {
        height: 12.5rem;
        width: auto;
        object-fit: contain;
        object-position: bottom center;
    }
}

/* Submit Request Modal Styles */
.klinikplus-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.klinikplus-modal-container {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

/* Custom Scrollbar for Modal */
.klinikplus-modal-container::-webkit-scrollbar {
    width: 6px;
}

.klinikplus-modal-container::-webkit-scrollbar-track {
    background: transparent;
    margin: 10px 0;
}

.klinikplus-modal-container::-webkit-scrollbar-thumb {
    background: #FF8E6C;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.klinikplus-modal-container::-webkit-scrollbar-thumb:hover {
    background: #e67c59;
}

/* Firefox scrollbar */
.klinikplus-modal-container {
    scrollbar-width: thin;
    scrollbar-color: #FF8E6C transparent;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.klinikplus-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #E0DFDF;
}

.klinikplus-modal-header h3 {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.klinikplus-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.klinikplus-modal-close:hover {
    background-color: #f5f5f5;
    color: #333;
}

.klinikplus-modal-body {
    padding: 30px;
}

.klinikplus-request-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #E0DFDF;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF8E6C;
    box-shadow: 0 0 0 3px rgba(255, 142, 108, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #150F02;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E0DFDF;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #FF8E6C;
    border-color: #FF8E6C;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E0DFDF;
}

.klinikplus-modal-cancel {
    padding: 12px 24px;
    border: 1px solid #E0DFDF;
    background: white;
    color: #666;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.klinikplus-modal-cancel:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.klinikplus-modal-submit {
    padding: 12px 24px;
    border: none;
    background: #FF8E6C;
    color: white;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.klinikplus-modal-submit:hover {
    background: #e67c59;
    transform: translateY(-2px);
}

/* Mobile Responsive Styles for Modal */
@media (max-width: 768px) {
    .klinikplus-modal-overlay {
        padding: 10px;
    }

    .klinikplus-modal-container {
        max-height: 95vh;
    }

    .klinikplus-modal-header {
        padding: 20px 20px 15px;
    }

    .klinikplus-modal-header h3 {
        font-size: 1.3rem;
    }

    .klinikplus-modal-body {
        padding: 20px;
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .klinikplus-modal-cancel,
    .klinikplus-modal-submit {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .klinikplus-modal-overlay {
        padding: 5px;
    }

    .klinikplus-modal-header {
        padding: 15px 15px 10px;
    }

    .klinikplus-modal-header h3 {
        font-size: 1.2rem;
    }

    .klinikplus-modal-body {
        padding: 15px;
    }

    .klinikplus-request-form {
        gap: 15px;
    }
}

/* Utilities */
.text-primary {
    color: #FF8E6C !important;
}

.bg-primary {
    background-color: #FF8E6C !important;
}

.text-heading {
    color: #150F02 !important;
}

.text-body {
    color: #5B5B5B !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Advanced Animations inspired by modern web design */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInStagger {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base animation classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
}

/* Specific animation variants */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations for multiple elements */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes for staggered effects */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* Enhanced hover effects inspired by Payoneer */
.pricing-card-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-card-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Button pulse animation for CTAs */
.btn-animate {
    position: relative;
    overflow: hidden;
}

.btn-animate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn-animate:hover::before {
    width: 300px;
    height: 300px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading states for better UX */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Enhanced focus states for accessibility */
.klinikplus-customize-btn:focus,
.next-btn:focus,
.option-select-btn:focus {
    outline: 2px solid #FF8E6C;
    outline-offset: 2px;
}

/* Legacy support */
.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading */
.loading {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

/* Hover Effects */
.hover-lift:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

/* Text Utilities */
.text-outfit {
    font-family: 'Outfit', sans-serif;
}

.fw-thin {
    font-weight: 100;
}

.fw-extralight {
    font-weight: 200;
}

.fw-light {
    font-weight: 300;
}

.fw-regular {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-extrabold {
    font-weight: 800;
}

.fw-black {
    font-weight: 900;
}

/* ============================
   Navigation Styles
   ============================
*/

/* Main Navigation Container */
.klinikplus-navbar {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.klinikplus-navbar.klinikplus-navbar-sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hide dotted background in sticky navigation */
.klinikplus-navbar.klinikplus-navbar-sticky .klinikplus-bg-dots {
    display: none !important;
}

.klinikplus-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 140px;
    height: 62px;
    max-width: 1920px;
    margin: 0 auto;
    overflow: visible;
}

/* Logo Section */
.klinikplus-logo-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
}

.klinikplus-bg-dots {
    position: absolute;
    left: -200px;
    top: -20px;
    width: 889px;
    height: 428px;
    z-index: 1;
    opacity: 0.8;
    display: block !important;
    pointer-events: none;
    background-image: url('/klinikplus/images/header/bg_dots.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center center;
}

.klinikplus-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.klinikplus-logo {
    height: 27px;
    width: auto;
}

/* Desktop Navigation Links */
.klinikplus-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.klinikplus-nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.klinikplus-nav-link {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.klinikplus-nav-link:hover {
    color: #FF8E6C;
    font-weight: 600;
}

.klinikplus-nav-link.active {
    color: #FF8E6C;
    font-weight: 600;
}

.klinikplus-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 0.3rem;
    background: #FF8E6C;
    border-radius: 6.25rem;
}

.klinikplus-dropdown-icon {
    color: #150F02;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.klinikplus-nav-dropdown:hover .klinikplus-dropdown-icon {
    transform: rotate(180deg);
}

/* ============================
   Services Dropdown Modal Styles - Sidebar Layout
   ============================
*/

/* Services Dropdown Container */
.klinikplus-services-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 200%;
    transform: translateX(-50%);
    width: 1100px;
    max-width: 90vw;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.klinikplus-services-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: none;
    border-right: none;
    transform: translateX(-50%) rotate(45deg);
    z-index: 1001;
}

.klinikplus-services-dropdown-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Services Container - Flexbox Layout */
.klinikplus-services-container {
    display: flex;
    height: 580px;
    overflow: hidden;
}

/* Left Sidebar */
.klinikplus-services-sidebar {
    width: 280px;
    background: #f8f9fa;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    overflow-y: auto;
}

/* Sidebar Header */
.klinikplus-sidebar-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: white;
}

.klinikplus-sidebar-header span {
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Service Items */
.klinikplus-main-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.klinikplus-main-service-item i {
    color: #666;
    font-size: 1rem;
    width: 20px;
    transition: color 0.3s ease;
}

.klinikplus-main-service-item span {
    color: #333;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.klinikplus-main-service-item:hover,
.klinikplus-main-service-item.active {
    background: white;
    border-left-color: #FF8E6C;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.klinikplus-main-service-item:hover i,
.klinikplus-main-service-item.active i {
    color: #FF8E6C;
}

.klinikplus-main-service-item:hover span,
.klinikplus-main-service-item.active span {
    color: #FF8E6C;
    font-weight: 600;
}

/* Right Content Area */
.klinikplus-services-content {
    flex: 1;
    background: white;
    overflow-y: auto;
    position: relative;
}

/* Content Panels */
.klinikplus-service-content-panel {
    display: none;
    padding: 32px 40px;
    height: 100%;
    box-sizing: border-box;
}

.klinikplus-service-content-panel.active {
    display: block;
}

/* Content Header */
.klinikplus-content-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.klinikplus-content-header h3 {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Sub Services */
.klinikplus-sub-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sub Service Items */
.klinikplus-sub-service-item {
    display: block;
    padding: 20px 24px;
    background: rgba(255, 142, 108, 0.02);
    border: 1px solid rgba(255, 142, 108, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.klinikplus-sub-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #FF8E6C;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.klinikplus-sub-service-item:hover {
    background: rgba(255, 142, 108, 0.06);
    border-color: rgba(255, 142, 108, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 142, 108, 0.15);
}

.klinikplus-sub-service-item:hover::before {
    transform: scaleY(1);
}

.klinikplus-sub-service-item h4 {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.klinikplus-sub-service-item p {
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.klinikplus-sub-service-item:hover h4 {
    color: #FF8E6C;
}

.klinikplus-sub-service-item:hover p {
    color: #555;
}

/* Right Section */
.klinikplus-nav-right {
    display: flex;
    align-items: center;
    gap: 4.375rem; /* 70px gap as requested */
}

/* Phone Section */
.klinikplus-phone-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.klinikplus-phone-icon {
    height: 22px;
    width: auto;
}

.klinikplus-phone-number {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* Submit Request Button */
.klinikplus-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 14.5rem;
    height: 54px;
    border-radius: 2.5rem;
    border: 1.333px solid #FF8E6C;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.klinikplus-submit-btn:hover {
    background: #FF8E6C;
    transform: translateY(-2px);
}

.klinikplus-submit-btn:hover .klinikplus-btn-text {
    color: white;
}

.klinikplus-btn-text {
    color: #1A1A1A;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    transition: color 0.3s ease;
}

.klinikplus-btn-arrow {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.klinikplus-submit-btn:hover .klinikplus-btn-arrow {
    transform: translateX(4px);
    filter: brightness(0) invert(1);
}

/* Language Selector */
.klinikplus-language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.klinikplus-lang-active {
    color: var(--Title_Main, #222);
    font-family: 'Outfit', sans-serif;
    font-size: 1.16669rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
}

.klinikplus-lang-divider {
    width: 0.08331rem;
    height: 1.25rem;
    background: #5B5B5B;
}

.klinikplus-lang-inactive {
    color: #AFAFAF;
    font-family: 'Outfit', sans-serif;
    font-size: 1.16669rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    transition: color 0.3s ease;
}

.klinikplus-lang-inactive:hover {
    color: #FF8E6C;
}

/* Mobile Menu Toggle */
.klinikplus-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.klinikplus-hamburger-line {
    width: 25px;
    height: 3px;
    background: #150F02;
    transition: all 0.3s ease;
}

.klinikplus-mobile-toggle-open .klinikplus-hamburger-line:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.klinikplus-mobile-toggle-open .klinikplus-hamburger-line:nth-child(2) {
    opacity: 0;
}

.klinikplus-mobile-toggle-open .klinikplus-hamburger-line:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.klinikplus-mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.klinikplus-mobile-menu-open {
    display: block;
}

/* Prevent background scrolling when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.klinikplus-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.klinikplus-mobile-link {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.klinikplus-mobile-link:hover,
.klinikplus-mobile-link.active {
    color: #FF8E6C;
    font-weight: 600;
}

.klinikplus-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.klinikplus-mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.klinikplus-mobile-submit {
    width: 100%;
    max-width: 280px;
}

/* ============================
   Mobile Services Submenu Styles
   ============================
*/

.klinikplus-mobile-services {
    position: relative;
}

.klinikplus-mobile-services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.klinikplus-mobile-services-toggle i {
    font-size: 0.75rem;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
}

.klinikplus-mobile-services-toggle:hover i,
.klinikplus-mobile-services-toggle.active i {
    color: #FF8E6C;
}

.klinikplus-mobile-services-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 142, 108, 0.03) 0%, rgba(255, 142, 108, 0.08) 100%);
    border-radius: 12px;
    margin-top: 12px;
    border: 1px solid rgba(255, 142, 108, 0.1);
}

.klinikplus-mobile-services-submenu-open {
    max-height: 800px;
    padding: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.klinikplus-mobile-sublink {
    display: block;
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    padding: 12px 16px;
    margin-bottom: 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background: white;
    border: 1px solid rgba(255, 142, 108, 0.06);
}

.klinikplus-mobile-sublink:hover {
    color: white;
    background: linear-gradient(135deg, #FF8E6C 0%, #ff7a53 100%);
    transform: translateX(4px);
    border-color: transparent;
    border-left: 3px solid white;
}

.klinikplus-mobile-sublink:last-child {
    margin-bottom: 0;
}

/* Mobile Category Headers */
.klinikplus-mobile-category {
    display: block;
    color: #FF8E6C;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 16px 8px;
    margin: 8px 0 4px;
    border-bottom: 1px solid rgba(255, 142, 108, 0.2);
    background: linear-gradient(135deg, rgba(255, 142, 108, 0.05) 0%, rgba(255, 142, 108, 0.02) 100%);
    border-radius: 6px;
}

.klinikplus-mobile-category:first-child {
    margin-top: 0;
}

/* ============================
   Navigation Responsive Design
   ============================
*/

/* Navigation Responsive Styles */
@media (max-width: 1400px) {
    .klinikplus-nav-container {
        padding: 0 60px;
    }

    .klinikplus-nav-links {
        gap: 1.5rem;
    }

    .klinikplus-nav-link {
        font-size: 0.875rem; /* 14px */
    }

    .klinikplus-nav-right {
        gap: 2.5rem;
    }

    .klinikplus-phone-number {
        font-size: 0.875rem; /* 14px */
    }

    .klinikplus-submit-btn {
        width: 11rem;
        height: 54px;
        padding: 0.75rem 1.5rem;
    }

    .klinikplus-btn-text {
        font-size: 0.875rem; /* 14px */
    }

    .klinikplus-lang-active,
    .klinikplus-lang-inactive {
        font-size: 0.875rem; /* 14px */
    }
}

@media (max-width: 1200px) {
    .klinikplus-nav-container {
        padding: 0 60px;
    }
}

@media (max-width: 1024px) {
    .klinikplus-nav-container {
        padding: 0 20px !important;
    }

    .klinikplus-nav-links {
        gap: 1.5rem;
    }

    .klinikplus-nav-right {
        gap: 0.5rem;
    }

    .klinikplus-submit-btn {
        width: 9rem;
        height: 54px;
    }

    .klinikplus-btn-text {
        font-size: 0.7rem;
    }
    .klinikplus-submit-btn {
        gap: 5px !important;
    }
    .klinikplus-logo {
        height: 20px;
    }
    .klinikplus-nav-links {
        gap: .5rem;
    }
    .klinikplus-btn-arrow{
        width: 20px;
        height: 20px;

    }
    .klinikplus-nav-link {
        font-size: 0.875rem; /* 14px */
    }

    .klinikplus-phone-number {
        font-size: 0.875rem; /* 14px */
    }

    .klinikplus-lang-active,
    .klinikplus-lang-inactive {
        font-size: 0.875rem; /* 14px */
    }
}

@media (max-width: 992px) {
    .klinikplus-nav-container {
        padding: 0 40px;
    }

    .klinikplus-nav-links {
        display: none;
    }

    .klinikplus-nav-right {
        display: none;
    }

    .klinikplus-mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .klinikplus-nav-container {
        padding: 0 20px;
        height: 62px;
    }

    .klinikplus-logo {
        height: 24px;
    }

    .klinikplus-bg-dots {
        height: 60px;
        left: -30px;
        width: 120px;
        top: 5px;
        z-index: 1;
        opacity: 0.8;
        display: block !important;
        position: absolute;
        pointer-events: none;
        background-image: url('/klinikplus/images/header/bg_dots.png');
        background-size: auto;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .klinikplus-mobile-menu {
        padding: 1.5rem;
    }

    body {
        padding-top: 62px;
    }
}

@media (max-width: 480px) {
    .klinikplus-nav-container {
        padding: 0 15px;
        height: 62px;
    }

    .klinikplus-logo {
        height: 24px;
    }

    .klinikplus-bg-dots {
        height: 50px;
        left: -25px;
        width: 90px;
        top: 5px;
        z-index: 1;
        opacity: 0.8;
        display: block !important;
        position: absolute;
        pointer-events: none;
        background-image: url('/klinikplus/images/header/bg_dots.png');
        background-size: auto;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .klinikplus-mobile-menu {
        padding: 1rem;
    }

    .klinikplus-mobile-submit {
        height: 3.5rem;
        font-size: 1rem;
    }

    body {
        padding-top: 60px;
    }
}

/* ============================
   Pricing Page Styles
   ============================
*/

/* Pricing Title */
.klinikplus-pricing-title {
    color: var(--Secondary, #150F02);
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 1.5rem;
}

/* Pricing Subtitle */
.klinikplus-pricing-subtitle {
    color: var(--Accent, #373737);
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2rem;
}

/* Toggle Switch Text */
.klinikplus-toggle-text {
    color: #6C6E79;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}

/* Toggle Switch */
.klinikplus-toggle-switch {
    position: relative;
    display: inline-block;
}

.klinikplus-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.klinikplus-toggle-label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    background-color: #ccc;
    border-radius: 34px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.klinikplus-toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 26px;
    height: 26px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.klinikplus-toggle-input:checked + .klinikplus-toggle-label {
    background-color: #FF8E6C;
}

.klinikplus-toggle-input:checked + .klinikplus-toggle-label .klinikplus-toggle-slider {
    transform: translateX(26px);
}

/* Additional toggle styles for pricing page */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.toggle-label {
    color: #666;
    font-family: Outfit;
    font-size: 1.125rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: #FF8E6C;
}

/* Pricing Cards */
.klinikplus-pricing-card {
    height: 39.78431rem;
    border-radius: 1.15738rem;
    background: #FFF;
    box-shadow: 5.787px 5.787px 28.934px 0px rgba(137, 141, 154, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 1rem;
}

.klinikplus-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 5.787px 10.787px 35.934px 0px rgba(137, 141, 154, 0.40);
}

/* Most Popular Badge Positioning */
.klinikplus-pricing-card .absolute {
    top: -1rem;
    z-index: 10;
}

/* Pricing Card Elements */
.klinikplus-card-plan-name {
    color: #191B23;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    text-align: left;
    margin-bottom: 1.5rem;
}

.klinikplus-card-price {
    color: var(--Secondary, #150F02);
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    margin-bottom: 0.5rem;
}

.klinikplus-card-period {
    color: #191B23;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15738rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.15738rem;
    text-align: left;
    margin-bottom: 2rem;
}

.klinikplus-subscribe-btn {
    width: 20.59088rem;
    height: 2.89338rem;
    justify-content: center;
    align-items: center;
    border-radius: 6.25rem;
    background: var(--Primary-2, #FF8E6C);
    border: none;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0 2rem 0;
    display: flex;
}

.klinikplus-subscribe-btn:hover {
    background: #e67c59;
    transform: translateY(-2px);
}

.klinikplus-card-description {
    color: #191B23;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15738rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.73606rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.klinikplus-card-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.klinikplus-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.klinikplus-feature-icon {
    color: #FF8E6C;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.klinikplus-feature-text {
    color: #191B23;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15738rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.73606rem;
    flex-grow: 1;
}

.klinikplus-card-section-title {
    color: #191B23;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15738rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.73606rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.klinikplus-card-section-description {
    color: #191B23;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15738rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.73606rem;
    margin-bottom: 1rem;
}

/* Customize Package Button */
.klinikplus-customize-btn {
    width: 25.55169rem;
    height: 4.33331rem;
    border-radius: 2.5rem;
    border: 1.333px solid var(--Primary-2, #FF8E6C);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    text-decoration: none;
}

.klinikplus-customize-btn:hover {
    background: var(--Primary-2, #FF8E6C);
    transform: translateY(-2px);
}

.klinikplus-customize-btn:hover .klinikplus-customize-btn-text {
    color: white;
}

.klinikplus-customize-btn-text {
    color: #1A1A1A;
    font-family: 'Outfit', sans-serif;
    font-size: 1.16669rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    transition: color 0.3s ease;
}

.klinikplus-customize-btn-arrow {
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease;
}

.klinikplus-customize-btn:hover .klinikplus-customize-btn-arrow {
    transform: translateX(4px);
    filter: brightness(0) invert(1);
}

/* ============================
   Custom Package Builder
   ============================
*/
.custom-package-title {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 1rem;
}

.custom-package-subtitle {
    color: #373737;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    max-width: 600px;
    margin: 0 auto;
}

.service-section-title {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.58575rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Unified Services Container */
.custom-package-services-unified {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10; /* Ensure it's above decorative background */
}

/* Responsive padding for unified container */
@media (max-width: 768px) {
    .custom-package-services-unified {
        padding: 1.5rem;
    }

    .service-header-unified:hover {
        margin: 0 -1.5rem;
        padding: 1.5rem;
    }
}

.service-section-title-unified {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.58575rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.services-container-unified {
    /* Container for all services with unified background */
}

.service-accordion-item-unified {
    /* No individual background, border, or shadow */
    overflow: hidden;
}

.service-divider {
    height: 1px;
    background: #E5E5E5;
    margin: 1.5rem 0;
}

.service-accordion-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.service-header:hover {
    background-color: #f8f9fa;
}

/* Unified Service Header */
.service-header-unified {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.service-header-unified:hover {
    background-color: rgba(255, 142, 108, 0.05);
    margin: 0 -2rem;
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.service-title {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.58575rem;
}

.service-expand-text {
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    margin-left: auto;
    margin-right: 1rem;
}

.service-chevron {
    color: #666;
    transition: transform 0.3s ease;
}

.service-chevron.rotated {
    transform: rotate(180deg);
}

.service-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: block;
}

.service-content.hidden {
    display: none;
}

/* Unified Service Content */
.service-accordion-item-unified .service-content {
    padding: 1rem 0 1.5rem 0;
    display: block;
}

.service-accordion-item-unified .service-content.hidden {
    display: none;
}

.service-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: #FF8E6C;
    background-color: #fef7f5;
}

.option-info {
    flex: 1;
}

.option-title {
    color: #373737;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.58575rem;
}

.option-price {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-right: 1rem;
}

.option-select-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #FF8E6C;
    background: transparent;
    color: #FF8E6C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-select-btn:hover {
    background: #FF8E6C;
    color: white;
}

.option-select-btn.selected {
    background: #FF8E6C;
    color: white;
}

.selected-packages-sidebar {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
    z-index: 10; /* Ensure it's above decorative background */
}

.selected-packages-title {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.58575rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.selected-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.selected-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.selected-item-header {
    margin-bottom: 1rem;
}

.selected-service-name {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.58575rem;
}

.selected-item-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.selected-option-name {
    color: #373737;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.selected-option-price {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.selected-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
    font-family: 'Outfit', sans-serif;
}

.selected-total-label {
    color: #373737;
    font-size: 1rem;
    font-weight: 500;
}

.selected-total-value {
    color: #150F02;
    font-size: 1.125rem;
    font-weight: 700;
}

.next-btn {
    width: 100%;
    height: 3.5rem;
    background: #FF8E6C;
    border: none;
    border-radius: 9999px; /* Full radius */
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem 0 1.5rem 0;
}

.next-btn:hover {
    background: #ff7a53;
    transform: translateY(-2px);
}

.next-btn .klinikplus-btn-arrow {
    filter: brightness(0) invert(1); /* Make arrow white */
}

.help-section {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.help-text {
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.help-link {
    color: #FF8E6C;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: #ff7a53;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .custom-package-title {
        font-size: 2.5rem;
    }

    .custom-package-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .custom-package-title {
        font-size: 2rem;
    }

    .custom-package-subtitle {
        font-size: 1.125rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .service-expand-text {
        margin: 0;
    }

    .service-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .option-price {
        margin-right: 0;
    }

    .selected-packages-sidebar {
        margin-top: 2rem;
        position: relative;
        top: auto;
    }
}

/* ============================
   Compare Plans Section
   ============================
*/

/* Compare Plans Section */
.klinikplus-compare-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) and (max-width: 767px) {
    .klinikplus-compare-section {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .klinikplus-compare-section {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .klinikplus-compare-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0;
    }
}

.klinikplus-compare-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .klinikplus-compare-left {
        align-items: flex-start;
    }
}

.klinikplus-compare-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 640px) {
    .klinikplus-compare-right {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .klinikplus-compare-right {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
        max-width: 100%;
        overflow-x: visible;
    }
}

@media (min-width: 1024px) {
    .klinikplus-compare-right {
        gap: 2rem;
        justify-content: flex-end;
        width: auto;
        flex-wrap: nowrap;
    }
}

.klinikplus-compare-title {
    color: var(--Secondary, #150F02);
    font-family: 'Outfit', sans-serif;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .klinikplus-compare-title {
        font-size: 2.25rem;
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .klinikplus-compare-title {
        font-size: 2.5rem;
        text-align: left;
    }
}

.klinikplus-compare-toggle-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .klinikplus-compare-toggle-section {
        justify-content: flex-start;
    }
}

/* Compare Plans Cards */
.klinikplus-compare-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
    width: 100%;
    max-width: 200px;
    margin: 0;
    padding: 0 0.5rem;
}

@media (min-width: 640px) and (max-width: 767px) {
    .klinikplus-compare-card {
        flex: 1;
        max-width: 160px;
        min-width: 140px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .klinikplus-compare-card {
        flex: 1;
        max-width: 180px;
        min-width: 160px;
        margin: 0 0.5rem;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .klinikplus-compare-card {
        align-items: flex-start;
        text-align: left;
        min-width: 200px;
        margin-right: 56px;
        padding: 0;
        flex: none;
    }

    .klinikplus-compare-card:last-child {
        margin-right: 0;
    }
}

.klinikplus-compare-card-plan {
    color: #191B23;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .klinikplus-compare-card-plan {
        font-size: 1.375rem;
    }
}

@media (min-width: 1024px) {
    .klinikplus-compare-card-plan {
        font-size: 1.5rem;
    }
}

.klinikplus-compare-card-price {
    color: var(--Secondary, #150F02);
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .klinikplus-compare-card-price {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .klinikplus-compare-card-price {
        font-size: 2.5rem;
    }
}

.klinikplus-compare-card-period {
    color: #191B23;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .klinikplus-compare-card-period {
        font-size: 1.075rem;
        line-height: 1.075rem;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .klinikplus-compare-card-period {
        font-size: 1.15738rem;
        line-height: 1.15738rem;
    }
}

.klinikplus-compare-subscribe-btn {
    width: 10rem;
    height: 2.5rem;
    border-radius: 6.25rem;
    background: var(--Primary-2, #FF8E6C);
    border: none;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .klinikplus-compare-subscribe-btn {
        width: 11rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .klinikplus-compare-subscribe-btn {
        width: 12rem;
        font-size: 1rem;
    }
}

.klinikplus-compare-subscribe-btn:hover {
    background: #e67c59;
    transform: translateY(-2px);
}

/* Table Header Colors */
.klinikplus-table-basic {
    background: #FF8E6C !important;
}

.klinikplus-table-gold {
    background: #FFAA09 !important;
}

.klinikplus-table-platinum {
    background: #4D5E80 !important;
}

/* Dropdown functionality */
.service-row {
    cursor: pointer;
    position: relative;
}

.service-row .dropdown-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background: #150F02;
    mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3e%3c/path%3e%3c/svg%3e") no-repeat center;
    mask-size: contain;
    transition: transform 0.3s ease;
    z-index: 10;
}

.service-row.expanded .dropdown-icon {
    transform: translateY(-50%) rotate(180deg);
}

.service-details {
    display: none;
    padding-top: 1rem;
    color: #373737;
    font-family: Outfit;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Hide service details in service column - only show service name */
.service-cell .service-details {
    display: none !important;
}

.service-row.expanded .service-cell .service-details {
    display: none !important;
}

/* Plan columns: Show details when expanded, hide main text */
.service-row.expanded .feature-cell .service-details {
    display: block;
}

.service-row.expanded .feature-cell .service-main {
    display: none;
}

.service-details div {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.service-details div:last-child {
    margin-bottom: 0;
}

.service-details div:before {
    content: '';
    width: 1rem;
    height: 1rem;
    background: #FF8E6C;
    mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'%3e%3c/path%3e%3c/svg%3e") no-repeat center;
    mask-size: contain;
    flex-shrink: 0;
}

.service-main {
    display: block;
}

.service-row.expanded .service-main {
    display: block;
}

/* Service column: Always show service name, never show details */
.service-cell .service-main {
    display: block !important;
}

.service-row.expanded .service-cell .service-main {
    display: block !important;
}

/* Table cell alignment */
.comparison-table td:not(:first-child) {
    text-align: left !important;
}

/* Override any text-center classes in table cells */
.comparison-table td.text-center {
    text-align: left !important;
}

/* Table styling */
.comparison-table-container {
    border-radius: 20px;
}

.comparison-table th.service-header {
    color: #150F02;
    font-family: Outfit;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.58575rem;
}

.comparison-table th.basic-header {
    color: #FFFFFF;
    background: #FF8E6C;
}

.comparison-table th.gold-header {
    color: #FFFFFF;
    background: #FFAA09;
}

.comparison-table th.platinum-header {
    color: #FFFFFF;
    background: #4D5E80;
}

.comparison-table td.service-cell {
    color: #150F02;
    font-family: Outfit;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.58575rem;
    position: relative;
}

.comparison-table td.feature-cell {
    color: #373737;
    font-family: Outfit;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.58575rem;
    text-align: left !important;
}

.comparison-table td.feature-cell .service-main,
.comparison-table td.feature-cell .service-details {
    text-align: left !important;
}

.comparison-table td.feature-cell .service-details div {
    text-align: left !important;
}

/* Fix overflow issues for dropdown content */
.comparison-table {
    overflow: visible !important;
}

.comparison-table .overflow-x-auto {
    overflow: visible !important;
}

.service-row {
    position: relative;
    overflow: visible !important;
}

/* CTA Section */
.pricing-cta-section {
    background: url('/klinikplus/images/pricing_page/cta_bg.png') center/cover no-repeat;
    padding: 4rem 2rem;
    border-radius: 1.5rem;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.pricing-cta-content {
    position: relative;
    z-index: 2;
}

.pricing-cta-title {
    color: var(--White, #FFF);
    leading-trim: both;
    text-edge: cap;
    font-family: Outfit;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.16669rem;
    margin-bottom: 1.5rem;
}

.pricing-cta-description {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Outfit;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 2.08331rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta-btn {
    width: 174px;
    height: 3rem;
    background: #FF8E6C;
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-family: Outfit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.pricing-cta-btn:hover {
    background: #FF7A5C;
    transform: translateY(-2px);
}

.pricing-cta-btn:hover svg path {
    stroke: white;
}

.pricing-cta-btn svg {
    width: 1rem;
    height: 1rem;
    transition: all 0.3s ease;
}

/* Responsive Compare Plans */
@media (max-width: 639px) {
    .klinikplus-compare-section {
        padding: 0 1rem;
    }

    .klinikplus-compare-right {
        overflow-x: visible;
    }

    .klinikplus-compare-card {
        min-width: 120px;
        margin-bottom: 1rem;
    }

    .klinikplus-compare-card:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .klinikplus-compare-section {
        text-align: center;
    }

    .klinikplus-compare-left {
        margin-bottom: 1rem;
    }

    .klinikplus-compare-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 1024px) {
    .klinikplus-compare-right {
        gap: 1.5rem;
    }

    .klinikplus-compare-card {
        min-width: 150px;
    }

    .klinikplus-compare-card-plan {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .klinikplus-compare-section {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .klinikplus-compare-left {
        align-items: center;
        text-align: center;
    }

    .klinikplus-compare-title {
        font-size: 2rem;
    }

    .klinikplus-compare-right {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .klinikplus-compare-card {
        min-width: 250px;
    }

    .klinikplus-compare-subscribe-btn {
        width: 10rem;
        height: 2.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .klinikplus-compare-title {
        font-size: 1.75rem;
    }

    .klinikplus-compare-card-price {
        font-size: 2rem;
    }

    .klinikplus-compare-card {
        min-width: 200px;
    }
}

/* ===== PACKAGE SUMMARY PAGE STYLES ===== */
.klinikplus-package-summary-page {
    min-height: 100vh;
    background: white; /* Changed from bluish gray gradient to white */
    padding: 2rem 0;
}

.package-summary-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.package-summary-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.package-summary-header h2 {
    color: #1e293b;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.selected-services-list {
    margin-bottom: 2rem;
}

.service-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.service-summary-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.service-summary-info h4 {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.service-summary-info p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

.service-summary-price {
    color: #ff6b35;
    font-size: 1.125rem;
    font-weight: 700;
}

.package-summary-total {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
}

.total-amount {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 700;
}

.package-summary-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-back, .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-back {
    background: white;
    color: #64748b;
    border-color: #e2e8f0;
}

.btn-back:hover {
    background: #f8fafc;
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
    color: white;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

/* ===== NEW PACKAGE SUMMARY STYLES ===== */
.package-summary-container-new {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    margin-top: 3rem; /* Add space between subtitle and card */
    position: relative;
    z-index: 10; /* Ensure it's above decorative background */
}

.package-summary-header-new {
    text-align: left; /* Left-aligned instead of center */
    margin-bottom: 2rem;
}

.package-summary-header-new h2 {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.selected-services-list-new {
    margin-bottom: 1.5rem;
}

.service-summary-item-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0; /* Removed background and border, using padding only */
    transition: all 0.3s ease;
}

.service-summary-item-new .service-summary-info h4 {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.service-summary-item-new .service-summary-info p {
    color: #666;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    margin: 0;
}

.service-summary-item-new .service-summary-price {
    color: #FF8E6C; /* Using primary color */
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}

.package-service-divider {
    height: 1px;
    background: #E5E5E5;
    margin: 0;
}

.package-summary-total-new {
    /* No background, just spacing */
}

.package-total-divider {
    height: 1px;
    background: #E5E5E5;
    margin-bottom: 1.5rem;
}

.total-row-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.total-row-new .total-label {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.total-row-new .total-amount {
    color: #FF8E6C; /* Using primary color */
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.package-summary-billing-toggle-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

/* Monthly | Toggle | Yearly - sath sath (no space-between) */
.package-summary-billing-toggle-wrap .total-row-new:first-child {
    width: auto;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.package-summary-year-discount-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.5rem 0;
}

.package-summary-year-discount-label {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.package-summary-year-discount-value {
    color: #FF8E6C;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.package-summary-toggle-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #373737;
}

.package-summary-actions-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem; /* Add spacing between card and buttons */
    position: relative;
    z-index: 10; /* Ensure it's above decorative background */
}

.btn-back-new, .btn-submit-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px; /* Full radius */
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-back-new {
    background: white;
    color: #666;
    border-color: #E5E5E5;
}

.btn-back-new:hover {
    background: #f8f9fa;
    color: #150F02;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn-submit-new {
    background: #FF8E6C; /* Using primary color */
    color: white;
}

.btn-submit-new:hover {
    background: #ff7a53;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 142, 108, 0.4);
    color: white;
    text-decoration: none;
}

.btn-arrow-right {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-arrow-left {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-back-new:hover .btn-arrow-left {
    transform: translateX(-2px);
}

.btn-submit-new:hover .btn-arrow-right {
    transform: translateX(2px);
}

.btn-submit-new .btn-arrow-right {
    filter: brightness(0) invert(1); /* Make arrow white */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .package-summary-container-new {
        padding: 1.5rem;
    }

    .package-summary-actions-new {
        flex-direction: column;
    }

    .btn-back-new, .btn-submit-new {
        width: 100%;
        justify-content: center;
    }
}

/* ===== CHECKOUT DETAILS PAGE STYLES ===== */
.klinikplus-checkout-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
}

/* ===== NEW CHECKOUT DETAILS PAGE STYLES ===== */
.klinikplus-checkout-page-new {
    min-height: 100vh;
    background: white; /* Clean white background */
    padding: 2rem 0;
    position: relative;
    overflow: hidden; /* Hide overflowing decorative elements */
}

/* Lines Background */
.checkout-lines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-image: url('../images/pricing_page/lines.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 50%; /* Make it smaller and more visible */
    opacity: 0.1; /* Corrected opacity to match other pages */
    z-index: 1;
    pointer-events: none; /* Ensure it doesn't interfere with interactions */
}

/* Decorative Background Element */
.checkout-decorative-bg {
    position: absolute;
    top: -20rem;
    right: -20rem;
    width: 76.94569rem;
    height: 76.94569rem;
    transform: rotate(60deg);
    flex-shrink: 0;
    border-radius: 76.94569rem;
    opacity: 0.1;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 2;
    pointer-events: none; /* Ensure it doesn't interfere with interactions */
}

/* Ensure header content is above decorative background */
.klinikplus-header-section {
    position: relative;
    z-index: 10;
}

/* ===== CUSTOM PACKAGE PAGE DECORATIVE ELEMENTS ===== */
.klinikplus-custom-package-page {
    position: relative;
    overflow: hidden;
}

.custom-package-lines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/pricing_page/lines.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 50%;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.custom-package-decorative-bg {
    position: absolute;
    top: -20rem;
    right: -20rem;
    width: 76.94569rem;
    height: 76.94569rem;
    transform: rotate(60deg);
    flex-shrink: 0;
    border-radius: 76.94569rem;
    opacity: 0.1;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 2;
    pointer-events: none;
}

/* ===== PACKAGE SUMMARY PAGE DECORATIVE ELEMENTS ===== */
.klinikplus-package-summary-page-decorated {
    position: relative;
    overflow: hidden;
}

.package-summary-lines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/pricing_page/lines.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 50%;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.package-summary-decorative-bg {
    position: absolute;
    top: -20rem;
    right: -20rem;
    width: 76.94569rem;
    height: 76.94569rem;
    transform: rotate(60deg);
    flex-shrink: 0;
    border-radius: 76.94569rem;
    opacity: 0.1;
    background: linear-gradient(180deg, #FF8E6C 0%, #FF8E6C 100%);
    filter: blur(133.33334350585938px);
    z-index: 2;
    pointer-events: none;
}

.checkout-form-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.checkout-form-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.checkout-form-header h2 {
    color: #1e293b;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: #fafafa;
}

.form-control::placeholder {
    color: #94a3b8;
}

select.form-control {
    cursor: pointer;
}

.btn-submit-request {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit-request:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-submit-request:hover .fas {
    filter: brightness(0) invert(1);
}

.order-summary-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 2rem;
}

.order-summary-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.order-summary-header h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.order-summary-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.order-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.order-item-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-item-icon {
    font-size: 1.125rem;
}

.order-item-text {
    color: #64748b;
    font-size: 0.875rem;
}

.order-item-price {
    color: #ff6b35;
    font-weight: 600;
}

.order-summary-total {
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.order-summary-total .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-summary-total .total-label {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
}

.order-summary-total .total-amount {
    color: #ff6b35;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .klinikplus-package-summary-page,
    .klinikplus-checkout-page {
        padding: 1rem 0;
    }

    .package-summary-container,
    .checkout-form-container,
    .order-summary-container {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .package-summary-actions {
        flex-direction: column;
    }

    .btn-back, .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .service-summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .service-summary-price {
        align-self: flex-end;
    }

    .order-summary-container {
        position: static;
        margin-top: 2rem;
    }

    .total-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .custom-package-title {
        font-size: 1.75rem;
    }

    .custom-package-subtitle {
        font-size: 0.875rem;
    }

    .package-summary-header h2,
    .checkout-form-header h2 {
        font-size: 1.5rem;
    }

    .service-summary-item {
        padding: 1rem;
    }

    .btn-back, .btn-submit {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-submit-request {
        padding: 0.875rem 1.5rem;
    }
}

/* ===== NEW CHECKOUT FORM STYLES ===== */
.checkout-form-container-new {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    margin-top: 3rem; /* Add space between subtitle and card */
}

.checkout-form-header-new {
    text-align: left;
    margin-bottom: 2rem;
}

.checkout-form-header-new h2 {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.checkout-form-new {
    /* Form container */
}

.form-section-new {
    margin-bottom: 2rem;
}

.form-section-new h3 {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-group-new {
    margin-bottom: 1rem;
}

.form-control-new {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    background: white;
    color: #150F02;
    transition: all 0.3s ease;
}

.form-control-new:focus {
    outline: none;
    border-color: #FF8E6C;
    box-shadow: 0 0 0 3px rgba(255, 142, 108, 0.1);
}

.form-control-new::placeholder {
    color: #666;
    font-family: 'Outfit', sans-serif;
}

select.form-control-new {
    cursor: pointer;
}

/* ===== NEW ORDER SUMMARY STYLES ===== */
.order-summary-container-new {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem; /* Match form container spacing */
    position: sticky;
    top: 2rem;
}

.order-summary-header-new {
    text-align: left;
    margin-bottom: 2rem;
}

.order-summary-header-new h3 {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.order-summary-items-new {
    margin-bottom: 1.5rem;
}

.order-item-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0; /* No background, just padding */
    transition: all 0.3s ease;
}

.order-item-new + .order-item-new {
    border-top: 1px solid #E5E5E5; /* Stroke divider between items */
}

.order-item-info-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-item-check {
    color: #FF8E6C; /* Primary color for checkmarks */
    font-size: 0.875rem;
}

.order-item-new .order-item-text {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
}

.order-item-new .order-item-price {
    color: #FF8E6C; /* Primary color for prices */
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.order-summary-total-new {
    /* No background, just spacing */
}

.checkout-total-divider {
    height: 1px;
    background: #E5E5E5;
    margin-bottom: 1.5rem;
}

.total-row-checkout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.total-row-checkout .total-label {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}

.total-row-checkout .total-amount {
    color: #FF8E6C; /* Primary color */
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ===== CHECKOUT SUBMIT BUTTON ===== */
.checkout-submit-section {
    display: flex;
    justify-content: center;
    margin-top: 2rem; /* Space between containers and button */
    position: relative;
    z-index: 10; /* Ensure it's above the decorative background */
}

.btn-submit-checkout {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #FF8E6C; /* Primary color */
    color: white;
    border: none;
    border-radius: 9999px; /* Full radius */
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-checkout:hover {
    background: #ff7a53;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 142, 108, 0.4);
    color: white;
}

.btn-arrow-right-checkout {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1); /* Make arrow white */
    transition: transform 0.3s ease;
}

.btn-submit-checkout:hover .btn-arrow-right-checkout {
    transform: translateX(2px);
}

/* ===== RESPONSIVE DESIGN FOR NEW CHECKOUT ===== */
@media (max-width: 768px) {
    .checkout-form-container-new,
    .order-summary-container-new {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .order-summary-container-new {
        position: static;
        margin-top: 2rem;
    }

    .checkout-submit-section {
        margin-top: 1.5rem;
    }

    .btn-submit-checkout {
        width: 100%;
        justify-content: center;
    }
}

/* ===== UNIFIED CHECKOUT CONTAINER STYLES ===== */
.checkout-unified-container {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    margin-top: 3rem; /* Add space between subtitle and container */
    position: relative;
    z-index: 10; /* Ensure it's above the decorative background */
}

/* Vertical Divider for Desktop */
.checkout-vertical-divider {
    width: 1px;
    background: #E5E5E5;
    height: 100%;
    min-height: 400px;
}

/* Horizontal Divider for Mobile */
.checkout-horizontal-divider {
    height: 1px;
    background: #E5E5E5;
    width: 100%;
    margin: 2rem 0;
}

/* ===== UNIFIED FORM STYLES ===== */
.checkout-form-section {
    padding-right: 1rem;
}

.checkout-form-header-unified {
    text-align: left;
    margin-bottom: 2rem;
}

.checkout-form-header-unified h2 {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.checkout-form-unified {
    /* Form container */
}

.form-section-unified {
    margin-bottom: 2rem;
}

.form-section-unified h3 {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-group-unified {
    margin-bottom: 1rem;
}

.form-control-unified {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    background: white;
    color: #150F02;
    transition: all 0.3s ease;
}

.form-control-unified:focus {
    outline: none;
    border-color: #FF8E6C;
    box-shadow: 0 0 0 3px rgba(255, 142, 108, 0.1);
}

.form-control-unified::placeholder {
    color: #666;
    font-family: 'Outfit', sans-serif;
}

select.form-control-unified {
    cursor: pointer;
}

/* International phone input (intl-tel-input) - match form style */
.form-group-unified .iti {
    width: 100%;
    display: block;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    background: white;
}
.form-group-unified .iti:hover {
    border-color: #d0d0d0;
}
.form-group-unified .iti input.iti__tel-input {
    border: none !important;
    padding: 0.875rem 1rem !important;
    font-size: 0.875rem !important;
    height: auto !important;
    font-family: 'Outfit', sans-serif;
}
.form-group-unified .iti .iti__country-container {
    padding: 0 0 0 0.75rem;
}
.form-group-unified .iti:focus-within {
    outline: none;
    border-color: #FF8E6C;
    box-shadow: 0 0 0 3px rgba(255, 142, 108, 0.1);
}

/* ===== UNIFIED ORDER SUMMARY STYLES ===== */
.order-summary-section {
    padding-left: 1rem;
}

.order-summary-header-unified {
    text-align: left;
    margin-bottom: 2rem;
}

.order-summary-header-unified h3 {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.order-summary-items-unified {
    margin-bottom: 1.5rem;
}

.order-item-unified {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0; /* No background, just padding */
    transition: all 0.3s ease;
}

.order-item-unified + .order-item-unified {
    border-top: 1px solid #E5E5E5; /* Stroke divider between items */
}

.order-item-info-unified {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-item-check-unified {
    color: #FF8E6C; /* Primary color for checkmarks */
    font-size: 0.875rem;
}

.order-item-text-unified {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
}

.order-item-price-unified {
    color: #FF8E6C; /* Primary color for prices */
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.order-summary-total-unified {
    /* No background, just spacing */
}

.checkout-total-divider-unified {
    height: 1px;
    background: #E5E5E5;
    margin-bottom: 1.5rem;
}

.total-row-unified {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.total-label-unified {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}

.total-amount-unified {
    color: #FF8E6C; /* Primary color */
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ===== RESPONSIVE DESIGN FOR UNIFIED CHECKOUT ===== */
@media (max-width: 991px) {
    .checkout-form-section {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .order-summary-section {
        padding-left: 0;
        padding-top: 2rem;
        border-top: 1px solid #E5E5E5;
    }

    .checkout-vertical-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .checkout-unified-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .checkout-submit-section {
        margin-top: 1.5rem;
    }

    .btn-submit-checkout {
        width: 100%;
        justify-content: center;
    }
}

/* ===== SUCCESS MODAL STYLES ===== */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.success-modal-container {
    background: white;
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: modalFadeIn 0.3s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50; /* Green background for success */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    animation: iconBounce 0.6s ease-out;
}

.success-icon i {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.success-title {
    color: #150F02;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Modal Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes iconBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Modal */
@media (max-width: 480px) {
    .success-modal-container {
        padding: 2rem 1.5rem;
        max-width: 320px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .success-icon i {
        font-size: 1.5rem;
    }

    .success-title {
        font-size: 1.25rem;
    }
}

/* ============================
   Section Spacing
   ============================
*/

/* Section Spacing - 80px for large screens, responsive for smaller screens */
.section-spacing {
    margin-bottom: 4rem; /* 64px for mobile */
}

@media (min-width: 768px) {
    .section-spacing {
        margin-bottom: 6rem; /* 96px for tablet */
    }
}

@media (min-width: 1024px) {
    .section-spacing {
        margin-bottom: 5rem; /* 80px for large screens */
    }
}

/* Compare Plans Spacing - 60px for large screens */
.compare-plans-spacing {
    margin-bottom: 2.5rem; /* 40px for mobile */
}

@media (min-width: 640px) {
    .compare-plans-spacing {
        margin-bottom: 2.75rem; /* 44px for small tablets */
    }
}

@media (min-width: 768px) {
    .compare-plans-spacing {
        margin-bottom: 3rem; /* 48px for tablet */
    }
}

@media (min-width: 1024px) {
    .compare-plans-spacing {
        margin-bottom: 3.75rem; /* 60px for large screens */
    }
}

/* ============================
   Tablet Responsive Styles (768px)
   ============================
*/

/* Pricing Cards Grid for Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .klinikplus-pricing-card {
        padding: 1.25rem !important;
        margin-bottom: 1rem;
        height: auto;
        min-height: 520px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .klinikplus-card-plan-name {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .klinikplus-card-price {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .klinikplus-card-period {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .klinikplus-subscribe-btn {
        width: 100%;
        max-width: none;
        margin: 1rem 0;
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .klinikplus-feature-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .klinikplus-card-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .klinikplus-card-features {
        flex-grow: 1;
        margin-bottom: 1rem;
    }

    .klinikplus-feature-item {
        margin-bottom: 0.5rem;
    }

    .klinikplus-card-section-title {
        font-size: 0.875rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .klinikplus-card-section-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Grid layout for tablets - 3 columns */
    .grid.grid-cols-1.md\\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem;
        margin: 0;
    }
}

/* Pricing Cards Grid for 1024px range */
@media (min-width: 1024px) and (max-width: 1279px) {
    .klinikplus-pricing-card {
        min-height: 560px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 1.5rem !important;
    }

    .klinikplus-card-plan-name {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .klinikplus-card-price {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .klinikplus-card-period {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .klinikplus-subscribe-btn {
        width: 100%;
        margin: 1rem 0;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .klinikplus-feature-text {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .klinikplus-card-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .klinikplus-card-features {
        flex-grow: 1;
        margin-bottom: 1rem;
    }

    .klinikplus-feature-item {
        margin-bottom: 0.5rem;
    }
}

/* Pricing Cards Grid for 1280px and above */
@media (min-width: 1280px) {
    .klinikplus-pricing-card {
        min-height: 600px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem !important;
    }

    .klinikplus-card-features {
        flex-grow: 1;
        margin-bottom: 1.5rem;
    }

    .klinikplus-subscribe-btn {
        margin-top: auto;
    }
}

/* Comparison Table for Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .comparison-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 1rem;
    }

    .comparison-table {
        min-width: 700px;
        font-size: 0.875rem;
    }

    .comparison-table th {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .service-cell {
        min-width: 200px;
    }

    .feature-cell {
        min-width: 150px;
    }
}

/* Typography for Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .klinikplus-pricing-title {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .klinikplus-pricing-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .klinikplus-customize-btn-text {
        font-size: 0.9rem;
    }
}

/* Container padding for tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .klinikplus-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Additional card content fixes */
@media (min-width: 768px) {
    .klinikplus-pricing-card {
        overflow: hidden;
        box-sizing: border-box;
    }

    .klinikplus-pricing-card > * {
        max-width: 100%;
        word-wrap: break-word;
    }
}

/* Section spacing adjustments for tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .section-spacing {
        margin-bottom: 4rem;
    }

    .compare-plans-spacing {
        margin-bottom: 2rem;
    }
}

/* Gap adjustments for different screen sizes */
@media (min-width: 768px) and (max-width: 1023px) {
    .grid.grid-cols-1.md\\:grid-cols-3 {
        gap: 0.75rem !important;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .grid.grid-cols-1.md\\:grid-cols-3 {
        gap: 1.5rem !important;
    }
}

@media (min-width: 1280px) {
    .grid.grid-cols-1.md\\:grid-cols-3 {
        gap: 2rem !important;
    }
}

/* CTA Section for Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .pricing-cta-section {
        padding: 3rem 2rem;
        margin: 3rem 1rem;
    }

    .pricing-cta-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .pricing-cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .pricing-cta-btn {
        width: 160px;
        height: 2.75rem;
        font-size: 0.9rem;
    }
}

/* Scroll to Top Button for Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    #scrollToTop {
        bottom: 2rem;
        right: 2rem;
    }

    #scrollToTop button {
        width: 3rem;
        height: 3rem;
    }

    #scrollToTop svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* ============================
   End Tablet Responsive Styles
   ============================
*/

/* Consultation Section */
.consultation-section {
    padding: 0 0 60px;
}

.consultation-card {
    background-color: white;
    border-radius: 16px;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    width: 730px;
    height: 100px;
    margin: 0 auto;
    border: 1.333px solid #ECECEC;
}

.consultation-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.consultation-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.consultation-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    margin: 0;
    color: #333;
    line-height: normal;
}

.consultation-text h3.fw-bold {
    font-weight: 700;
    color: #140F2D;
}

.lets-talk-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    height: 60px;
    background: #FF8E6C;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lets-talk-btn:hover {
    background: #ff7a53;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 142, 108, 0.4);
    color: white;
}

.lets-talk-btn img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.lets-talk-btn:hover img {
    transform: translateX(2px);
}

/* Gradient Divider */
.gradient-divider {
    height: 1px;
    background: linear-gradient(90deg, #F3AEAE 0%, #CEDBFF 100%);
    margin: 0 auto;
    max-width: 90%;
}

/* Team Section - New Styles */
.team-section {
    padding: 40px 0 80px;
    position: relative;
    z-index: 10;
}

/* Team Slider Wrapper */
.team-slider-wrapper {
    position: relative;
}

/* Team Scroll Container */
.team-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    margin: 0 -20px;
    scrollbar-width: thin;
    scrollbar-color: #FF8E6C transparent;
}

.team-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.team-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.team-scroll-container::-webkit-scrollbar-thumb {
    background: #FF8E6C;
    border-radius: 4px;
}

.team-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #e67e5a;
}

.team-scroll-wrapper {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    min-width: max-content;
}

.team-card-scroll {
    flex: 0 0 350px;
    max-width: 350px;
}

/* Team Navigation Buttons */
.team-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #FF8E6C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 142, 108, 0.2);
}

.team-nav-btn:hover {
    background: #FF8E6C;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 142, 108, 0.3);
}

.team-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.team-nav-btn svg {
    width: 20px;
    height: 20px;
    color: #FF8E6C;
    transition: color 0.3s ease;
}

.team-nav-btn:hover svg {
    color: white;
}

.team-nav-left {
    left: 20px;
}

.team-nav-right {
    right: 20px;
}

/* Hide scrollbar when arrows are present */
.team-scroll-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.team-scroll-container::-webkit-scrollbar {
    display: none;
}

.team-card-new {
    position: relative;
    height: 565px; /* Fixed height of 565px as requested */
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: none;
    background-color: white;
}

.team-card-new:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #140F2D;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1;
    pointer-events: none;
}

.team-card-new:hover {
    height: 657px; /* Expanded height on hover to 657px as requested */
    transition: height 0.25s ease;
}

.team-card-new:hover:before {
    opacity: 1;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card-front {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.team-card-back {
    display: none; /* Hide the back card as we're not flipping anymore */
}

.team-member-image {
    width: 100%;
    height: 398px; /* Fixed image height of 398px as requested */
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.team-member-info {
    padding: 20px 24px 5px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.team-member-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #140F2D;
    transition: color 0.25s ease;
    position: relative;
    z-index: 2;
}

.team-card-new:hover .team-member-name {
    color: white;
}

.team-member-role {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #696969;
    margin: 0;
    transition: color 0.25s ease;
    position: relative;
    z-index: 2;
}

.team-card-new:hover .team-member-role {
    color: rgba(255, 255, 255, 0.7);
}

.team-social-icons {
    padding: 0 24px 20px;
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.team-card-new:hover .team-social-icons {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FF8E6C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: white;
    color: #FF8E6C;
    transform: translateY(-2px);
}

.team-member-underline {
    width: 60px;
    height: 3px;
    background-color: #FF8E6C;
    margin: 0 0 20px 24px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .consultation-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
        text-align: center;
        width: 100%;
        max-width: 730px;
        height: auto;
    }

    .consultation-content {
        flex-direction: column;
    }

    .team-card-new {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .consultation-card {
        padding: 10px;
    }

    .lets-talk-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        height: 60px;
    }

    .team-scroll-container {
        margin: 0 -10px;
        padding: 15px 0;
    }

    .team-scroll-wrapper {
        gap: 20px;
        padding: 0 10px;
    }

    .team-card-scroll {
        flex: 0 0 280px;
        max-width: 280px;
    }

    .team-nav-btn {
        width: 40px;
        height: 40px;
    }

    .team-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .team-nav-left {
        left: 10px;
    }

    .team-nav-right {
        right: 10px;
    }
}

/* Contact Section - New Transform Design */
.contact-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 10;
    background-color: white;
}

.transform-clinic-container {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 30px;
    border-radius: 20px;
    overflow: hidden;
}

/* Left Content Area */
.transform-content {
    padding: 30px 20px;
}

.transform-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #140F2D;
    margin-bottom: 24px;
}

.transform-text {
    color: #696969;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 380px;
}

.contact-info {
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.contact-info-icon {
    margin-right: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #696969;
    margin: 0 0 4px 0;
}

.contact-info-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #140F2D;
    margin: 0;
}

/* Right Form Area */
.transform-form {
    background-color: #140F2D;
    padding: 40px;
    border-radius: 16px;
    color: white;
    text-align: center;
}

.form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    text-align: center;
}

.form-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.transform-form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    position: relative;
}

.transform-input,
.transform-select,
.transform-textarea {
    width: 100%;
    padding: 16px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #FFFFFF;
    color: #333;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: left;
}


.transform-input::placeholder,
.transform-select::placeholder,
.transform-textarea::placeholder {
    color: #666;
}

.transform-input:focus,
.transform-select:focus,
.transform-textarea:focus {
    outline: none;
    border-color: #FF8E6C;
    box-shadow: 0 0 0 2px rgba(255, 142, 108, 0.2);
}

.transform-textarea {
    min-height: 120px;
    resize: vertical;
    padding: 16px;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    left: auto;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-select-wrap .select-icon {
    top: 50%;
    right: 16px;
    left: auto;
    transform: translateY(-50%);
}

.send-message-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #FF8E6C;
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: 215px;
    margin-left: auto;
    margin-right: auto;
}

.send-message-btn:hover {
    background-color: #ff7a53;
    transform: translateY(-2px);
}

.send-message-btn svg {
    transition: transform 0.3s ease;
}

.send-message-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .transform-clinic-container {
        grid-template-columns: 1fr;
    }

    .transform-content {
        order: 1;
        text-align: center;
        padding: 20px;
    }

    .transform-content h2 {
        font-size: 36px;
    }

    .transform-text {
        margin: 0 auto 30px;
    }

    .contact-info {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .transform-form {
        order: 0;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .transform-content {
        padding: 10px;
    }

    .transform-form {
        padding: 30px 20px;
    }
}

/* Font Preloading */
@media screen and (min-width: 1px) {
    :root {
        --font-outfit: 'Outfit', sans-serif;
    }
}

/* Font Faces */
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

.testimonial-card-new:hover .author-info h4,
.testimonial-card-new:hover .author-info p {
    color: white;
}

.watch-video-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
    background-color: #FF8E6C;
    color: white;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    text-decoration: none;
    width: fit-content;
}

.watch-video-btn span {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.watch-video-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.testimonial-card-new:hover .watch-video-btn {
    opacity: 1;
    transform: translateY(0);
}

.watch-video-btn:hover {
    background-color: #ff7a53;
}

.watch-video-btn:hover img {
    transform: translateX(3px);
}

/* Team Card Animations */
.team-card-new {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease, height 0.4s ease, background-color 0.4s ease;
}

.team-card-new.animate {
    transform: translateY(0);
    opacity: 1;
}

.row .col-md-4:nth-child(1) .team-card-new {
    transition-delay: 0.1s;
}

.row .col-md-4:nth-child(2) .team-card-new {
    transition-delay: 0.3s;
}

.row .col-md-4:nth-child(3) .team-card-new {
    transition-delay: 0.5s;
}

/* Testimonial Card Animations */
.testimonial-card-new {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease, height 0.4s ease, background-color 0.4s ease;
}

.testimonial-card-new.animate {
    transform: translateY(0);
    opacity: 1;
}

.testimonials-container .testimonial-card-new:nth-child(1) {
    transition-delay: 0.1s;
}

.testimonials-container .testimonial-card-new:nth-child(2) {
    transition-delay: 0.3s;
}

.testimonials-container .testimonial-card-new:nth-child(3) {
    transition-delay: 0.5s;
}

/* Section Heading Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.3s;
}

.fade-in-up.animate span {
    opacity: 1;
    transform: translateY(0);
}

.transform-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none !important;
    padding-right: 40px;
    min-height: unset;
}

.form-select-wrap {
    position: relative;
}

.stats-section-bg {
    position: absolute;
    top: -148px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.stats-bg-image {
    width: 100%;
    height: auto;
    opacity: 1;
    object-fit: cover;
    object-position: center;
}

/* Team-Testimonials Background Lines */
.team-testimonials-bg-lines {
    position: absolute;
    width: 100%;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 5;
    pointer-events: none;
    top: 4400px;
    left: 0;
    overflow: visible;
}

.team-testimonials-bg-image {
    width: 100%;
    height: auto;
    opacity: 0.3;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1024px) {
    .floating-image {
        display: none !important;
    }

    .custom-package-title {
        font-size: 2.25rem;
    }

    .custom-package-subtitle {
        font-size: 1rem;
    }

    /* Stats card styling to match desktop */
    .stats-card {
        height: 26.26256rem;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

    .stats-number {
        font-size: 4.53888rem;
        font-weight: 600;
        line-height: 5.21975rem;
        letter-spacing: -0.12606rem;
    }

    .stats-text {
        font-size: 1.25rem;
        line-height: 2rem;
        font-weight: 500;
    }

    .stats-card-orange .stats-card-image img {
        height: 14rem;
        width: auto;
        object-fit: contain;
        object-position: bottom right;
    }

    .stats-card-black .stats-card-image img {
        height: 15.8125rem;
        width: auto;
        object-fit: contain;
        object-position: bottom center;
    }

    .stats-card-yellow .stats-card-image img {
        height: 15.3125rem;
        width: auto;
        object-fit: contain;
        object-position: bottom center;
    }

    /* Hide timeline dashed lines on mobile and tablet */
    .timeline-step::after,
    .timeline-step[data-step="1"]::after,
    .timeline-step[data-step="2"]::after,
    .timeline-step[data-step="3"]::after,
    .timeline-step[data-step="4"]::after,
    .timeline-step[data-step="5"]::before,
    .timeline-step:before {
        display: none !important;
    }

    .timeline-line {
        display: none !important;
    }
}

/* 1440px navigation uses default 1920px styles */

/* Specific fix for 1512px width and similar large screens */
@media (min-width: 1500px) and (max-width: 1600px) {
    .klinikplus-nav-container {
        padding: 0 60px;
    }

    .klinikplus-nav-links {
        gap: 1.5rem;
    }

    .klinikplus-nav-link {
        font-size: 0.875rem; /* 14px */
    }

    .klinikplus-nav-right {
        gap: 2.5rem;
    }

    .klinikplus-phone-number {
        font-size: 0.875rem; /* 14px */
    }

    .klinikplus-submit-btn {
        width: 12rem;
        height: 54px;
    }

    .klinikplus-btn-text {
        font-size: 0.875rem; /* 14px */
    }

    .klinikplus-lang-active,
    .klinikplus-lang-inactive {
        font-size: 0.875rem; /* 14px */
    }
}


/* ============================
   Services Dropdown Responsive Styles
   ============================
*/

@media (max-width: 1400px) {
    .klinikplus-services-dropdown {
        width: 900px;
        left: 50%;
        transform: translateX(-50%);
    }

    .klinikplus-services-sidebar {
        width: 250px;
    }

    .klinikplus-service-content-panel {
        padding: 24px 28px;
    }

    .klinikplus-sub-service-item h4 {
        font-size: 1rem;
    }

    .klinikplus-sub-service-item p {
        font-size: 0.875rem;
    }
}

@media (max-width: 1200px) {
    .klinikplus-services-dropdown {
        width: 850px;
    }

    .klinikplus-services-sidebar {
        width: 240px;
    }

    .klinikplus-service-content-panel {
        padding: 28px 32px;
    }
}

@media (max-width: 1024px) {
    .klinikplus-services-dropdown {
        width: 85vw;
        left: -20vw;
        transform: none;
        height: 520px;
    }

    .klinikplus-services-dropdown::before {
        display: none;
    }

    .klinikplus-services-container {
        height: 520px;
    }

    .klinikplus-services-sidebar {
        width: 220px;
    }

    .klinikplus-service-content-panel {
        padding: 24px 28px;
    }

    .klinikplus-content-header h3 {
        font-size: 1.25rem;
    }

    .klinikplus-sub-service-item {
        padding: 16px 20px;
    }

    .klinikplus-sub-service-item h4 {
        font-size: 1rem;
    }

    .klinikplus-sub-service-item p {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    /* Hide desktop dropdown on mobile - use mobile submenu instead */
    .klinikplus-services-dropdown {
        display: none !important;
    }

    .klinikplus-nav-links {
        display: none;
    }

    .klinikplus-mobile-toggle {
        display: flex;
    }

    .klinikplus-nav-right {
        gap: 2rem; /* Reset to smaller gap on mobile */
    }

    /* Ensure mobile menu is properly displayed */
    .klinikplus-mobile-menu {
        background: white;
        border-radius: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .klinikplus-mobile-services-submenu {
        background: linear-gradient(135deg, rgba(255, 142, 108, 0.03) 0%, rgba(255, 142, 108, 0.08) 100%);
        border: 1px solid rgba(255, 142, 108, 0.1);
        border-radius: 12px;
    }
}

/* Tablet specific - show mobile menu on smaller tablets */
@media (max-width: 900px) {
    .klinikplus-nav-links {
        display: none !important;
    }

    .klinikplus-mobile-toggle {
        display: flex !important;
    }

    .klinikplus-services-dropdown {
        display: none !important;
    }

    .klinikplus-mobile-services-submenu {
        background: linear-gradient(135deg, rgba(255, 142, 108, 0.03) 0%, rgba(255, 142, 108, 0.08) 100%);
        border: 1px solid rgba(255, 142, 108, 0.1);
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .klinikplus-services-dropdown {
        width: 100vw;
        left: 0;
        border-radius: 0;
        height: 100vh;
        top: 100%;
    }

    .klinikplus-services-container {
        flex-direction: column;
        height: 100vh;
    }

    .klinikplus-services-sidebar {
        width: 100%;
        height: 200px;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .klinikplus-main-service-item {
        min-width: 180px;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .klinikplus-main-service-item:hover,
    .klinikplus-main-service-item.active {
        border-left: none;
        border-bottom-color: #FF8E6C;
    }

    .klinikplus-services-content {
        flex: 1;
        height: calc(100vh - 200px);
    }
}

/* ===== CASE STUDIES PAGE STYLES ===== */
.case-study-hero {
    padding: 80px 0 80px 0 !important;
    background: transparent !important;
}

.case-study-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    height: 800px !important;
    width: 100% !important;
    margin-bottom: 40px !important;
    border-radius: 40px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    padding: 0 90px !important;
}

.case-study-card:first-of-type {
    background-color: #FFF8E1 !important;
    background: #FFF8E1 !important;
}

.case-study-card.blue-gradient {
    background-color: #F0F0FF !important;
    background: #F0F0FF !important;
}

.case-study-card.purple-gradient {
    background-color: #FFE8F0 !important;
    background: #FFE8F0 !important;
}

.case-study-content {
    flex: 0 0 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 40px 0 0 0 !important;
}

.case-study-image-container {
    flex: 0 0 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

/* Case Study Logo */
.case-study-logo {
    margin-bottom: 20px !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.case-study-logo img {
    height: 60px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
}

/* Case Study Title */
.case-study-title {
    color: var(--Secondary, #150F02) !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 2.25rem !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 3.06363rem !important;
    margin: 20px 0 !important;
}

/* Case Study Buttons */
.case-study-buttons {
    display: flex !important;
    gap: 20px !important;
    margin-top: 30px !important;
}

.btn-explore {
    background: linear-gradient(135deg, #FF8E6C 0%, #FF6B47 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 16px 32px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 142, 108, 0.3) !important;
    min-width: 160px !important;
    justify-content: center !important;
}

.btn-explore:hover {
    background: linear-gradient(135deg, #FF6B47 0%, #FF4A1F 100%) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 142, 108, 0.4) !important;
}

.btn-visit {
    background: transparent !important;
    color: #666 !important;
    border: 2px solid #E0E0E0 !important;
    border-radius: 30px !important;
    padding: 14px 30px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    min-width: 160px !important;
    justify-content: center !important;
}

.btn-visit:hover {
    background: #f8fafb !important;
    color: #292929 !important;
    text-decoration: none !important;
    border-color: #ccc !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.load-more-btn {
    background: white !important;
    color: #666 !important;
    border: 2px solid #E0E0E0 !important;
    border-radius: 30px !important;
    padding: 16px 40px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    margin-top: 20px !important;
}

.load-more-btn:hover {
    background: #f8fafb !important;
    color: #292929 !important;
    text-decoration: none !important;
    border-color: #ccc !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .case-study-card {
        flex-direction: column !important;
        height: auto !important;
        padding: 0 30px !important;
        min-height: 600px !important;
    }

    .case-study-content {
        width: 100% !important;
        order: 2 !important;
        padding: 40px 0 0 0 !important;
    }

    .case-study-image-container {
        width: 100% !important;
        order: 1 !important;
    }

    .case-study-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .btn-explore, .btn-visit {
        width: 100% !important;
        justify-content: center !important;
    }

    .case-study-title {
        font-size: 1.875rem !important;
        line-height: 2.5rem !important;
        margin: 15px 0 !important;
    }

    .case-study-logo {
        margin-bottom: 20px !important;
        justify-content: center !important;
    }

    .case-study-logo img {
        height: 50px !important;
        max-width: 150px !important;
    }
}


@media (min-width: 992px) and (max-width: 1440px) {
    .klinikplus-container {
        padding: 0 1rem !important;
        max-width: 1024px !important;
    }
    .hero-section {
        padding: 60px 0 30px;
    }
    .hero-section h1 {
        font-size: 56px !important;
        line-height: 62px !important;
        font-weight: 600 !important;
    }
    .hero-doctor-img {
        transform: translateY(-30px)!important;
    }
    .floating-image-1 {
        top: 20% !important;
        left: 0% !important;
        max-width: 160px !important;
    }
    .floating-image-2 {
        top: 8% !important;
        right: -7% !important;
        max-width: 148px !important;
    }
    .floating-image-3 {
        max-width: 290px !important;
        right: -20% !important;
    }
    .klinikplus-btn-arrow {
        width: 24px !important;
        height: 24px !important;}
    .hero-btn-primary, button{
        height: 54px !important;
    }
    .stats-number {
        line-height: 62px !important;
        font-size: 52px !important;
    }
    .stats-text{font-size: 15px !important;line-height: 25px !important;}
    .stats-card{height: 20rem !important;}
    .stats-card-orange .stats-card-image img {
        height: 11rem !important;
    }
    .stats-card-yellow .stats-card-image img{margin: 0 auto !important;}
    h2 {font-size: 36px !important;line-height: 54px !important;margin-bottom: 15px !important;}
    .service-card-new {
        height: 328px !important;
    }
    .service-card-title {
        font-size: 21px !important;
    }
    .service-features li {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    .service-learn-more{
        height: 54px !important;
    }
    .timeline-label {
        font-size: 12px !important;
    }
    .how-it-works-image {
        height: 332px !important;
    }
    .how-it-works-container {
        align-items: center;
    }
    .step-description p {
        font-size: 14px !important;
    }
    .timeline-step {
        margin-bottom: 32px !important;
    }
    .timeline-step::after {
        top: 42px !important;
        bottom: -42px !important;
    }
    .consultation-card{
        width: 780px !important;
    }
    a.lets-talk-btn {
        width: 230px;
    }

    .testimonial-slide {
        width: calc((100% - 36px) / 3) !important;
        flex: 0 0 calc((100% - 36px) / 3) !important;
        max-width:330px;
        min-width:330px;
    }

    .form-label {
        display: none !important;
    }

    .transform-input, .transform-select, .transform-textarea {
        padding: 6px 15px !important;
        border-radius: 8px !important;
    }

}

