/* ==============================================
   FRONT PAGE / LANDING
   ============================================== */

/* ── Hero ── */
.hero-section {
    background: var(--white);
    overflow: hidden;
}

/* Hero name bar */
.hero-name-bar {
    background: var(--teal);
    padding: 10px 0;
}

.hero-name-bar h1 {
    color: var(--white);
    font-size: clamp(1.4rem, 5.55vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0;
}

/* Hero info row */
.hero-info-row {
    background: var(--white);
    padding: 12px 0 14px;
}

.hero-info-row .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.hero-info-row .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.hero-info-row .doctor-title {
    font-size: clamp(1.2rem, 3.47vw, 3.125rem);
    font-weight: 700;
    color: var(--teal-deep);
    margin-bottom: 4px;
}

.hero-info-row .doctor-credentials {
    font-size: clamp(0.75rem, 1.39vw, 1.25rem);
    color: var(--teal-deep);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-weight: 700;
    line-height: 1;
}

.hero-info-row .doctor-credentials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-info-row .doctor-credentials>* {
    position: relative;
    padding-left: 45px;
}

.hero-info-row .doctor-credentials>*::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 2px;
    background: var(--teal);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    padding-top: 20px;
}

/* Slider */

.hero-slider-wrap {
    position: relative;
    border-bottom: 6px solid var(--teal);
}

.hero-slider-wrap .container {
    padding-left: 0;
    padding-right: 0;

    margin-left: 0;
    margin-right: 0;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.hero-slider-track {
    position: relative;
}

.hero-slide {
    display: none;
    position: relative;
}

.hero-slide.is-active {
    display: block;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: clamp(320px, 42vw, 620px);
    object-fit: cover;
    object-position: center;
}

.hero-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.hero-slider-arrow {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 14px;
    background: rgba(17, 17, 17, 0.72);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.hero-slider-arrow:hover {
    background: rgba(17, 17, 17, 0.9);
}

@media (max-width:767px) {
	.dual-strip {
		grid-template-columns: 1fr !important;
		gap: 15px;
	}
	.dual-strip .strip-item {
		border-right: none !important;
	}
	
	.dual-strip .strip-item:last-child {
		text-align: left !important;
	}
	
    .hero-slide img {
        height: 260px;
		object-fit: contain;
    }

    .hero-slider-controls {
        bottom: 12px;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 1.2rem;
    }
}

/* Benefits */

.hero-benefits {
    padding: 40px 0;
    background: var(--white)
}

.hero-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.benefit-card {
    border: 6px solid var(--teal);
    border-radius: 40px;
    padding: 48px 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.benefit-card p {
    font-size: clamp(24px, 2.5vw, 40px);
    font-weight: 700;
    color: var(--teal);
    line-height: 1.4;
}

@media(max-width:991px) {
    .hero-benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .benefit-card {
        padding: 32px 24px;
        min-height: auto
    }

    .benefit-card p {
        font-size: 1.2rem
    }
}

/* Dual strip */

.dual-strip-bar {
    background: var(--teal-deep);
}

.dual-strip {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    padding: 15px 0;
    align-items: center;
}

.dual-strip .strip-item {
    color: var(--white);
    font-size: clamp(1.2rem, 2.5vw, 3.125rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
    border-right: 3px solid var(--white);
}

.dual-strip .strip-item:last-child {
    border-right: none;
    text-align: right;
}

/* Hero full image */
.hero-full-image {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-bottom: 4px solid var(--teal);
    display: block;
}

/* Legacy hero classes (kept for compatibility) */
.hero-content {
    padding: 30px 40px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-badge {
    background: var(--teal);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 4px;
    text-align: center;
    line-height: 1.3;
}

.hero-badge.outline {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
}

.doctor-name {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    margin-bottom: 5px;
}

.doctor-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.doctor-credentials {
    font-size: 0.68rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* No drugs bar */
.no-drugs-bar {
    padding: 16px 17px 50px;
    text-align: center;
}

.no-drugs-bar .container {
    background: var(--teal);
    border-radius: 999px;
    padding: 14px 20px;
}

.no-drugs-bar p {
    color: var(--white);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* ── Equipment section ── */
.equipment-section {
    padding: 50px 0;
}

.equipment-grid,
.equipment-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.equipment-grid-bottom {
    margin-top: 16px;
}

/* ── Phone bar ── */
.phone-bar {
    padding: 22px 0;
    text-align: center;
    margin: 4px 0 8px;
}

.phone-bar .btn-custom {
    display: block;
    width: 450px;
    max-width: 100%;
    margin: 0 auto;
    background: var(--teal);
    color: var(--white);
    text-align: center;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: clamp(24px, 2.2vw, 2.4rem);
    font-weight: 700;
    min-height: auto;
}

.phone-bar .phone-numbers {
    display: block;
    border: 3px solid var(--teal);
    color: var(--teal);
    background: var(--white);
    border-radius: 999px;
    text-align: center;
    padding: 6px 16px;
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 700;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    line-height: 1.1;
}

.phone-bar .phone-numbers a {
    color: var(--teal);
    transition: color var(--transition);
}

.phone-bar .phone-numbers a:hover {
    color: var(--teal-dark);
}

/* ── Stats ── */
.stats-section {
    padding: 40px 0;
}

.stats-since {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 42px);
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 16px;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

.stat-oval {
    width: 243px;
    height: 243px;
    border: 4px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--teal-dark);
}

.stat-label {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 600;
    color: var(--teal);
}

/* Tablet */
@media(max-width:991px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Mobile */
@media(max-width:575px) {
    .stats-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

}

/* ── Conditions ── */
.conditions-section {
    padding: var(--section-pad) 0;
}

.conditions-title {
    background: var(--teal);
    color: var(--white);
    text-align: center;
    padding: 14px 30px;
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 28px;
}

.conditions-section {
    padding: clamp(32px, 4vw, 60px) 0;
}

.conditions-title {
    margin: 0 auto clamp(28px, 3vw, 42px);
    padding: clamp(16px, 1.8vw, 24px) clamp(24px, 3vw, 40px);
    background: var(--teal);
    color: var(--white);
    text-align: center;
    border-radius: 999px;
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.conditions-grid>.condition-card {
    width: 100%;
    min-width: 0;
}

.condition-card {
    max-width: 100%;
}

.condition-card img,
.condition-card-placeholder {
    width: 100%;
    height: clamp(260px, 24vw, 380px);
    object-fit: cover;
    object-position: 50% 50%;
}

.condition-card-media {
    position: relative;
    overflow: hidden;
    border-radius: clamp(18px, 1.8vw, 28px);
    box-shadow: var(--shadow);
}

.condition-card img,
.condition-card-placeholder {
    display: block;
    width: 100%;
    height: clamp(320px, 32vw, 470px);
    object-fit: cover;
    object-position: 50% 50%;
    transition: transform .45s ease;
}

.condition-card-placeholder {
    background: var(--light-gray);
}

.condition-card-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--teal);
    padding: 10px 12px;
    text-align: center;
    transition: opacity var(--transition), transform var(--transition);
}

.condition-card-label span {
    display: block;
    color: var(--white);
    font-size: clamp(1.6rem, 1.2vw, 1.5rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.condition-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 167, 168, .9) 0%, rgba(20, 167, 168, .82) 100%);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(22px, 2.2vw, 34px);
}

.condition-card-overlay-inner {
    max-width: 250px;
}

.condition-card-overlay h3 {
    margin: 0 0 clamp(14px, 1.4vw, 20px);
    color: var(--white);
    font-size: clamp(1.6rem, 1.2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.condition-card-overlay p {
    margin: 0 0 clamp(18px, 1.6vw, 26px);
    color: var(--white);
    font-size: clamp(1.1rem, 1vw, 1.15rem);
    font-weight: 700;
    line-height: 1.15;
}

.condition-card-more {
    display: inline-block;
    color: var(--white);
    font-size: clamp(1rem, .78vw, .95rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.condition-card:hover img {
    transform: scale(1.04);
}

.condition-card:hover .condition-card-overlay {
    opacity: 1;
    visibility: visible;
}

.condition-card:hover .condition-card-label {
    opacity: 0;
    transform: translateY(100%);
}

@media(max-width:991px) {
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:767px) {
    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .condition-card img,
    .condition-card-placeholder {
        height: 340px;
    }

    .conditions-title {
        border-radius: 28px;
    }
}

/* ── Why Us ── */
.why-us-section {
    padding: clamp(36px, 5vw, 72px) 0;
    background: var(--light-gray);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1.9fr;
    gap: clamp(28px, 3vw, 56px);
    align-items: start;
}

.why-us-stars {
    background: var(--white);
    border: 10px solid var(--teal);
    border-radius: 36px;
    min-height: 510px;
    padding: clamp(34px, 3vw, 48px) clamp(22px, 2vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-us-stars-top {
    display: flex;
    align-items: center;
    gap: clamp(8px, .8vw, 14px);
    color: var(--teal);
    font-size: clamp(2.2rem, 3vw, 4rem);
    line-height: 1;
}

.why-us-stars-text {
    display: flex;
    align-items: flex-end;
    flex: 1;
    padding-top: clamp(24px, 3vw, 42px);
}

.why-us-stars-text p {
    margin: 0;
    color: var(--teal);
    font-size: clamp(2rem, 3.2vw, 4.1rem);
    font-weight: 700;
    line-height: .95;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2vw, 40px);
    padding-top: clamp(2px, .4vw, 8px);
}

.why-us-item {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: stretch;
    gap: 0;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .10));
}

.why-us-item-icon {
    background: var(--white);
    border-radius: 24px 0 0 24px;
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-item-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--black);
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-us-item-bar {
    background: var(--teal);
    border-radius: 24px;
    min-height: 98px;
    padding: 18px 34px;
    display: flex;
    align-items: center;
    margin-left: -15px;
    z-index: 2;
}

.why-us-item-bar p {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.55rem, 2.3vw, 3rem);
    font-weight: 700;
    line-height: 1;
}

@media(max-width:1199px) {
    .why-us-inner {
        grid-template-columns: 260px 1fr;
    }

    .why-us-stars {
        min-height: 420px;
        border-width: 8px;
        border-radius: 28px;
    }

    .why-us-item {
        grid-template-columns: 78px 1fr;
    }

    .why-us-item-icon {
        min-height: 82px;
        border-radius: 20px 0 0 20px;
    }

    .why-us-item-icon svg {
        width: 38px;
        height: 38px;
    }

    .why-us-item-bar {
        min-height: 82px;
        border-radius: 20px;
        padding: 16px 24px;
    }

    .why-us-item-bar p {
        font-size: clamp(1.15rem, 2vw, 2rem);
    }
}

@media(max-width:767px) {
    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-us-stars {
        min-height: auto;
        padding: 28px 22px;
        border-width: 6px;
        border-radius: 24px;
    }

    .why-us-stars-top {
        justify-content: center;
        font-size: 2rem;
    }

    .why-us-stars-text {
        justify-content: center;
        text-align: center;
        padding-top: 18px;
    }

    .why-us-stars-text p {
        font-size: 2rem;
    }

    .why-us-list {
        gap: 16px;
    }

    .why-us-item {
        grid-template-columns: 64px 1fr;
    }

    .why-us-item-icon {
        min-height: 68px;
        border-radius: 18px 0 0 18px;
    }

    .why-us-item-icon svg {
        width: 30px;
        height: 30px;
    }

    .why-us-item-bar {
        min-height: 68px;
        border-radius: 18px;
        padding: 14px 18px;
    }

    .why-us-item-bar p {
        font-size: 1.05rem;
        line-height: 1.1;
    }
}

/* ── Equipment showcase ── */
.equipment-showcase {
    padding: var(--section-pad) 0 0;
}

.equip-showcase-head {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(26px, 3vw, 42px);
}

.equip-showcase-pill {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border: 4px solid var(--teal);
    border-radius: 999px;
    overflow: hidden;
    background: var(--white);
}

.equip-showcase-pill-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 2vw, 26px) clamp(24px, 3vw, 40px);
    background: var(--teal);
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    border-radius: 50px;
}

.equip-showcase-pill-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 1.8vw, 22px) clamp(18px, 2vw, 28px);
    color: var(--teal);
    font-size: clamp(1rem, 1.35vw, 1.75rem);
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
}

.equip-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.equip-slider-track {
    display: flex;
    align-items: flex-start;
    width: max-content;
    will-change: transform;
}

.equip-slide {
    flex: 0 0 auto;
    width: clamp(260px, 28vw, 360px);
    padding: 0 clamp(12px, 1.4vw, 22px);
    text-align: center;
}

.equip-slide-media {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: clamp(220px, 24vw, 330px);
    margin-bottom: clamp(14px, 1.8vw, 22px);
}

.equip-slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.equip-slide-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    background: var(--light-gray);
}

.equip-slide-title {
    margin: 0;
    color: var(--black);
    font-size: clamp(1rem, 1.45vw, 2rem);
    font-weight: 700;
    line-height: .95;
    text-transform: uppercase;
    text-align: left;
    max-width: 280px;
    margin-inline: auto;
}

@media(max-width:991px) {
    .equip-slide {
        width: clamp(220px, 42vw, 300px);
    }

    .equip-slide-media {
        height: 260px;
    }

    .equip-slide-title {
        text-align: center;
    }
}

@media(max-width:767px) {
    .equip-slide {
        width: clamp(220px, 72vw, 280px);
        padding: 0 10px;
    }

    .equip-slide-media {
        height: 240px;
    }

    .equip-slide-title {
        max-width: 240px;
        font-size: 1.2rem;
        text-align: center;
    }
}

.equip-more-link {
    margin: clamp(26px, 3vw, 40px) 0 0;
    text-align: center;
}

.equip-more-link a {
    color: var(--teal);
    text-decoration: none;
    font-size: clamp(1rem, 1.5vw, 1.7rem);
    font-weight: 700;
}

.equip-more-link a:hover {
    text-decoration: underline;
}

@media(max-width:991px) {
    .equip-showcase-pill {
        grid-template-columns: 1fr;
        border-radius: 32px;
    }

    .equip-showcase-pill-label {
        font-size: clamp(1.5rem, 4vw, 2.4rem);
    }

    .equip-showcase-pill-text {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .equip-slide {
        flex: 0 0 50%;
    }

    .equip-slide-media {
        height: 260px;
    }

    .equip-slide-title {
        text-align: center;
    }
}

@media(max-width:767px) {
    .hero-info-row .container {
        flex-direction: column;
    }
    .equipment-showcase {
        padding: 40px 0 0;
    }

    .equip-showcase-pill {
        width: 100%;
        border-radius: 28px;
    }

    .equip-showcase-pill-label {
        padding: 18px 20px;
        font-size: 1.6rem;
    }

    .equip-showcase-pill-text {
        padding: 14px 18px;
        font-size: 1rem;
    }

    .equip-slide {
        flex: 0 0 12%;
        padding: 0 10px;
    }

    .equip-slide-media {
        height: 240px;
    }

    .equip-slide-title {
        max-width: 240px;
        font-size: 1.2rem;
        text-align: center;
    }
}

/* ── Reviews ── */

.testimonials-slider-section {
    padding: var(--section-pad) 0;
}

.testimonials-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.testimonials-title h2 {
    font-family: var(--font-main);
    font-size: clamp(17px, 3vw, 44px);
    font-weight: 800;
    color: var(--teal);
    margin: 0;
    white-space: nowrap;
}

.testimonials-line {
    flex: 1;
    height: 6px;
    background: var(--teal);
    border-radius: 999px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 auto;
    width: clamp(260px, 24vw, 340px);
    height: auto;
    padding: 0 10px;
}

.testimonial-slide img {
    width: 100%;
    height: clamp(200px, 22vw, 320px);
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
}

@media(max-width:991px) {
    .testimonial-slide {
        width: clamp(160px, 32vw, 220px);
    }
}

@media(max-width:767px) {
    .testimonial-slide {
        width: clamp(140px, 60vw, 200px);
    }
}