/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0e5c64;
    --primary-dark: #0a4349;
    --primary-light: #e6f2f3;
    --teal-dark: #0a4349;
    --teal-hero: #0e5c64;
    --header-maroon: #4a1420;
    --accent-pink: #E91E8C;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --border: #E0E0E0;
    --bg-light: #F8F9FA;
    --bg-mint: #e6f2f3;
    --white: #FFFFFF;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--white);
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header - Reference Design */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header.scrolled .header-main {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-top-bar {
    background: var(--header-maroon);
    padding: 6px 0;
}

.header-top-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-phone {
    color: var(--white);
    font-size: 16px;
}

.header-phone:hover {
    opacity: 0.9;
}

.header-main {
    background: var(--white);
    padding: 14px 0;
}

.header-main-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-main {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-num {
    width: 32px;
    height: 32px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.badge-text {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Navbar container must be flex */


/* Call button */
.header-call-btn {
    min-height: 42px;
    padding: 0 12px;
    background: #0e5c64;
    /* same light teal */
    color: #ffffff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(14, 92, 100, 0.15);
    margin-left: auto;
    /* pushes to right */
    transition: all 0.25s ease;
}

.header-call-btn .call-number {
    line-height: 1;
    white-space: nowrap;
}

/* Hover effect */
.header-call-btn:hover {
    background: #0e5c64;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(14, 92, 100, 0.25);
}

/* Hero Banner Slider - 1951px x 451px */
.hero-banner {
    margin-top: 104px;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
    height: 451px;
    max-height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-slider .hero-slider-track {
    position: relative;
    width: 100%;
    max-width: 1951px;
    margin: 0 auto;
    height: 100%;
}

.hero-slider .hero-slider-track-mobile {
    position: relative;
    width: 100%;
    max-width: 1951px;
    margin: 0 auto;
    height: 100%;
    display: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;

}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slide-mobile {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide-mobile.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
}

.hero-slider-prev-mobile,
.hero-slider-next-mobile {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease;
}

.hero-slider-prev-mobile:hover,
.hero-slider-next-mobile:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-slider-prev-mobile {
    left: 12px;
}

.hero-slider-next-mobile {
    right: 12px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-slider-prev {
    left: 16px;
}

.hero-slider-next {
    right: 16px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-slider-dots-mobile {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 8px;
    z-index: 10;
}

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

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.hero-slider-dot-mobile {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-slider-dot-mobile:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-slider-dot-mobile.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Sub Navigation below Hero */
.hero-subnav {
    background: var(--white);
    /* border-bottom: 1px solid var(--border); */
}

.subnav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 40px 0 14px 0;
    gap: 0;
}

.subnav-links li {
    display: flex;
    align-items: center;
}

.subnav-links li:not(:last-child)::after {
    content: '|';
    margin: 0 16px;
    color: var(--border);
    font-weight: 300;
}

.subnav-links a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.subnav-links a:hover {
    color: var(--primary);
}


/* Why Choose Section */
.why-choose {
    padding: 60px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.why-choose-content h2 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
    text-align: left;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.why-choose-content p {
    color:#454343;
   
    line-height: 1.7;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.feature-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    min-height: 90px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #deebee;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(8, 61, 66, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    gap: 14px;
}

.feature-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(90deg, #0e5c64 0%, #1ba4b4 100%);
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: #bdd7dc;
    box-shadow: 0 16px 30px rgba(8, 61, 66, 0.13);
}

.feature-icon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    border-radius: 14px;
    background: #ebf6f7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(14, 92, 100, 0.12);
}

.feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-box span {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #17393d;
}

.feature-box:nth-child(2)::before {
    background: linear-gradient(90deg, #1e6e9d 0%, #3ca4d4 100%);
}

.feature-box:nth-child(3)::before {
    background: linear-gradient(90deg, #0f7a63 0%, #25b189 100%);
}

.feature-box:nth-child(4)::before {
    background: linear-gradient(90deg, #875a1f 0%, #d79b3c 100%);
}

.feature-box:nth-child(2) .feature-icon {
    background: #edf6fc;
}

.feature-box:nth-child(3) .feature-icon {
    background: #ecf8f3;
}

.feature-box:nth-child(4) .feature-icon {
    background: #fff7eb;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.stat-box {
    position: relative;
    padding: 18px 14px 22px;
    border-radius: 16px;
    border: 1px solid #deebee;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(8, 61, 66, 0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-box::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #0e5c64 0%, #1ba4b4 100%);
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: #bdd7dc;
    box-shadow: 0 16px 30px rgba(8, 61, 66, 0.13);
}

.stat-value {
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: #0e5c64;
    letter-spacing: 0.2px;
}

.stat-value span {
    font-size: 18px;
    vertical-align: top;
    margin-left: 2px;
}

.stat-label {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #3b5b5f;
}

.book-sidebar {
    background: var(--primary-light);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 165, 168, 0.2);
}

.book-sidebar h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.book-sidebar .form-group {
    margin-bottom: 16px;
}

.book-sidebar label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.book-sidebar input,
.book-sidebar select {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
}

.phone-wrap {
    display: flex;
    gap: 0;
}

.phone-wrap .flag,
.phone-wrap .country-select {
    width: 48px;
    height: 42px;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 6px 0 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-wrap input {
    flex: 1;
    border-radius: 0 6px 6px 0;
}

.btn-book {
    width: 100%;
    height: 44px;
    background: #9E9E9E;
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
}

.btn-book:hover {
    background: #757575;
}

.agreement {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-secondary);
}

.agreement a {
    color: var(--primary);
}

/* Section Head */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.section-head h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
}

.subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.nav-arrows {
    display: flex;
    gap: 8px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-secondary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Before After Section */
.before-after {
    padding: 60px 0;
    background: #0e5c64;
}

.carousel {
    overflow: hidden;
    width: 100%;
    background:#0e5c64;
}

.results-row {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.results-row.no-transition {
    transition: none !important;
}

.result-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.result-images img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.result-info {
    padding: 16px;
}

.result-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.result-info p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.btn-read {
    padding: 8px 16px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.btn-read:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 900px) {
    .result-card {
        min-width: 50%;
    }
}

@media (max-width: 600px) {
    .result-card {
        min-width: 100%;
    }
}


/* Benefits Section */
/* Benefits Section */
.benefits {
    padding: 60px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.subtitle {
    color: #666;
    font-size: 14px;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}

/* Carousel */
.benefits-carousel {
    overflow: hidden;
}

.benefits-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

/* Hide scrollbar */
.benefits-row::-webkit-scrollbar {
    display: none;
}

.benefits-row {
    scrollbar-width: none;
}

.benefits-row.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.benefit-card {
    flex: 0 0 calc(25% - 18px);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.benefit-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 14px;
    font-weight: 500;
    padding: 16px;
}

.btn-read {
    margin: 0 16px 16px;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .benefit-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .benefit-card {
        flex: 0 0 100%;
    }
}


/* Symptoms Section */

/* Symptoms Section */
.symptoms {
    padding: 60px 0;
    background: #fff;
}

.symptoms-carousel {
    overflow: hidden;
}

.symptoms-row {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.symptoms-row.no-transition {
    transition: none !important;
}

/* Card */
.symptom-card {
    flex: 0 0 calc(25% - 18px);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

/* Image */
.symptom-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Title */
.symptom-card h3 {
    font-size: 14px;
    font-weight: 600;
    padding: 14px 16px 6px;
    color: #111;
}

/* Description */
.symptom-desc {
    font-size: 12px;
    color: #666;
    padding: 0 16px 12px;
    line-height: 1.5;
}

/* Footer */
.symptom-footer {
    margin-top: auto;
    padding: 12px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Inside arrows */
.symptom-nav {
    display: flex;
    gap: 6px;
}

.symptom-nav button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
}

/* Select Package button */
.btn-select {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
    border: none;
    background: #0e5c64;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.btn-select:hover {
    background: #0a4349;
}

/* Responsive */
@media (max-width: 1024px) {
    .symptom-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .symptom-card {
        min-width: 100%;
    }
}


/* Video Procedure */
.videos {
    padding: 60px 0;
    background: var(--primary);
}

.videos h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
}

.video-desc {
    color: rgba(255, 255, 255, 0.95);
    margin: 8px 0 24px;
}

.videos-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.video-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.play-btn i {
    color: var(--white);
    margin-left: 4px;
}

.video-meta {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-meta h4 {
    color: var(--white);
    font-size: 15px;
}

.btn-watch {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

/* CTA Expert */
.cta-expert {
    padding: 60px 0;
    background: transparent;
}

.cta-expert-inner {
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, #0e5c64 0%, #0a4349 100%);
    border-radius: 24px;
    padding: 0px 40px;
    box-shadow: 0 10px 40px rgba(0, 165, 168, 0.2);
    overflow: hidden;
}

.cta-image {
    flex: 0 0 auto;
    margin-right: 20px;
}

.cta-doctors {
    display: flex;
    gap: 0;
    justify-content: flex-start;
    align-items: center;
}

.cta-doctors img {
    width: 240px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    display: block;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    justify-content: space-between;
}

.cta-content h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    text-align: left;
}

.btn-talk {
    flex-shrink: 0;
    background: #1a2332;
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(26, 35, 50, 0.2);
}

.btn-talk:hover {
    background: #0f1419;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 35, 50, 0.3);

    box-shadow: 0 8px 16px rgba(26, 35, 50, 0.3);
}

/* Specialists Section */
.specialists {
    padding: 60px 0;
    background: var(--bg-light);
}

.specialists-carousel {
    overflow: hidden;
}

.specialists-row {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
    user-select: none;
    cursor: grab;
    touch-action: pan-y;
}

.specialists-row.no-transition {
    transition: none !important;
}

.specialist-card {
    flex: 0 0 calc(25% - 18px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.specialist-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.specialist-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.specialist-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.specialist-info p {
    font-size: 11px;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.doc-rating {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.doc-rating i {
    color: #F5A623;
}

.btn-book-appt {
    width: 100%;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: auto;
}

.btn-book-appt:hover {
    background: var(--primary-dark);
}

/* Social Proof */
/* Social Proof */
.social-proof {
    padding: 40px 0;
    background: #e6f2f3;
}

.proof-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: #173f4b;
    border-radius: 50px;
    padding: 10px 20px;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

/* Pill */
.proof-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 0 12px;
}

.proof-pill-summary {
    display: none;
}

.proof-logos {
    display: flex;
    align-items: center;
}

.proof-logos .proof-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    background: #fff;
    border: 2px solid #173f4b;
}

.proof-logos .proof-logo + .proof-logo {
    margin-left: -10px;
}

.proof-summary-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.proof-summary-rating {
    font-size: 18px;
    font-weight: 700;
}

.proof-summary-star {
    color: #f5b301;
    font-size: 14px;
}

.proof-summary-label {
    font-weight: 600;
    opacity: 0.95;
}

.proof-summary-count {
    font-weight: 700;
}

.proof-pill:first-child {
    padding: 0 12px;
    flex: 1;
}

.proof-pill:not(:first-child) {
    padding: 0 6px;
}


/* Logo circle */
.proof-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
    background: #fff;
    flex-shrink: 0;
}

/* Platform colors */
.proof-logo.google {
    color: #4285F4;
}

.proof-logo.practo {
    color: #2bbbad;
}

.proof-logo.facebook {
    background: #1877f2;
    color: #fff;
}

/* Text */
.proof-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.proof-rating {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    color: #f5b301;
    font-size: 12px;
}

.proof-text {
    font-size: 11px;
    color: #cfe6eb;
}


/* Responsive */
@media (max-width: 768px) {
    .proof-row {
        flex-direction: row;
        gap: 12px;
        border-radius: 28px;
        padding: 12px 16px;
        align-items: center;
        justify-content: space-between;
    }

    .proof-pill {
        display: none;
    }

    .proof-pill-summary {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0;
        width: 100%;
    }

    .proof-logos .proof-logo {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .proof-logos .proof-logo + .proof-logo {
        margin-left: -8px;
    }

    .proof-summary-text {
        font-size: 12.5px;
        gap: 5px;
    }

    .proof-summary-rating {
        font-size: 17px;
    }
}


/* Reviews Section */
.reviews {
    padding: 60px 0;
}

/* Rating Badge */
.reviews-rating-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.rating-content {
    background: linear-gradient(135deg, #0e5c64 0%, #0a4349 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-number {
    font-size: 20px;
    font-weight: 700;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-stars {
    font-size: 14px;
}

.rating-reviews {
    font-size: 12px;
    opacity: 0.9;
}

/* Reviews Carousel */
.reviews-carousel {
    overflow: hidden;
}

.reviews-row {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.reviews-row.no-transition {
    transition: none !important;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.review-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.review-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.review-stars {
    color: #F5A623;
    font-size: 12px;
    margin-bottom: 4px;
}

.review-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Quick Questions */
.quick-questions {
    padding: 60px 0;
    background: var(--primary);
}

.quick-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.quick-left h2 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.quick-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.quick-q i {
    font-size: 12px;
}

.quick-a {
    max-height: 0;
    overflow: hidden;
}

.quick-item.active .quick-a {
    max-height: 150px;
}

.quick-a p {
    padding: 0 20px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.quick-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
}

.quick-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-submit-q {
    height: 44px;
    background: #9E9E9E;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

/* Ask Expert Section */
.ask-expert {
    padding: 30px 0;
    background: linear-gradient(135deg, #0e5c64 0%, #0a4349 100%);
    color: white;
}

.ask-expert-content {
    display: flex;
    flex-direction: column;

}

.ask-expert-header {
    text-align: left;
}

.ask-expert-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-badge {
    background: #FFB800;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.expert-offer {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
}

.expert-offer i {
    font-size: 16px;
}

/* New Layout */
.ask-expert-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.ask-expert-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.benefits-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefits-list li i {
    font-size: 22px;
    color: #FFB800;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefits-list h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.benefits-list p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.ask-expert-form-container {
    display: flex;
    flex-direction: column;
}

.ask-expert-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Baldness Grade Section */
.baldness-grade-section {
    margin: 15px 0;
}

.grade-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
}

.grade-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.grade-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 70px;
}

.grade-btn:hover {
    background: #e8f5f5;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(14, 92, 100, 0.15);
}

.grade-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.grade-btn.active .grade-number {
    background: white;
    color: var(--primary);
}

.grade-btn.active .grade-text {
    color: white;
}

.grade-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.grade-text {
    font-size: 10px;
    font-weight: 500;
    color: #555;
    text-align: center;
    line-height: 1.3;
}

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

.form-input {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 12px 15px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.form-input option {
    background: #0a4349;
    color: white;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0 12px;
    transition: all 0.3s ease;
}

.phone-input-group:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.country-flag {
    font-size: 18px;
}

.country-code {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 8px;
}

.phone-input {
    background: transparent;
    border: none;
    padding: 12px 0;
    color: white;
    flex: 1;
}

.phone-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.phone-input:focus {
    outline: none;
}

.question-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 12px 15px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    resize: vertical;
    transition: all 0.3s ease;
    min-height: 100px;
}

.question-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.question-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.submit-btn-expert {
    background: #FFB800;
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn-expert:hover {
    background: #FFC933;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.submit-btn-expert:active {
    transform: translateY(0);

    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.form-input option {
    background: #0e5c64;
    color: white;
}

.phone-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0 10px;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Modal Popup */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
    position: relative;
    width: 420px;
    max-width: calc(100% - 40px);
    background: #006d5b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.modal-banner img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.modal-body {
    padding: 20px 20px 26px 20px;
    color: #333;
}

.modal-body h3 {
    margin: 8px 0 6px 0;
    font-size: 16px;
    color: #fff;
}

.modal-desc {
    color: #666;
    font-size: 13px;
    margin-bottom: 14px;
    color: #ffffff;
}

.modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #ffffff;
    z-index: 3;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"],
.modal-form select {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 12px;
    font-size: 14px;
}

.modal-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 12px;
}

.modal-phone .flag {
    font-size: 18px;
        color: #fff;
}

.modal-phone .code {
    color: #ffffff;
    font-size: 14px;
}

.modal-phone input[type="tel"] {
    border-bottom: none;
    margin-bottom: 0;
    padding-left: 8px;
}

.modal-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 26px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: all 0.3s ease;
}

.modal-submit:hover {
    background: #1f3f40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 95, 96, 0.3);
    color: #ffffff;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.modal-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    background: #e0e0e0;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 26px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.modal-cancel:hover {
    background: #d0d0d0;
    border-color: #999;
    transform: translateY(-2px);
}

.modal-cancel:active {
    transform: translateY(0);
}

.modal-note {
    margin-top: 12px;
    font-size: 13px;
    color: #444;
    text-align: center;
}

@media (max-width: 600px) {
    .modal-dialog {
        width: 92%;
    }

    .modal-banner img {
        height: 100px;
    }
}

.phone-input-group:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.country-flag {
    font-size: 16px;
}

.country-code {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 13px;
}

.phone-input {
    background: transparent;
    border: none;
    flex: 1;
    padding: 12px 5px;
}

.phone-input:focus {
    outline: none;
    box-shadow: none;
}

.phone-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn-expert {
    background: #E0E0E0;
    color: #333;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.submit-btn-expert:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn-expert:active {
    transform: scale(0.98);
}

/* FAQs */
.faqs {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8f9 0%, #e3f2fd 100%);
}

.faqs h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.faqs .highlight {
    color: var(--primary);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-q:hover {
    background: #fafafa;
}

.faq-item.active .faq-q {
    background: var(--white);
    color: var(--text-primary);
}

.faq-q i {
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-a {
    max-height: 400px;
}

.faq-a p {
    padding: 0 24px 24px;
    font-size: 14px;
    line-height: 1.8;
    color: #c4554b;
    margin: 0;
}

.faq-item.active .faq-a p {
    padding-top: 20px;
}

/* Locations */
.locations {
    padding: 60px 0;
    background: var(--bg-light);
}

.locations h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}

.locations-wrap {
    display: flex;
    gap: 48px;
}

.city-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.city-tab {
    padding: 10px 20px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.city-tab.active,
.city-tab:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.branches-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.branch-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.branch-btn:hover {
    border-color: var(--primary);
}

.branch-btn i {
    font-size: 12px;
    color: var(--text-light);
}

/* Awards */
.awards {
    padding: 40px 0;
}

.awards-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.award-badge {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--teal-dark);
    color: var(--white);
    padding: 20px 0 24px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    width: 100px;
}
.footer-logo img {
    width: 100px;
    height: auto; 
    background:white;
}

.footer-col p {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 4px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-banner {
        height: auto;
        min-height: 400px;
        aspect-ratio: 1951 / 451;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-row {
        gap: 0;
        padding: 10px 16px;
    }

    .proof-pill {
        padding: 0 10px;
    }

    .proof-logo {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .proof-rating {
        font-size: 13px;
    }

    .proof-text {
        font-size: 10px;
    }

    .results-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-row,
    .symptoms-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card {
        flex: 0 0 calc(50% - 12px);
    }

    .specialists-row {
        gap: 16px;
    }

    .specialist-card {
        flex: 0 0 calc(33.333% - 12px);
    }

    .symptom-card {
        flex: 0 0 calc(50% - 12px);
    }

    .videos-row {
        grid-template-columns: 1fr;
    }

    .cta-expert-inner {
        flex-direction: column;
        padding: 30px 24px;
        gap: 24px;
        align-items: flex-start;
    }

    .cta-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
    }

    .cta-content h3 {
        font-size: 18px;
        text-align: left;
    }

    .cta-image {
        margin-right: 0;
    }

    .cta-doctors img {
        width: 200px;
    }

    .btn-talk {
        width: 100%;
        text-align: center;
    }

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

    .locations-wrap {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .header-top-bar {
        padding: 8px 0;
    }

    .header-main-content {
        flex-wrap: wrap;
    }

    .badge-text {
        font-size: 11px;
    }

    .subnav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .subnav-links li:not(:last-child)::after {
        display: none;
    }

    .hero-banner {
        margin-top: 120px;
        min-height: 350px;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

    .results-row,
    .benefits-row,
    .symptoms-row,
    .reviews-row {
        grid-template-columns: 1fr;
    }

    .specialist-card {
        flex: 0 0 100%;
    }

    .symptom-card {
        flex: 0 0 100%;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .specialists-row {
        gap: 12px;
    }

    .section-head {
        flex-direction: column;
        gap: 16px;
    }

    .proof-row {
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}




.form-card {
    width: 340px;
    background: #0e5c64;
    border-radius: 18px;
    padding: 28px 24px 24px;
    color: #fff;
}

.form-card h2 {
    margin: 0 0 24px;
    font-size: 19px;
    font-weight: 700;
}

.field {
    margin-bottom: 22px;
}

.field input,
.field select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    padding: 10px 0;
    font-size: 15px;
    color: #fff;
    outline: none;
}

.field input::placeholder {
    color: #e6ffff;
}

.phone-field {
    display: flex;
    align-items: center;
    gap: 12px;
}

.country-code {
    font-size: 14px;
    white-space: nowrap;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.phone-field input {
    flex: 1;
}

.select-field select {
    appearance: none;
    cursor: pointer;
}

.select-field {
    position: relative;
}

.select-field::after {
    content: "▾";
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 18px;
    pointer-events: none;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px 0;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    color: #202020;
    font-size: 15px;
    cursor: pointer;
}

.callback {
    margin-top: 22px;
    background: #dff3ef;
    color: #006d66;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.callback .icon {
    background: #006d66;
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

/* ===== Grade of Baldness Section ===== */

.baldness-field {
    margin-bottom: 22px;
}

.grade-label {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #e6ffff;
}

.baldness-options {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.baldness-options label {
    cursor: pointer;
    text-align: center;
}

.baldness-options input {
    display: none;
}

.baldness-options img {
    width: 50px;
    display: block;
    margin: 0 auto 4px;
    opacity: 0.75;
    transition: all 0.25s ease;
}

.baldness-options span {
    font-size: 13px;
    color: #e6ffff;
}

/* Active / Selected */
.baldness-options input:checked+img {
    opacity: 1;
    transform: scale(1.15);
}









.procedure-section {
    padding: 80px 0;
    background: #0b494f;
}

.section-head.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-head h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-head .subtitle {
    font-size: 15px;
    color: #666;
}

.procedure-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.procedure-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.procedure-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: #0e5c64;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.step-number {
    font-size: 12px;
    font-weight: 600;
    color: #0e5c64;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.procedure-step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.procedure-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .procedure-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .ask-expert-wrapper {
        gap: 30px;
    }

    .ask-expert-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .cta-expert-inner {
        flex-direction: column;
        padding: 20px 16px;
        gap: 16px;
        border-radius: 16px;
        align-items: center;
    }

    .cta-content {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width: 100%;
    }

    .cta-content h3 {
        font-size: 16px;
        text-align: center;
    }

    .cta-image {
        margin-right: 0;
    }

    .cta-doctors img {
        width: 160px;
    }

    .btn-talk {
        width: 100%;
        text-align: center;
    }

    .procedure-steps {
        grid-template-columns: 1fr;
    }

    .procedure-step {
        text-align: left;
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .step-icon {
        margin: 0;
        flex-shrink: 0;
    }

    /* Ask Expert Responsive */
    .ask-expert {
        padding: 40px 0;
    }

    .ask-expert-header h2 {
        font-size: 22px;
    }

    .ask-expert-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ask-expert-image {
        order: -1;
    }

    .ask-expert-image img {
        max-height: 300px;
        object-fit: contain;
    }

    .ask-expert-form {
        gap: 12px;
    }

    .form-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .phone-input-group {
        padding: 0 10px;
    }

    .question-textarea {
        min-height: 100px;
        padding: 10px 12px;
    }

    .submit-btn-expert {
        padding: 10px 24px;
        font-size: 13px;
    }
}
.brand-logo{
    width: 50px;
}
.visually-hidden.baldness{
    color: #ffffff;
}
