/* ================================================================
   KARMA AYURVEDA — Modern Landing Page CSS
   Color Palette: #2F855A (primary), #F0FFF4 (secondary), #38A169 (accent)
   Typography: Poppins (headings), Inter (body)
   ================================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a202c;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #1a202c;
}

/* ---- CONTAINER ---- */
.ka-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- UTILITY ---- */
.ka-text-left { text-align: left !important; }
.ka-hide-mobile { display: inline-flex !important; }

/* ---- BUTTONS ---- */
.ka-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all .25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.ka-btn svg { flex-shrink: 0; }
.ka-btn-primary {
    /* background: #2F855A; */
    color: #2f855a;
    padding: 12px 28px;
}
.ka-btn-primary:hover {
    /* background: #276749; */
    /* transform: translateY(-2px); */
    /* box-shadow: 0 8px 24px rgba(47,133,90,.3); */
    color: #0e6238;
}
.ka-btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 12px 28px;
}
.ka-btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.3);
    color: #fff;
}
.ka-btn-white {
    background: #fff;
    color: #2F855A;
    padding: 12px 28px;
}
.ka-btn-white:hover {
    background: #F0FFF4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,.3);
    color: #2F855A;
}
.ka-btn-lg { padding: 14px 32px; font-size: 16px; }
.ka-btn-sm {padding: 8px 20px;font-size: 29px;border-radius: 10px;}
.ka-btn-block { width: 100%; justify-content: center; }

/* ---- TOP BAR ---- */
.ka-topbar {
    background: #2F855A;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
}
.ka-topbar p { margin: 0; }

/* ---- HEADER ---- */
.ka-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: box-shadow .3s;
}
.ka-header-scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.ka-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.ka-logo img {
    height: 44px;
    width: auto;
}
.ka-nav {
    display: flex;
    gap: 32px;
}
.ka-nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    transition: color .2s;
    position: relative;
}
.ka-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2F855A;
    transition: width .3s;
}
.ka-nav-link:hover { color: #2F855A; }
.ka-nav-link:hover::after { width: 100%; }
.ka-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ka-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.ka-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a202c;
    border-radius: 2px;
    transition: .3s;
}

/* ---- MOBILE OVERLAY ---- */
.ka-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}
.ka-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}
.ka-mobile-menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s;
}
.ka-mobile-overlay.active .ka-mobile-menu {
    transform: translateX(0);
}
.ka-mobile-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a202c;
}
.ka-mobile-link {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #1a202c;
}
.ka-mobile-link:hover { color: #2F855A; }


/* ================================================================
   1. HERO SECTION
   ================================================================ */
.ka-hero {
    background: url('../../images/thankyou/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.ka-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    /* background: radial-gradient(circle, rgba(47,133,90,.08) 0%, transparent 70%); */
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.ka-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgb(0 229 94 / 5%) 44%, rgb(255 255 255 / 0%) 100%);
    /* background: radial-gradient(circle at center, rgb(0 255 128) 0%, rgba(47, 133, 90, .12) 28%, rgba(255, 255, 255, 0) 62%); */
    z-index: 0;
    pointer-events: none;
}
.ka-hero .ka-container {
    position: relative;
    z-index: 1;
}
.ka-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: center;
}
.ka-hero-badge {
    display: inline-block;
    background: rgba(47,133,90,.1);
    color: #2F855A;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}
.ka-hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a202c;
    margin-bottom: 16px;
}
.ka-hero-title span {
    color: #2F855A;
}
.ka-hero-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.6;
}
.ka-hero-points {
    margin-bottom: 32px;
}
.ka-hero-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #2d3748;
    padding: 6px 0;
}
.ka-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Form */
.ka-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
    border: 1px solid rgba(47,133,90,.1);
}
.ka-form-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2px;
    text-align: center;
}
.ka-form-subtitle {
    font-size: 13px;
    color: #718096;
    text-align: center;
    margin-bottom: 14px;
}
.ka-form-group {
    margin-bottom: 8px;
}
.ka-form input,
.ka-form select,
.ka-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1a202c;
    background: #f7fafc;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.ka-form .iti {
    width: 100%;
}
.ka-form textarea {
    min-height: 84px;
}
.ka-form input:focus,
.ka-form select:focus,
.ka-form textarea:focus {
    border-color: #2F855A;
    box-shadow: 0 0 0 3px rgba(47,133,90,.12);
    background: #fff;
}
.ka-form input::placeholder,
.ka-form textarea::placeholder {
    color: #a0aec0;
}
.ka-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    min-height: 46px;
    line-height: 1.35;
    background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 38px;
    color: #4a5568;
}
.ka-form select:required:invalid {
    color: #a0aec0;
}
.ka-form select option {
    color: #1a202c;
}
.ka-form-note {
    font-size: 12px;
    color: #718096;
    text-align: center;
    margin-top: 8px;
}
.ka-form-insurance-note {
    text-align: center;
    color: #0c6f44;
    font-size: 12px;
    margin: 0 0 8px;
    font-weight: 600;
}
.validation-message {
    font-size: 11px;
    margin-top: 4px;
    color: #e53e3e;
}
.validation-message:empty {
    display: none;
}
.validation-message.error {
    color: #e53e3e;
}
.main-validation {
    margin-top: 4px;
}
.ka-form-agreement-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}
.ka-form-agreement-row input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    accent-color: #2F855A;
}
.ka-form-agreement-row label {
    font-size: 11px;
    color: #4a5568;
    line-height: 1.35;
    margin: 0;
}
.ka-form .ka-btn-lg {
    padding: 10px 20px;
    font-size: 16px;
}

/* Dark form variant */
.ka-form-dark input,
.ka-form-dark select,
.ka-form-dark textarea {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.25);
    color: #fff;
}
.ka-form-dark input::placeholder,
.ka-form-dark textarea::placeholder {
    color: rgba(255,255,255,.5);
}
.ka-form-dark input:focus,
.ka-form-dark select:focus,
.ka-form-dark textarea:focus {
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,.15);
    background: rgba(255,255,255,.15);
}
.ka-form-dark select {
    background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.8) 50%), linear-gradient(135deg, rgba(255,255,255,.8) 50%, transparent 50%);
}
.ka-form-dark select:required:invalid {
    color: rgba(255,255,255,.6);
}

/* Consultation form is a light card; keep fields high-contrast and visible */
.ka-consult-form-wrap .ka-form-dark input,
.ka-consult-form-wrap .ka-form-dark select,
.ka-consult-form-wrap .ka-form-dark textarea {
    background: #f7fafc;
    border-color: #d7e3dc;
    color: #1a202c;
}
.ka-consult-form-wrap .ka-form-dark input::placeholder,
.ka-consult-form-wrap .ka-form-dark textarea::placeholder {
    color: #7a8a97;
}
.ka-consult-form-wrap .ka-form-dark select {
    background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
    color: #4a5568;
}
.ka-consult-form-wrap .ka-form-dark select:required:invalid {
    color: #7a8a97;
}
.ka-consult-form-wrap .ka-form-dark input:focus,
.ka-consult-form-wrap .ka-form-dark select:focus,
.ka-consult-form-wrap .ka-form-dark textarea:focus {
    border-color: #2F855A;
    box-shadow: 0 0 0 3px rgba(47,133,90,.12);
    background: #fff;
}
.ka-form-dark .ka-form-insurance-note {
    color: #d4f6e4;
}
.ka-form-dark .ka-form-agreement-row label {
    color: rgba(255,255,255,.88);
}


/* ================================================================
   2. TRUST STATS
   ================================================================ */
.ka-stats {
    background: #2F855A;
    padding: 50px 0;
    position: relative;
}
.ka-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ka-stat-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s, transform .5s;
}
.ka-stat-card.ka-visible {
    opacity: 1;
    transform: translateY(0);
}
.ka-stat-card:nth-child(2) { transition-delay: .1s; }
.ka-stat-card:nth-child(3) { transition-delay: .2s; }
.ka-stat-card:nth-child(4) { transition-delay: .3s; }
.ka-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.ka-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.85);
    margin-top: 6px;
    font-weight: 500;
}


/* ================================================================
   SECTION COMMON
   ================================================================ */
.ka-section {
    padding: 80px 0;
}
.ka-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.ka-section-tag {
    display: inline-block;
    background: rgba(47,133,90,.08);
    color: #2F855A;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}
.ka-section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}
.ka-section-desc {
    font-size: 16px;
    color: #718096;
    max-width: 640px;
    margin: 0 auto;
}


/* ================================================================
   3. VIDEO SECTION
   ================================================================ */
.ka-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    aspect-ratio: 16/9;
    background: #000;
}
.ka-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ka-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.15), transparent);
    pointer-events: none;
}
.ka-video-audio-toggle {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(0,0,0,.52);
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.ka-video-audio-toggle:hover {
    background: rgba(0,0,0,.68);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.ka-video-audio-toggle[aria-pressed="true"] {
    background: rgba(47,133,90,.92);
    border-color: rgba(255,255,255,.75);
}
.ka-video-audio-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}


/* ================================================================
   4. DOCTOR TEAM SECTION
   ================================================================ */
.ka-doctor-section {
    background: linear-gradient(135deg, #F0FFF4 0%, #E6FFFA 50%, #F0FFF4 100%);
    overflow: hidden;
}

/* --- Featured Doctor (Dr. Puneet Dhawan) --- */
.ka-featured-doctor {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(47, 133, 90, .1), 0 1px 3px rgba(0,0,0,.04);
    margin-bottom: 50px;
    position: relative;
    border: 1px solid rgba(47, 133, 90, .08);
}
.ka-featured-doctor::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, #2F855A, #38A169, #48BB78, #2F855A);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity .4s;
}
.ka-featured-doctor:hover::before {
    opacity: 1;
}
.ka-featured-doctor-img {
    position: relative;
}
.ka-featured-doctor-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    aspect-ratio: 3/4;
    object-fit: cover;
}
.ka-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #2F855A, #38A169);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(47, 133, 90, .4);
}
.ka-featured-doctor-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ka-featured-doctor-name {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
    line-height: 1.2;
}
.ka-featured-doctor-info .ka-doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
}
.ka-featured-doctor-info p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* --- Team Doctor Cards --- */
.ka-team-doctors-carousel {
    margin: 0 -14px;
}
.ka-team-doctors-carousel .slick-list {
    padding: 20px 0 30px;
}
.ka-team-doctors-carousel .slick-track {
    display: flex;
}
.ka-team-doctors-carousel .slick-slide {
    padding: 0 14px;
    height: auto;
    display: flex !important;
}
.ka-team-doctors-carousel .slick-slide > div {
    width: 100%;
    display: flex;
}
.ka-team-doc-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(47, 133, 90, .06);
    outline: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ka-team-doc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(47, 133, 90, .15);
    border-color: rgba(47, 133, 90, .2);
}
.ka-team-doc-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #E6FFFA, #F0FFF4);
}
.ka-team-doc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.ka-team-doc-card:hover .ka-team-doc-img img {
    transform: scale(1.05);
}
.ka-team-doc-info {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ka-team-doc-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 6px;
    line-height: 1.3;
}
.ka-team-doc-qual {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #2F855A;
    background: rgba(47, 133, 90, .08);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.ka-team-doc-info p {
    font-size: 13px;
    color: #718096;
    line-height: 1.5;
    margin: 0;
    margin-top: auto;
}

/* Slick arrows for team carousel */
.ka-team-doctors-carousel .ka-slick-prev,
.ka-team-doctors-carousel .ka-slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(47, 133, 90, .2);
    color: #2F855A;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}
.ka-team-doctors-carousel .ka-slick-prev:hover,
.ka-team-doctors-carousel .ka-slick-next:hover {
    background: #2F855A;
    color: #fff;
    border-color: #2F855A;
    box-shadow: 0 6px 20px rgba(47, 133, 90, .3);
}
.ka-team-doctors-carousel .ka-slick-prev {
    left: -24px;
}
.ka-team-doctors-carousel .ka-slick-next {
    right: -24px;
}
.ka-team-doctors-carousel .slick-dots {
    bottom: -10px;
}
.ka-team-doctors-carousel .slick-dots li button:before {
    font-size: 10px;
    color: #2F855A;
}
.ka-team-doctors-carousel .slick-dots li.slick-active button:before {
    color: #2F855A;
    opacity: 1;
}
.ka-doctor-content .ka-section-title {
    text-align: left;
}
.ka-doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.ka-tag {
    display: inline-block;
    background: #fff;
    color: #2F855A;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(47,133,90,.15);
}
.ka-featured-doctor .ka-tag {
    background: rgba(47, 133, 90, .06);
}
.ka-doctor-content p {
    color: #4a5568;
    margin-bottom: 16px;
    font-size: 15px;
}


/* ================================================================
   5. AWARDS
   ================================================================ */
#awards{
    background:
        radial-gradient(circle at 8% 12%, rgba(47, 133, 90, 0.12), transparent 36%),
        radial-gradient(circle at 92% 88%, rgba(66, 153, 225, 0.12), transparent 34%),
        linear-gradient(180deg, #f8fcfa 0%, #eef7f2 100%);
}

.ka-awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ka-award-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease;
    display: block;
}
.ka-award-card.ka-visible {
    opacity: 1;
    transform: translateY(0);
}
.ka-award-card:nth-child(2) { transition-delay: .08s; }
.ka-award-card:nth-child(3) { transition-delay: .16s; }
.ka-award-card:nth-child(4) { transition-delay: .24s; }
.ka-award-card:nth-child(5) { transition-delay: .32s; }
.ka-award-card:nth-child(6) { transition-delay: .4s; }
.ka-award-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform .4s;
}
.ka-award-card:hover img {
    transform: scale(1.05);
}
.ka-award-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
    color: #fff;
    translate: 0 100%;
    transition: translate .3s;
}
.ka-award-card:hover .ka-award-overlay {
    translate: 0 0;
}
.ka-award-overlay p {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}


/* ================================================================
   6. BOOK CONSULTATION
   ================================================================ */
.ka-consultation-banner {
    background:
        radial-gradient(circle at 14% 22%, rgba(255,255,255,.18), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.12), transparent 28%),
        linear-gradient(135deg, #2f855a 0%, #1f6b47 45%, #194e39 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ka-consultation-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.ka-consult-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: stretch;
}
.ka-consult-content {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 24px;
    padding: 34px 34px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.ka-consult-content h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}
.ka-consult-content p {
    color: rgba(255,255,255,.85);
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.7;
}
.ka-consult-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}
.ka-consult-actions .ka-btn {
    min-width: 175px;
    justify-content: center;
    border-radius: 12px;
}
.ka-consult-trust {
    margin: 0 0 16px;
    color: rgba(230, 255, 238, .95);
    font-size: 13px;
    font-weight: 500;
}
.ka-consult-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ka-consult-points li {
    font-size: 15px;
    color: rgba(255,255,255,.95);
    padding: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ka-consult-points li .ka-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    flex-shrink: 0;
}
.ka-consult-points li .ka-check-icon svg {
    width: 14px;
    height: 14px;
}
.ka-consult-form-wrap {
    background: #ffffff;
    border: 1px solid rgba(13, 84, 56, .14);
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 18px 42px rgba(10, 40, 28, .2);
}
.ka-consult-form-wrap h3 {
    color: #1f513b;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
}
.ka-consult-form-wrap .ka-form-subtitle-dark {
    color: #4f6b5d;
    font-size: 14px;
    margin-bottom: 22px;
    text-align: center;
}
.ka-consult-form-wrap .ka-form-dark input,
.ka-consult-form-wrap .ka-form-dark select,
.ka-consult-form-wrap .ka-form-dark textarea {
    background: #f7fcf9;
    border-color: #d8ebe0;
    color: #1a202c;
}
.ka-consult-form-wrap .ka-form-dark input::placeholder,
.ka-consult-form-wrap .ka-form-dark textarea::placeholder {
    color: #8aa195;
}
.ka-consult-form-wrap .ka-form-dark select {
    appearance: auto;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    min-height: 46px;
    padding-right: 14px;
    background-image: none;
    color: #4a5568;
}
.ka-consult-form-wrap .ka-form-dark select:required:invalid {
    color: #8aa195;
}
.ka-consult-form-wrap .ka-form-dark input:focus,
.ka-consult-form-wrap .ka-form-dark select:focus,
.ka-consult-form-wrap .ka-form-dark textarea:focus {
    border-color: #2f855a;
    box-shadow: 0 0 0 3px rgba(47,133,90,.14);
    background: #fff;
}
.ka-consult-form-wrap .ka-form-dark .ka-form-insurance-note {
    color: #0d6f45;
}
.ka-consult-form-wrap .ka-form-dark .ka-form-agreement-row label {
    color: #4a5568;
}
.ka-consult-form-wrap .ka-btn-white {
    background: #2f855a;
    color: #fff;
}
.ka-consult-form-wrap .ka-btn-white:hover {
    background: #256e49;
    color: #fff;
}


/* ================================================================
   7. CONDITIONS WE TREAT
   ================================================================ */
.ka-conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ka-condition-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all .3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.ka-condition-card.ka-visible {
    opacity: 1;
    transform: translateY(0);
}
.ka-condition-card:nth-child(2) { transition-delay: .06s; }
.ka-condition-card:nth-child(3) { transition-delay: .12s; }
.ka-condition-card:nth-child(4) { transition-delay: .18s; }
.ka-condition-card:nth-child(5) { transition-delay: .24s; }
.ka-condition-card:nth-child(6) { transition-delay: .3s; }
.ka-condition-card:hover {
    border-color: #2F855A;
    box-shadow: 0 12px 40px rgba(47,133,90,.1);
    transform: translateY(-4px);
}
.ka-condition-icon {
    width: 64px;
    height: 64px;
    background: #F0FFF4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.ka-condition-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}
.ka-condition-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}


/* ================================================================
   8. ABOUT HOSPITAL
   ================================================================ */
.ka-about-hospital {
    background:
        radial-gradient(circle at 8% 12%, rgba(47, 133, 90, 0.12), transparent 36%),
        radial-gradient(circle at 92% 88%, rgba(66, 153, 225, 0.12), transparent 34%),
        linear-gradient(180deg, #f8fcfa 0%, #eef7f2 100%);
}
.ka-about-split {
    display: grid;
    grid-template-columns: minmax(360px, 520px) 1fr;
    gap: 40px;
    align-items: start;
}
.ka-about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ka-about-photo-wrap {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(47,133,90,.16);
    box-shadow: 0 22px 56px rgba(26, 32, 44, .16);
}
.ka-about-photo {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.ka-about-floating-pill {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(47,133,90,.16);
}
.ka-about-floating-pill strong {
    font-family: 'Poppins', sans-serif;
    color: #1f4f3a;
    font-size: 16px;
    line-height: 1.1;
}
.ka-about-floating-pill span {
    font-size: 12px;
    color: #4a5568;
    text-align: right;
}
.ka-about-copy {
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(47,133,90,.12);
    border-radius: 24px;
    padding: 30px 30px 32px;
    box-shadow: 0 14px 34px rgba(47,133,90,.08);
}
.ka-about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #2f855a;
    margin-bottom: 10px;
}
.ka-about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    line-height: 1.2;
    color: #1a202c;
    margin: 0 0 14px;
}
.ka-about-copy p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.ka-about-highlights {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 10px;
}
.ka-about-highlights li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: #2d3748;
    line-height: 1.45;
}
.ka-about-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f855a, #38a169);
    box-shadow: inset 0 0 0 4px rgba(255,255,255,.72);
}
.ka-certifications {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.ka-cert-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.ka-cert-badge img {
    height: 46px;
    width: auto;
    object-fit: contain;
}
.ka-cert-badge span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #2d3748;
}


/* ================================================================
   9. HOW IT WORKS
   ================================================================ */
.ka-process-section {
    background: #F0FFF4;
}
.ka-steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.ka-step-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease;
}
.ka-step-card.ka-visible {
    opacity: 1;
    transform: translateY(0);
}
.ka-step-card:nth-child(3) { transition-delay: .1s; }
.ka-step-card:nth-child(5) { transition-delay: .2s; }
.ka-step-card:nth-child(7) { transition-delay: .3s; }
.ka-step-card:hover {
    box-shadow: 0 16px 50px rgba(47,133,90,.1);
    transform: translateY(-4px);
}
.ka-step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(47,133,90,.1);
    line-height: 1;
    margin-bottom: 8px;
}
.ka-step-icon {
    width: 72px;
    height: 72px;
    background: #F0FFF4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.ka-step-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a202c;
}
.ka-step-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}
.ka-step-cta {
    margin-top: 16px;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 10px;
}
.ka-step-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}


/* ================================================================
   10 & 12. VIDEO REVIEWS / PATIENT REPORTS (Slick Carousels)
   ================================================================ */
.ka-reviews-section {
    background: #f7fafc;
}
.ka-video-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    background: #e2e8f0;
}
.ka-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.ka-video-thumb:hover img {
    transform: scale(1.03);
}
.ka-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    background: rgba(0,0,0,.3);
    transition: background .3s;
    pointer-events: none;
}
.ka-video-thumb:hover .ka-play-btn {
    background: rgba(0,0,0,.45);
}
.ka-video-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ka-video-review-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
}
.ka-video-review-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
}
.ka-report-item {
    padding: 0 12px;
}

/* Reports Grid */
.ka-reports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ka-report-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
    display: block;
    text-decoration: none;
}
.ka-report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(47,133,90,.18);
}
.ka-report-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.ka-report-card:hover img {
    transform: scale(1.04);
}
.ka-report-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    color: #fff;
    text-align: center;
}
.ka-report-overlay span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
}

/* ── Patient Reviews Section ── */
.ka-patient-reviews-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #f7fee7 50%, #ecfdf5 100%);
}
.ka-patient-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    .ka-patient-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .ka-patient-reviews-grid {
        grid-template-columns: 1fr;
    }
}
.ka-review-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    border: 1px solid rgba(47,133,90,.08);
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.ka-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(47,133,90,.14);
}
.ka-review-quote-icon {
    margin-bottom: 16px;
    opacity: .5;
}
.ka-review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    flex: 1;
    margin-bottom: 24px;
    display: -webkit-box;
    line-clamp: 6;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ka-review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}
.ka-review-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d1fae5;
}
.ka-review-author h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px;
}
.ka-review-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
}

/* LightGallery overrides — close button + backdrop */
.lg-toolbar .lg-close {
    position: relative;
    width: 50px;
    height: 47px;
    cursor: pointer;
    z-index: 1084;
}
.lg-toolbar .lg-close::after {
    content: '\00d7';
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    line-height: 47px;
}
.lg-toolbar .lg-close:hover::after {
    color: #ff5252;
}
.lg-backdrop {
    cursor: pointer;
}
.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
    cursor: pointer;
}
.lg-outer .lg-image {
    cursor: default;
}

/* Slick custom arrows & dots */
.ka-slick-prev,
.ka-slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #2F855A;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ka-slick-prev:hover,
.ka-slick-next:hover {
    background: #2F855A;
    color: #fff;
    border-color: #2F855A;
}
.ka-slick-prev { left: -16px; }
.ka-slick-next { right: -16px; }

.slick-dots {
    margin-top: 30px;
    text-align: center;
}
.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cbd5e0;
    cursor: pointer;
    transition: all .2s;
    padding: 0;
}
.slick-dots li.slick-active button {
    background: #2F855A;
    width: 28px;
    border-radius: 5px;
}


/* ================================================================
   11. WHY PEOPLE CHOOSE US
   ================================================================ */
.ka-why-section {
    background: #fff;
}
.ka-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.ka-why-card {
    background: #F0FFF4;
    border: 1px solid rgba(47,133,90,.1);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all .3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.ka-why-card.ka-visible {
    opacity: 1;
    transform: translateY(0);
}
.ka-why-card:nth-child(2) { transition-delay: .06s; }
.ka-why-card:nth-child(3) { transition-delay: .12s; }
.ka-why-card:nth-child(4) { transition-delay: .18s; }
.ka-why-card:nth-child(5) { transition-delay: .24s; }
.ka-why-card:hover {
    background: #fff;
    border-color: #2F855A;
    box-shadow: 0 12px 40px rgba(47,133,90,.1);
    transform: translateY(-4px);
}
.ka-why-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.ka-why-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}
.ka-why-card p {
    font-size: 13px;
    color: #718096;
    line-height: 1.5;
}


/* ================================================================
   13. INSURANCE
   ================================================================ */
.ka-insurance-section {
    background: linear-gradient(160deg, #f0fff4 0%, #e6fffa 40%, #ebf8ff 100%);
    position: relative;
    overflow: hidden;
}
.ka-insurance-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56,161,105,.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.ka-insurance-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(49,130,206,.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.ka-insurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}
.ka-insurance-card {
    background: #fff;
    border: 1px solid rgba(56,161,105,.15);
    border-radius: 20px;
    padding: 40px 24px 32px;
    text-align: center;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}
.ka-insurance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #38A169, #3182CE);
    opacity: 0;
    transition: opacity .3s;
}
.ka-insurance-card.ka-visible {
    opacity: 1;
    transform: translateY(0);
}
.ka-insurance-card:hover {
    box-shadow: 0 12px 40px rgba(56,161,105,.15), 0 4px 12px rgba(0,0,0,.04);
    transform: translateY(-6px);
    border-color: rgba(56,161,105,.3);
}
.ka-insurance-card:hover::before {
    opacity: 1;
}
.ka-insurance-img-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 50%;
    padding: 16px;
    transition: all .3s;
}
.ka-insurance-card:hover .ka-insurance-img-wrap {
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    box-shadow: 0 4px 20px rgba(56,161,105,.12);
    transform: scale(1.05);
}
.ka-insurance-card img {
    height: 80px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}
.ka-insurance-icon-wrap {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ka-insurance-card span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #1a202c;
    display: block;
    margin-bottom: 6px;
}
.ka-insurance-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #718096;
    margin: 0;
    line-height: 1.5;
}
.ka-insurance-cta {
    text-align: center;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}
.ka-insurance-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4a5568;
    margin: 0;
    padding: 16px 28px;
    background: rgba(255,255,255,.7);
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(4px);
}
.ka-insurance-cta a {
    color: #2F855A;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed #2F855A;
    transition: color .2s;
}
.ka-insurance-cta a:hover {
    color: #276749;
}


/* ================================================================
   14. DIET GUIDE
   ================================================================ */
.ka-diet-banner {
    background:
        radial-gradient(circle at 16% 22%, rgba(255,255,255,.12), transparent 42%),
        radial-gradient(circle at 82% 78%, rgba(255,255,255,.10), transparent 36%),
        linear-gradient(135deg, #185836 0%, #2f855a 48%, #3ea56b 100%);
    padding: 90px 0;
}
.ka-diet-inner {
    max-width: 1120px;
    margin: 0 auto;
    background: rgba(10, 60, 34, .24);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 26px;
    padding: 44px 40px;
    box-shadow: 0 22px 48px rgba(0,0,0,.18);
    backdrop-filter: blur(2px);
}
.ka-diet-badge {
    display: inline-block;
    background: rgba(255,255,255,.18);
    color: #fff;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.7px;
    margin-bottom: 18px;
}
.ka-diet-content {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: center;
}
.ka-diet-copy {
    text-align: left;
}
.ka-diet-content h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}
.ka-diet-copy p {
    color: rgba(255,255,255,.85);
    font-size: 17px;
    margin-bottom: 22px;
    line-height: 1.7;
    max-width: 620px;
}
.ka-channel-line {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 24px;
    max-width: 560px;
    padding-top: 20px;
    position: relative;
}
.ka-channel-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 2px;
    border-radius: 4px;
    background: rgba(255,255,255,.45);
}
.ka-diet-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.ka-diet-actions .ka-btn {
    min-width: 250px;
    justify-content: center;
}
.ka-channel-join-btn {
    background: linear-gradient(135deg, #25D366 0%, #18b956 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 26px rgba(24,185,86,.35);
}
.ka-channel-join-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(24,185,86,.45);
}

.ka-diet-visual {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ka-diet-circle-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,.5);
    opacity: .6;
}
.ka-diet-doctor-img {
    width: 230px;
    height: 230px;
    object-fit: cover;
    /* border-radius: 50%; */
    /* border: 6px solid rgba(255,255,255,.92); */
    /* box-shadow: 0 18px 38px rgba(0,0,0,.24); */
    position: relative;
    z-index: 2;
}
.ka-diet-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.92);
    border-radius: 999px;
    padding: 8px 14px 8px 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    color: #14532d;
    font-size: 13px;
    font-weight: 700;
    max-width: calc(100% - 12px);
}
.ka-diet-chip span {
    white-space: nowrap;
}
.ka-diet-chip img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.ka-diet-chip-flag {
    top: 24px;
    right: 4px;
}
.ka-diet-chip-whatsapp {
    bottom: 18px;
    left: 6px;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
.ka-diet-chip-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0,0,0,.22);
}


/* ================================================================
   15. TEAM
   ================================================================ */
.ka-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ka-team-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all .3s;
    opacity: 0;
    transform: translateY(20px);
}
.ka-team-card.ka-visible {
    opacity: 1;
    transform: translateY(0);
}
.ka-team-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    transform: translateY(-4px);
}
.ka-team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #F0FFF4;
}
.ka-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ka-team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F0FFF4, #e6ffed);
}
.ka-team-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
    color: #1a202c;
}
.ka-team-card > p {
    font-size: 13px;
    color: #718096;
    margin-bottom: 20px;
    padding: 0 12px;
}


/* ================================================================
   16. NEWS & MEDIA
   ================================================================ */
.ka-media-section {
    background: #F0FFF4;
}
.ka-media-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.ka-media-card {
    margin: 0;
    background: #fff;
    border: 1px solid #dbe7dd;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(22, 58, 37, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.ka-media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(22, 58, 37, 0.16);
}
.ka-media-card img {
    display: flex;
    width: 100%;
    height: 220px;
    object-fit: cover;
}


/* ================================================================
   17. FAQ
   ================================================================ */
.ka-faq-list {
    max-width: 1400px;
    margin: 0 auto;
}
.ka-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .3s;
}
.ka-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.ka-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    gap: 16px;
}
.ka-faq-chevron {
    flex-shrink: 0;
    transition: transform .3s;
    color: #718096;
}
.ka-faq-item.active .ka-faq-chevron {
    transform: rotate(180deg);
    color: #2F855A;
}
.ka-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 24px;
}
.ka-faq-item.active .ka-faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.ka-faq-answer p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}


/* ================================================================
   18. FINAL CTA
   ================================================================ */
.ka-final-cta {
    background: linear-gradient(135deg, #2F855A 0%, #1a6338 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.ka-final-cta h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
}
.ka-final-cta p {
    font-size: 17px;
    color: rgba(255,255,255,.85);
    max-width: 600px;
    margin: 0 auto 32px;
}
.ka-final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ================================================================
   FOOTER
   ================================================================ */
.ka-footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 20px 0 0;
}
.ka-footer-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}
.ka-footer-compact img {
    height: 60px;
    width: auto;
}
.ka-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.ka-footer-logo img {
    height: 40px;
    margin-bottom: 16px;
}
.ka-footer-col p {
    font-size: 14px;
    line-height: 1.7;
}
.ka-footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}
.ka-footer-col ul li {
    margin-bottom: 10px;
}
.ka-footer-col ul li a {
    font-size: 14px;
    color: #a0aec0;
    transition: color .2s;
}
.ka-footer-col ul li a:hover {
    color: #38A169;
}
.ka-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0 14px;
    font-size: 12px;
}
.ka-footer-links {
    display: flex;
    gap: 24px;
}
.ka-footer-links a {
    color: #718096;
    transition: color .2s;
}
.ka-footer-links a:hover {
    color: #38A169;
}


/* ================================================================
   19. STICKY FOOTER (MOBILE)
   ================================================================ */
.ka-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    padding: 8px 12px;
    gap: 8px;
}
.ka-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s;
}
.ka-sticky-btn:hover { opacity: .9; color: #fff; }
.ka-sticky-call { background: #2F855A; }
.ka-sticky-whatsapp { background: #25D366; }
.ka-sticky-book { background: #3182ce; }

/* Sticky footer: icon-only cube buttons for Call & WhatsApp */
.ka-sticky-icon-only {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 12px;
}
.ka-sticky-book-wide {
    flex: 1;
}

/* Book Consultation button style (solid green) */
.ka-btn-book-consultation {
    background: #2F855A !important;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 12px;
}
.ka-btn-book-consultation:hover {
    background: #276749 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(47,133,90,.3);
}

/* WhatsApp white icon in booking section */
.ka-whatsapp-white-icon svg {
    fill: #fff;
}

/* Steps section CTA wrap */
.ka-steps-cta-wrap {
    text-align: center;
    margin-top: 40px;
}

/* Final CTA: icon-only cube buttons */
.ka-final-icon-only {
    flex: 0 0 52px !important;
    width: 52px;
    height: 52px;
    padding: 0 !important;
    justify-content: center;
    border-radius: 12px;
}
.ka-final-book-wide {
    flex: 1 !important;
    justify-content: center;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .ka-hero-grid {
        grid-template-columns: 1fr 380px;
        gap: 30px;
    }
    .ka-hero-title { font-size: 34px; }
    .ka-section-title { font-size: 30px; }
    .ka-featured-doctor { grid-template-columns: 350px 1fr; gap: 40px; padding: 30px; }
    .ka-featured-doctor-name { font-size: 28px; }
    .ka-team-doctors-carousel .ka-slick-prev { left: -12px; }
    .ka-team-doctors-carousel .ka-slick-next { right: -12px; }
    .ka-reports-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .ka-video-reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .ka-consult-grid { grid-template-columns: 1fr 380px; gap: 30px; }
    .ka-consult-content { padding: 28px 24px 24px; }
    .ka-consult-form-wrap { padding: 24px 20px; }
    .ka-why-grid { grid-template-columns: repeat(3, 1fr); }
    .ka-steps-grid { flex-wrap: wrap; }
    .ka-step-connector { display: none; }
    .ka-step-card { max-width: 100%; }
    .ka-about-split { grid-template-columns: 1fr; gap: 26px; }
    .ka-about-visual { max-width: 620px; width: 100%; margin: 0 auto; }
    .ka-about-copy { padding: 28px 24px; }
    .ka-about-title { font-size: 30px; }
}

@media (max-width: 768px) {
    .ka-nav { display: none; }
    .ka-hamburger { display: flex; }
    .ka-hide-mobile { display: none !important; }

    .ka-hero {
        padding: 50px 0 40px;
    }
    .ka-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ka-hero-title { font-size: 30px; }
    .ka-hero-subtitle { font-size: 16px; }


    .ka-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .ka-stat-number { font-size: 28px; }

    .ka-section { padding: 60px 0; }
    .ka-section-title { font-size: 26px; }

    .ka-featured-doctor {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px;
        text-align: center;
    }
    .ka-featured-doctor-img { max-width: 320px; margin: 0 auto; }
    .ka-featured-doctor-name { font-size: 26px; }
    .ka-featured-doctor-info { align-items: center; }
    .ka-featured-doctor-info .ka-doctor-tags { justify-content: center; }
    .ka-team-doctors-carousel .ka-slick-prev { left: 4px; width: 40px; height: 40px; }
    .ka-team-doctors-carousel .ka-slick-next { right: 4px; width: 40px; height: 40px; }
    .ka-reports-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ka-review-card { padding: 24px 20px 22px; }
    .ka-patient-reviews-carousel .slick-prev { left: -8px; width: 38px; height: 38px; }
    .ka-patient-reviews-carousel .slick-next { right: -8px; width: 38px; height: 38px; }
    .ka-video-reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .ka-awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ka-consult-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ka-consult-content { text-align: center; }
    .ka-consult-points { align-items: center; }
    .ka-consult-actions { justify-content: center; }
    .ka-consult-content h2 { font-size: 26px; }
    .ka-consult-content { border-radius: 20px; }
    .ka-consult-form-wrap { max-width: 520px; margin: 0 auto; padding: 22px 18px; }
    .ka-consultation-banner { padding: 60px 0; }

    .ka-conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .ka-about-copy {
        border-radius: 20px;
        padding: 24px 20px;
    }
    .ka-about-title { font-size: 27px; }
    .ka-about-copy p { font-size: 15px; line-height: 1.72; }
    .ka-certifications { justify-content: stretch; }
    .ka-cert-badge { flex: 1 1 220px; }

    .ka-steps-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ka-step-connector { display: none; }

    .ka-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ka-insurance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .ka-insurance-img-wrap {
        width: 100px;
        height: 100px;
        padding: 14px;
    }
    .ka-insurance-card img {
        height: 64px;
        max-width: 64px;
    }

    .ka-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ka-media-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .ka-media-card img {
        height: 190px;
    }

    .ka-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ka-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .ka-final-cta h2 { font-size: 26px; }
    .ka-final-cta-buttons { flex-direction: row; flex-wrap: nowrap; }
    .ka-final-icon-only { flex: 0 0 50px !important; width: 50px; height: 50px; padding: 0 !important; }
    .ka-final-book-wide { flex: 1 !important; white-space: nowrap; }
    .ka-sticky-icon-only { flex: 0 0 48px !important; width: 48px !important; height: 48px !important; padding: 0 !important; }
    .ka-sticky-book-wide { flex: 1 !important; white-space: nowrap; }
    .ka-diet-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .ka-diet-copy {
        text-align: center;
    }
    .ka-diet-content h2 { font-size: 29px; }
    .ka-channel-line {
        font-size: 22px;
        max-width: 100%;
    }
    .ka-channel-line::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .ka-diet-copy p {
        margin-left: auto;
        margin-right: auto;
    }
    .ka-diet-actions {
        justify-content: center;
    }
    .ka-diet-inner { padding: 34px 24px; }
    .ka-diet-visual { min-height: 290px; }
    .ka-diet-circle-ring { width: 260px; height: 260px; }
    .ka-diet-doctor-img { width: 200px; height: 200px; }
    .ka-diet-chip { font-size: 12px; }
    .ka-diet-chip img { width: 38px; height: 38px; }

    .ka-sticky-footer {
        display: flex;
    }
    .ka-footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .ka-container { padding: 0 16px; }
    .ka-hero-title { font-size: 26px; }
    .ka-hero-cta { flex-direction: column; }
    .ka-hero-cta .ka-btn { width: 100%; justify-content: center; }
    .ka-form-card { padding: 20px 14px; }
    .ka-stat-number { font-size: 24px; }
    .ka-stat-card { padding: 18px 12px; }
    .ka-consult-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .ka-consult-actions .ka-btn {
        width: 100%;
    }
    .ka-conditions-grid { grid-template-columns: 1fr; }
    .ka-about-photo-wrap { border-radius: 20px; }
    .ka-about-floating-pill {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .ka-about-floating-pill span { text-align: left; }
    .ka-about-title { font-size: 24px; }
    .ka-about-highlights li { font-size: 14px; }
    .ka-certifications { gap: 10px; }
    .ka-cert-badge {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 14px;
    }
    .ka-why-grid { grid-template-columns: 1fr; }
    .ka-awards-grid { grid-template-columns: 1fr; }
    .ka-insurance-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ka-insurance-card { padding: 28px 16px 24px; }
    .ka-insurance-img-wrap { width: 88px; height: 88px; padding: 12px; }
    .ka-insurance-card img { height: 56px; max-width: 56px; }
    .ka-insurance-card span { font-size: 15px; }
    .ka-insurance-desc { font-size: 12px; }
    .ka-team-grid { grid-template-columns: repeat(2, 1fr); }
    .ka-media-gallery { grid-template-columns: 1fr; }
    .ka-media-card img { height: 210px; }
    .ka-section-title { font-size: 24px; }
    .ka-review-card { padding: 22px 18px 20px; }
    .ka-review-text { font-size: 14px; line-clamp: 5; -webkit-line-clamp: 5; }
    .ka-review-author img { width: 44px; height: 44px; }
    .ka-patient-reviews-carousel .slick-prev,
    .ka-patient-reviews-carousel .slick-next { display: none !important; }
    .ka-faq-question { font-size: 14px; padding: 16px 18px; }
    .ka-final-cta-buttons { flex-direction: column; align-items: center; }
    .ka-final-cta-buttons .ka-btn { width: 100%; justify-content: center; }
    .ka-sticky-btn { font-size: 11px; padding: 10px 4px; }
    .ka-sticky-icon-only { flex: 0 0 44px !important; width: 44px !important; height: 44px !important; padding: 0 !important; border-radius: 12px; }
    .ka-sticky-book-wide { flex: 1 !important; white-space: nowrap; font-size: 12px; }
    .ka-final-cta-buttons { flex-direction: row !important; align-items: center; flex-wrap: nowrap; }
    .ka-final-cta-buttons .ka-btn { width: auto; }
    .ka-final-icon-only { flex: 0 0 48px !important; width: 48px !important; height: 48px !important; padding: 0 !important; }
    .ka-final-book-wide { flex: 1 !important; white-space: nowrap; }
    .ka-diet-content h2 { font-size: 25px; }
    .ka-channel-line { font-size: 18px; }
    .ka-diet-actions { flex-direction: column; }
    .ka-diet-actions .ka-btn { width: 100%; justify-content: center; }
    .ka-diet-inner { padding: 28px 18px; border-radius: 20px; }
    .ka-diet-visual {
        min-height: auto;
        display: grid;
        justify-items: center;
        gap: 10px;
        padding-top: 10px;
    }
    .ka-diet-circle-ring { width: 220px; height: 220px; }
    .ka-diet-doctor-img { width: 170px; height: 170px; }
    .ka-diet-chip {
        position: static;
        padding: 6px 10px 6px 8px;
        gap: 8px;
    }
    .ka-diet-chip span { font-size: 11px; }
    .ka-diet-chip img { width: 32px; height: 32px; }
    .ka-diet-chip-flag { top: auto; right: auto; }
    .ka-diet-chip-whatsapp { bottom: auto; left: auto; }
}