/* ── CLEAN HERO ── */
.clean-hero {
    position: relative;
    min-height: 75vh;
    
    display: flex;
    align-items: center;
    overflow: hidden;
}

.clean-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(253, 252, 252, 1) 0%, rgba(253, 252, 252, 0.85) 45%, rgba(253, 252, 252, 0) 100%);
    z-index: 1;
}

.ch-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    animation: fadeRight 1s ease-out;
}

.ch-content {
    max-width: 800px;
}

.ch-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 16px;
    display: inline-block;
    background: color-mix(in srgb, var(--teal) 10%, transparent);
    padding: 6px 16px;
    border-radius: 30px;
}

.ch-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 3.5rem);
    color: var(--teal-dark);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 600;
}

.ch-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.4;
}

.ch-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--teal) 30%, transparent);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
}

/* ── OVERLAPPING INFO STRIP ── */
.info-strip {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: -50px auto 60px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.is-item {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: center;
    border-right: 1px solid var(--light-gray);
    padding: 0 30px;
}

.is-item:last-child {
    border-right: none;
}

.is-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--light-gray);
    color: var(--teal);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.3s;
}

.is-item:hover .is-icon {
    background: var(--teal);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.is-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 700;
}

.is-text p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ── PAGE LAYOUT ── */
.page-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 32px 100px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}

/* Sidebar */
.sidebar-container {
    position: sticky;
    top: 120px;
}

.nav-widget {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--light-gray);
    margin-bottom: 30px;
}

.nw-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nw-title::before {
    content: '';
    display: block;
    width: 6px;
    height: 24px;
    background: var(--teal);
    border-radius: 4px;
}

.sn-links {
    list-style: none;
}

.sn-links li {
    margin-bottom: 12px;
}

.sn-links li:last-child {
    margin-bottom: 0;
}

.sn-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--light-gray);
    color: var(--gray);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.sn-links a::after {
    content: '→';
    opacity: 0;
    transition: all 0.3s;
    transform: translateX(-10px);
}

.sn-links a:hover,
.sn-links a.active {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--teal) 30%, transparent);
    padding-left: 24px;
}

.sn-links a:hover::after,
.sn-links a.active::after {
    opacity: 1;
    transform: translateX(0);
}

.help-widget {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    border-radius: 24px;
    padding: 30px;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 30px color-mix(in srgb, var(--teal) 20%, transparent);
}

.hw-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.hw-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.hw-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.hw-phone {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.hw-phone:hover {
    color: #fff;
}

/* Main Content */
.main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.main-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--teal);
    margin: 40px 0 20px;
    font-weight: 600;
}

.main-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.content-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.cg-large {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.cg-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cg-small {
    width: 100%;
    height: 190px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Accordion */
.accordion-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.acc-item {
    background: #fff;
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.acc-item:hover {
    border-color: var(--teal-light);
}

.acc-header {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.15rem;
    transition: all 0.3s;
    background: #fff;
}

.acc-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 300;
    transition: all 0.3s;
}

.acc-header.active {
    background: var(--teal);
    color: #fff;
}

.acc-header.active .acc-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: rotate(45deg);
}

.acc-content {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.acc-header.active+.acc-content {
    padding: 24px 28px;
    max-height: 800px;
    opacity: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.acc-content p {
    margin: 0 0 16px;
    font-size: 1.05rem;
}

.acc-content p:last-child {
    margin-bottom: 0;
}

.acc-content ul {
    padding-left: 20px;
    margin-bottom: 0;
    color: var(--gray);
}

.acc-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ── CTA ── */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 10%, transparent) 0%, transparent 60%);
}

.cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold-light);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 0 20px color-mix(in srgb, var(--gold) 15%, transparent);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--gold) 40%, transparent);
    border-color: var(--gold);
}

.btn-white {
    background: #fff;
    color: var(--teal-dark);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-container {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .nav-widget {
        margin-bottom: 0;
    }

    .info-strip {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
    }

    .is-item {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
        padding: 10px 0;
        width: 100%;
    }

    .is-item:last-child {
        border-bottom: none;
    }
}

@media(max-width:768px) {


    .ch-content h1 {
        font-size: 2.5rem;
    }

    .sidebar-container {
        grid-template-columns: 1fr;
    }

    .content-gallery {
        grid-template-columns: 1fr;
    }

    .cg-stack {
        display: none;
    }


}



/* 
Card footer */
.gs-doctor-section {
    width: 100%;
    background-color: #dfefff;
    padding: 60px 0;
    overflow: hidden;
}

.gs-doctor-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 20px;
    gap: 40px;
}

.gs-doctor-content {
    flex: 0 0 calc(60% - 20px);
    max-width: calc(60% - 20px);
}

.gs-doctor-content h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.gs-doctor-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 30px;
}



.gs-doctor-carousel-wrap {
    flex: 0 0 calc(40% - 20px);
    max-width: calc(40% - 20px);
    position: relative;
}

.gs-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
}

.gs-carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.gs-carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

/* Card styling similar to index.css */
.doctor-card-new {
    position: relative;
    padding: 30px 20px 20px;
    text-align: center;
    background: #00C9A7;
}
.doctor-card-new:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
.doc-image-wrap {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--light-gray), var(--teal-light));
    position: relative;
}
.doc-image-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}
.doc-name {
    font-size: 1.25rem;
    color: var(--white);
    margin: 0 0 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.doc-address {
    font-size: 0.9rem;
    color: #d8d8d8;
    margin: 0 0 15px;
}
.doc-specialty-tag {
    display: inline-block;
    padding: 6px 12px;
    background: color-mix(in srgb, var(--teal) 90%, transparent);
    /* background-color: #003a70; */
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}
.doc-card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.548);
    gap: 15px;
}
.footer-action {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #efefef;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-action:hover {
    color: var(--teal-dark);
}
.footer-action svg {
    color: var(--teal);
}
.footer-divider {
    width: 1px;
    height: 15px;
    background: #e0e0e0;
}
.card-share-wrap {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}
.share-icon-btn {
    background: #f5f7fa;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    transition: all 0.3s;
}
.share-icon-btn:hover {
    background: var(--light-gray);
    color: var(--teal-dark);
}
.social-icons-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}
.card-share-wrap:hover .social-icons-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}
.social-icons-dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
}
.social-icons-dropdown a[aria-label="Facebook"] { background: #3b5998; }
.social-icons-dropdown a[aria-label="Instagram"] { background: #e1306c; }
.social-icons-dropdown a[aria-label="WhatsApp"] { background: #25d366; }
.social-icons-dropdown a[aria-label="LinkedIn"] { background: #0077b5; }
.social-icons-dropdown a[aria-label="X"] { background: #000; }

.gs-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.gs-control-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.gs-control-btn:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

@media (max-width: 991px) {
    .gs-doctor-content, .gs-doctor-carousel-wrap {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    .gs-doctor-carousel-wrap {
        max-width: 400px;
        margin: 0 auto;
    }
}