:root {
    --primary-color: #c98516;
    /* Golden Orange */
    --primary-hover: #b5760b;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-color: #F8F2E5;
    /* Updated background */
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-header: 'Montserrat', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

@media (min-width: 992px) {
    .hero {
        background-image: url('assets/images/bg-livercure.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Utilities */
.container {
    max-width: 1400px;
    /* Increased to allow wider cards */
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, #d89320 0%, #b8770c 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 133, 22, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8770c 0%, #d89320 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 133, 22, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background: rgba(201, 133, 22, 0.05);
    transform: translateY(-2px);
}

/* Header */
.header {
    padding: 10px 0;
    position: relative;
    z-index: 100;
    font-family: var(--font-header);
}

.header h1,
.header .btn {
    font-family: var(--font-header);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text h1 span {
    color: var(--primary-color);
    font-weight: 400;
}

.logo-text p {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav a i {
    font-size: 12px;
    color: var(--text-light);
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 60px 0 0;
    /* Background ends exactly with stats */
    position: relative;
    z-index: 10;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-top: -90px;
}

.subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.subtitle {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.divider {
    flex: 1;
    height: 1px;
    background: rgba(201, 133, 22, 0.3);
    position: relative;
    max-width: 100px;
}

.diamond {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    transform: rotate(45deg);
    top: -2.5px;
    left: 50%;
}

.doctor-name {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.qualifications {
    margin-bottom: 25px;
}

.qualifications h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.qualifications h3:last-child {
    font-weight: 500;
    color: var(--text-light);
}

.description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-image-area {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 0;
}

.bg-circle {
    position: absolute;
    top: 50%;
    left: calc(50% + 40px);
    transform: translate(-50%, -50%);
    width: 120%;
    max-width: 750px;
    z-index: 1;
}

.doctor-img {
    position: relative;
    z-index: 2;
    width: 70%;
    max-width: none;
    margin-bottom: 30px;
    object-fit: contain;
    /* Adding subtle drop shadow for depth */
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.badge-img {
    position: absolute;
    right: -60px;
    bottom: 34px;
    width: 300px;
    z-index: 3;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

/* Stats Section */
.stats-section {
    position: relative;
    margin-top: -90px;
    /* Offset matches the removed padding to keep visual position */
    z-index: 20;
}

.stats-banner {
    background: var(--white);
    border-radius: 16px;
    padding: 15px 40px;
    /* Reduced vertical padding to keep overall height the same */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
}

.stat-icon img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.stat-icon img.exp-icon {
    width: 130px;
    height: 130px;
}

.stat-info h4 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

.stat-divider {
    height: auto;
    width: 100%;
    max-width: 150px;
    display: block;
    margin: 5px 0 10px 0;
}

.stat-info p {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
    font-family: var(--font-body);
}

.divider-line {
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
}

/* Professional Journey */
.professional-journey {
    padding: 80px 0;
}

.professional-journey .subtitle {
    margin-bottom: 10px;
    justify-content: center;
    display: flex;
}

.section-title {
    font-size: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav ul {
        gap: 15px;
    }

    .doctor-name {
        font-size: 42px;
    }

    .hero-container {
        gap: 20px;
    }

    .stats-banner {
        padding: 25px 20px;
    }
}

@media (max-width: 860px) {
    .nav {
        display: none;
        /* Mobile menu can be toggled via JS */
    }

    .nav ul, .nav.active ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .nav ul li {
        width: 100%;
        text-align: center;
    }

    .nav ul li a {
        justify-content: center;
        padding: 8px 0;
        width: 100%;
        font-size: 16px;
    }

    .header .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-top: 0;
    }

    .subtitle-wrapper {
        justify-content: center;
    }

    .description {
        margin: 0 auto 30px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-area {
        margin-top: 40px;
        width: 100%;
        justify-content: center;
    }

    .image-wrapper {
        height: auto;
        position: relative;
    }

    .bg-circle {
        left: 50%;
        top: 45%;
        width: 130%;
    }

    .doctor-img {
        width: 85%;
        margin-bottom: 50px;
        transform: translateX(-10px); /* slightly top left adjustment for visual centering */
    }

    .badge-img {
        display: block;
        right: -35px;
        bottom: 60px;
        width: 180px;
        left: auto;
        transform: none;
    }

    .stats-banner {
        flex-direction: column;
        gap: 30px;
        padding: 40px;
    }

    .divider-line {
        width: 100%;
        height: 1px;
    }

    .molecule-bg img {
        width: 400px;
        right: -50px;
    }

    /* Why Approach Section Mobile Responsiveness */
    .approach-inner {
        flex-direction: column;
    }
    .approach-text-col {
        padding: 50px 24px;
        align-items: center;
        text-align: center;
    }
    .approach-title {
        font-size: 38px;
    }
    .approach-steps {
        flex-direction: column;
        align-items: center;
        gap: 35px;
        width: 100%;
    }
    .approach-step-group {
        align-items: center;
        text-align: center;
        width: 100%;
        min-width: unset;
    }
    .approach-step {
        justify-content: center;
    }
    .step-connector {
        display: none;
    }
    .step-details p {
        max-width: 280px;
        margin: 0 auto;
    }
    .approach-image-col {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding-bottom: 50px;
    }
    .hand-liver-img {
        width: 100%;
    }
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background-color: #FEFBF6;
}

.our-story-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-image {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image img {
    width: 100%;
    max-width: 600px;
    /* Gives it room to grow large */
    height: auto;
    display: block;
    object-fit: contain;
    transform: scale(1.1);
    /* Scales it up a bit more */
}

.story-content {
    flex: 1;
}

.story-content .subtitle {
    margin-bottom: 15px;
}

.story-content .section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 600;
}

.story-content .section-title span {
    color: var(--primary-color);
}

.story-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.section-header-styled {
    margin-bottom: 60px;
}

.styled-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.header-divider {
    height: auto;
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 5px auto 10px auto;
}

.styled-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 0.85;
    /* Reduced line height */
    margin-bottom: 10px;
}

.title-dark {
    color: #162432;
}

.title-gold {
    color: var(--primary-color);
}

.styled-desc {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #5d6771;
    line-height: 1.5;
    margin-top: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* Reduced gap to give cards more width */
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #EBE4D6;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px auto;
    background: #FEFBF6 !important;
    border-radius: 45px !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.feature-card:first-child .feature-icon img {
    transform: translateX(8px);
}

.feature-card h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Cormorant', serif;
    margin-bottom: 5px;
    line-height: 1.2;
}

.feature-divider {
    height: auto;
    width: 100%;
    max-width: 120px;
    display: block;
    margin: 10px auto 15px auto;
}

.feature-card p {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .our-story-container {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .feature-card {
        padding: 15px 8px;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 10px auto;
        border-radius: 20px !important;
    }
    
    .feature-card h3 {
        font-size: 16px;
        word-break: break-word;
        margin-bottom: 5px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
}

.custom-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Trusted Care Banner Section */
.trusted-care-banner {
    padding: 0 0 100px 0;
    background-color: #FEFBF6;
}

.trusted-banner-content {
    display: flex;
    align-items: center;
    background-color: #FCF7EC;
    border-radius: 15px;
    padding: 40px 60px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #EBE4D6;
    gap: 50px;
}

.trusted-icon img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.trusted-divider {
    width: 2px;
    height: 100px;
    background-color: #E2D3B8;
}

.trusted-text {
    flex: 1;
}

.trusted-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.trusted-text p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #5d6771;
    margin: 0;
}

/* ===== Why Approach Section ===== */
.why-approach {
    background: #111111;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.approach-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 500px;
}

.approach-text-col {
    flex: 1;
    padding: 65px 50px 65px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.approach-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.approach-title-divider {
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 42px;
    position: relative;
}

.approach-title-divider::after {
    content: '◆';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-55%);
    color: var(--primary-color);
    font-size: 8px;
}

/* Steps row — icon+number on top, details below */
.approach-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: nowrap;
}

/* Each step = icon+number row then text block stacked below */
.approach-step-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    min-width: 210px;
}

.approach-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.step-icon-wrap {
    width: 140px;
    height: 140px;
    border: 2.5px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 133, 22, 0.10);
    flex-shrink: 0;
}

.step-icon-wrap img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.step-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.step-details p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #999999;
    line-height: 1.6;
    margin: 0;
    max-width: 185px;
}

/* Dotted arrow connector between groups */
.step-connector {
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin-top: 20px; /* aligns with icon center */
    flex-shrink: 0;
}

.step-connector svg {
    width: 110px;
    height: 20px;
    opacity: 0.6;
}

/* Image column — flush right, sits inside dark bg */
.approach-image-col {
    flex: 0 0 500px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111111;
}

.hand-liver-img {
    width: 130%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ===== Conditions We Treat Section ===== */
.conditions-section {
    background-color: #FEFBF6;
    padding: 90px 0 100px;
}

.conditions-header {
    text-align: center;
    margin-bottom: 50px;
}

.conditions-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.conditions-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
}

/* Outer rounded wrapper */
.conditions-grid-wrap {
    background: #FBF6ED;
    border: 1.5px solid #E8DECA;
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 4px 30px rgba(180, 140, 60, 0.08);
}

/* 6-column grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

/* Each card */
.condition-card {
    padding: 30px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid #E8DECA;
    transition: background 0.3s ease;
    border-radius: 18px;
}

.condition-card:last-child {
    border-right: none;
}

.condition-card:hover {
    background: #FFF8EE;
}

/* Icon image */
.condition-img-wrap {
    width: 160px;
    height: 160px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.condition-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Condition name */
.condition-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Description */
.condition-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #777777;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Read More link */
.condition-read-more {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.condition-read-more span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 13px;
    transition: background 0.2s ease;
}

.condition-read-more:hover {
    color: var(--primary-color);
}

.condition-read-more:hover span {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 1100px) {
    .conditions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .condition-card:nth-child(3n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .condition-card {
        border-right: none;
        border-bottom: 1px solid #E8DECA;
    }
    .condition-card:nth-child(2n) {
        border-right: none;
    }
    .condition-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 650px) {
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    .condition-card {
        border-right: none;
        border-bottom: 1px solid #E8DECA;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .condition-card:last-child {
        border-bottom: none;
    }
}

/* ===== Philosophy & Reviews Section ===== */
.philosophy-reviews-section {
    background-color: var(--bg-color);
    padding: 80px 0 100px;
}

/* Top Split Layout */
.phil-rev-top {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 70px;
}

.phil-rev-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Philosophy Column (Left) */
.phil-col {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phil-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 110px;
    line-height: 1;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: -20px;
    margin-top: -15px;
}

.phil-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 28px;
}

.phil-author {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* Vertical Split Line */
.phil-rev-divider {
    width: 1px;
    background-color: #E8DECA;
    align-self: stretch;
}

/* Reviews Column (Right) */
.rev-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reviews-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.review-card {
    background: #ffffff;
    border: 1px solid #E8DECA;
    border-radius: 16px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(180, 140, 60, 0.04);
    min-height: 310px;
}

.review-stars {
    color: #f1c40f;
    font-size: 18px;
    margin-bottom: 14px;
    display: flex;
    gap: 4px;
}

.review-body {
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    font-weight: 400;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #F6EFE2;
    padding-top: 14px;
}

.review-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.review-google-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Bottom Stats Banner ===== */
.phil-rev-stats-wrap {
    background: #FBF6ED;
    border: 1.5px solid #E8DECA;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 4px 24px rgba(180, 140, 60, 0.05);
}

.phil-rev-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.phil-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-right: 1.5px solid #E8DECA;
    padding: 0 10px;
}

.phil-stat-item:last-child {
    border-right: none;
}

.phil-stat-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(201, 133, 22, 0.1);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phil-stat-icon i {
    color: var(--primary-color);
    font-size: 32px;
}

.phil-stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phil-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}

.phil-stat-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    white-space: nowrap;
}

.phil-stat-lbl-large {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .phil-rev-top {
        flex-direction: column;
        gap: 40px;
    }
    .phil-col {
        flex: 1;
        width: 100%;
    }
    .phil-rev-divider {
        display: none;
    }
    .phil-rev-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }
    .phil-stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .reviews-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .phil-rev-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .phil-stat-item {
        border-right: none;
        justify-content: flex-start;
        padding-left: 20px;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    background-color: #FEFBF6;
    padding: 100px 0;
    overflow: hidden;
}

.faq-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left side Column */
.faq-left-col {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-subtitle-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.faq-tag-divider {
    display: flex;
    align-items: center;
    width: 80px;
    margin-bottom: 24px;
    position: relative;
}

.faq-tag-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--primary-color);
    z-index: 1;
}

.faq-tag-divider span {
    background-color: #FEFBF6;
    padding: 0 6px;
    color: var(--primary-color);
    font-size: 8px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.faq-title .gold-text {
    color: var(--primary-color);
}

.faq-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.faq-cta-btn {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 30px;
    margin-bottom: 45px;
}

.faq-cta-btn i {
    font-size: 17px;
    margin-left: 4px;
}

/* Headphone support block */
.faq-still-questions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.faq-headset-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(201, 133, 22, 0.05);
    flex-shrink: 0;
}

.faq-headset-wrap img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.faq-still-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.faq-still-info p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666666;
    margin: 0;
}

.faq-still-info p span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

/* Middle side Question Mark Column */
.faq-middle-col {
    flex: 0 0 28%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-qmark-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(201, 133, 22, 0.15));
    transition: transform 0.2s ease-in-out;
}

.faq-qmark-img:hover,
.faq-qmark-img:active {
    animation: faq-shake 0.5s ease-in-out infinite;
}

@keyframes faq-shake {
    0% { transform: translate(0, 0) rotate(0deg); }
    10% { transform: translate(-3px, 1px) rotate(-1deg); }
    20% { transform: translate(1px, -2px) rotate(1deg); }
    30% { transform: translate(-3px, 2px) rotate(0deg); }
    40% { transform: translate(2px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(2px, 1px) rotate(0deg); }
    70% { transform: translate(-2px, -1px) rotate(1deg); }
    80% { transform: translate(3px, 2px) rotate(-1deg); }
    90% { transform: translate(-1px, -2px) rotate(1deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Right side Accordion Column */
.faq-right-col {
    flex: 0 0 40%;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #E8DECA;
    border-radius: 14px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 6px 24px rgba(201, 133, 22, 0.06);
}

.faq-question {
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 15px;
    user-select: none;
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #FBF6ED;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(0.85, 0, 0.15, 1);
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555555;
    line-height: 1.65;
    margin: 0;
    padding: 0 26px 22px;
    border-top: 1px solid #FBF6ED;
}

/* Responsive FAQ */
@media (max-width: 1100px) {
    .faq-grid {
        flex-direction: column;
        gap: 50px;
    }
    .faq-left-col,
    .faq-middle-col,
    .faq-right-col {
        flex: 1;
        width: 100%;
    }
    .faq-middle-col {
        display: none; /* Hide question mark on smaller displays to save space */
    }
}

/* ===== Book Appointment Section ===== */
.book-appointment-section {
    background-color: #FEFBF6;
    padding: 0;
    width: 100%;
}

.appointment-grid {
    display: flex;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

/* Left: Banner Image with Overlay Text */
.appointment-image-col {
    flex: 1.2;
    position: relative;
    min-height: 480px;
    overflow: hidden;
}

.appointment-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.appointment-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 16, 8, 0.9) 0%, rgba(26, 16, 8, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 45px 50px;
    color: #ffffff;
}

.appointment-overlay-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #ffffff !important;
}

.appointment-overlay-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin: 0;
}

/* Right: Form Column (Gold/Beige Theme) */
.appointment-form-col {
    flex: 1;
    background-color: #111111; /* Dark charcoal matching header and deep dark sections */
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.appointment-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    border-bottom: 1.5px solid rgba(201, 133, 22, 0.3);
    padding-bottom: 12px;
}

/* Form element styling */
.appointment-inline-form .form-group,
#modal-appointment-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.appointment-inline-form label,
#modal-appointment-form label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appointment-inline-form input,
.appointment-inline-form select,
#modal-appointment-form input,
#modal-appointment-form select {
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    outline: none;
    transition: var(--transition);
}

.appointment-inline-form input::placeholder,
#modal-appointment-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.appointment-inline-form select option,
#modal-appointment-form select option {
    background-color: #111111;
    color: #ffffff;
}

.appointment-inline-form input:focus,
.appointment-inline-form select:focus,
#modal-appointment-form input:focus,
#modal-appointment-form select:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.12);
}

.form-row-half {
    display: flex;
    gap: 16px;
}

.form-row-half .form-group {
    flex: 1;
}

.btn-confirm {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    margin-top: 10px;
    border: none;
    background: linear-gradient(135deg, #d89320 0%, #b8770c 100%);
    box-shadow: 0 4px 15px rgba(201, 133, 22, 0.35);
}

.btn-confirm:hover {
    background: linear-gradient(135deg, #b8770c 0%, #d89320 100%);
    box-shadow: 0 6px 20px rgba(201, 133, 22, 0.45);
}

/* ===== Appointment Popup Modal Overlay ===== */
.appointment-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10005;
    display: none; /* JS triggers display: flex */
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.appointment-modal-card {
    background-color: #FEFBF6;
    border-radius: 20px;
    max-width: 860px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid #E8DECA;
    animation: modal-fade-in 0.4s ease;
}

@keyframes modal-fade-in {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Light styling overrides specifically for the modal appointment form elements */
#modal-appointment-form label {
    color: #443322 !important;
}

#modal-appointment-form input,
#modal-appointment-form select {
    background-color: #ffffff !important;
    border: 1.5px solid #E8DECA !important;
    color: #222222 !important;
}

#modal-appointment-form input::placeholder {
    color: #888888 !important;
}

#modal-appointment-form select option {
    background-color: #ffffff !important;
    color: #222222 !important;
}

#modal-appointment-form input:focus,
#modal-appointment-form select:focus {
    border-color: var(--primary-color) !important;
    background-color: #ffffff !important;
}

.appointment-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #333333;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.appointment-modal-close:hover {
    color: var(--primary-color);
}

.appointment-modal-grid {
    display: flex;
}

/* Modal Left side Image */
.appointment-modal-image {
    flex: 1;
    position: relative;
    min-height: 480px;
    display: block;
}

.appointment-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-modal-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 16, 8, 0.95) 0%, rgba(26, 16, 8, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #ffffff;
}

.appointment-modal-img-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #ffffff !important;
    margin-bottom: 5px;
}

.appointment-modal-img-overlay p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--primary-color);
    margin: 0;
}

/* Modal Right side Form */
.appointment-modal-form-wrap {
    flex: 1.2;
    padding: 40px 45px;
    color: #222222;
}

.appointment-modal-form-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #162432;
}

.modal-form-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 22px;
}

/* Responsive elements */
@media (max-width: 860px) {
    .appointment-grid,
    .appointment-modal-grid {
        flex-direction: column;
    }
    .appointment-image-col,
    .appointment-modal-image {
        min-height: 280px;
    }
    .appointment-modal-image {
        display: none; /* Hide modal image on small screens to fit the form */
    }
    .appointment-form-col,
    .appointment-modal-form-wrap {
        padding: 35px 25px;
    }
    .appointment-overlay-title {
        font-size: 30px;
    }
}

@media (max-width: 500px) {
    .form-row-half {
        flex-direction: column;
        gap: 15px;
    }
    .styled-title {
        font-size: 40px !important;
    }
    .section-title {
        font-size: 32px !important;
    }
    .doctor-name {
        font-size: 34px !important;
    }
    .approach-title,
    .faq-title,
    .visit-title {
        font-size: 34px !important;
    }
    .faq-still-questions {
        flex-direction: column;
        text-align: center;
    }
    .appointment-form-col,
    .appointment-modal-form-wrap {
        padding: 25px 15px;
    }
}

/* ===== Contact & Location Section ===== */
.visit-clinic-section {
    background-color: #FEFBF6;
    padding: 100px 0;
}

.visit-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left side: Information */
.visit-info-col {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.visit-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.visit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.visit-desc {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #666666;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 540px;
}

.visit-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.visit-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.visit-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background-color: rgba(201, 133, 22, 0.04);
    font-size: 20px;
    flex-shrink: 0;
}

.visit-detail-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.visit-detail-text p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.visit-detail-text p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.visit-detail-text p a:hover {
    text-decoration: underline;
}

.visit-detail-text p strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Right side: Map Card Wrapper */
.visit-map-col {
    flex: 1.2;
    width: 100%;
}

.map-card-wrapper {
    background: #ffffff;
    border: 1.5px solid #E8DECA;
    border-radius: 20px;
    overflow: hidden;
    padding: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.map-card-wrapper:hover {
    box-shadow: 0 12px 30px rgba(180, 140, 60, 0.12);
}

.map-card-wrapper iframe {
    border-radius: 12px;
    display: block;
}

/* Responsiveness */
@media (max-width: 992px) {
    .visit-grid {
        flex-direction: column;
        gap: 50px;
    }
    .visit-info-col,
    .visit-map-col {
        flex: 1;
        width: 100%;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #ffffff;
}

/* Decrease sizes in why-choose-us header */
.styled-subtitle {
    font-size: 14px !important;
}

.header-divider {
    max-width: 200px !important;
}

.styled-title {
    font-size: 68px !important;
}

.styled-desc {
    font-size: 19px !important;
}

/* FOOTER STYLES */
.site-footer {
    background: #1a1008; /* Dark brown from the original book appointment box */
    color: #ffffff;
    padding: 70px 0 0;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .custom-logo {
    height: 85px;
    margin-bottom: 18px;
    filter: none;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 260px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 8px;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--primary-color); /* Highly visible gold icons */
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--primary-color); }

/* ============================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE SHIFT)
   ============================================================ */

/* Large Tablets / Small Laptops */
@media (max-width: 992px) {
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* Detail Hero */
    .cd-hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .cd-hero-text {
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cd-hero-img {
        flex: none;
        width: 100%;
        max-width: 340px;
        transform: translateY(0);
        margin-bottom: 40px;
    }
    .cd-hero-img img {
        width: 100%;
        height: auto;
        max-width: 300px;
    }
    .cd-img-glow {
        width: 300px;
        height: 300px;
        left: 50%;
        transform: translateX(-50%);
    }
    .cd-title {
        font-size: 60px;
        line-height: 1.1;
    }
    .cd-tagline {
        font-size: 18px;
    }

    /* Grids & Columns */
    .cd-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cd-section-title {
        font-size: 40px;
    }
    .cd-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .cd-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Tablets */
@media (max-width: 768px) {
    .cd-sc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cd-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .cd-cta-inner h3 {
        font-size: 38px;
    }
    .cd-cta-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Viewports */
@media (max-width: 500px) {
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Detail Hero */
    .cd-title {
        font-size: 44px;
    }
    .cd-tagline {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    .cd-hero-img img {
        max-width: 240px;
    }

    /* Overview Stats */
    .cd-overview {
        padding: 50px 0;
    }
    .cd-stat-box {
        padding: 20px;
    }
    .cd-stat-val {
        font-size: 40px;
    }
    .cd-stat-label {
        font-size: 15px;
    }

    /* Symptoms & Causes */
    .cd-sc-section {
        padding: 50px 0;
    }
    .cd-causes-col {
        padding: 25px 20px;
    }
    .cd-list li {
        font-size: 16px;
    }

    /* Treatment */
    .cd-treatment {
        padding: 50px 0;
    }
    .cd-treatment-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cd-treat-card {
        padding: 28px 20px;
        align-items: center;
        text-align: center;
    }

    /* CTA Banner */
    .cd-cta {
        padding: 45px 0;
    }
    .cd-cta-inner h3 {
        font-size: 32px;
    }
    .cd-cta-inner p {
        font-size: 16px;
    }
    .cd-cta-actions {
        flex-direction: column;
        gap: 12px;
    }
    .cd-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Related Grid */
    .cd-related {
        padding: 50px 0;
    }
    .cd-related-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* OVERHAULED HERO */
        .treatments-hero {
            background: linear-gradient(135deg, #1a1008 0%, #2d1f08 60%, #1a1008 100%);
            position: relative;
            padding-bottom: 80px; /* Space for the overlapping bar */
        }
        .treatments-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('assets/images/texture-noise.png'); /* optional texture */
            opacity: 0.1;
            pointer-events: none;
        }
        .treat-hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 550px;
            gap: 50px;
            position: relative;
            z-index: 2;
        }
        .treat-hero-content {
            flex: 1.2;
            padding: 80px 0 40px;
        }
        .treat-hero-tag {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 4px;
            color: #cfa86e; /* gold */
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .treat-hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        .treat-hero-title span {
            color: #cfa86e;
        }
        .treat-hero-desc {
            font-family: 'Inter', sans-serif;
            font-size: 17px;
            color: #d1cbc1;
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 580px;
        }
        .treat-hero-badges {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 600px;
        }
        .treat-badge-item {
            text-align: center;
            color: #e8e2d5;
        }
        .treat-badge-icon {
            width: 50px;
            height: 50px;
            border: 1px solid rgba(207, 168, 110, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: #cfa86e;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        .treat-badge-item:hover .treat-badge-icon {
            background: rgba(207, 168, 110, 0.1);
            transform: translateY(-3px);
        }
        .treat-badge-item p {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 500;
            line-height: 1.4;
            margin: 0;
        }
        .treat-hero-img-col {
            flex: 0.8;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .treat-hero-img-col img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        /* Hero Assistance Bar */
        .treat-assistance-wrapper {
            position: relative;
            margin-top: -60px;
            z-index: 10;
        }
        .treat-assistance-bar {
            background: #ffffff;
            border-radius: 12px;
            padding: 25px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
            border: 1px solid #f0e6d6;
        }
        .assist-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .assist-icon {
            font-size: 32px;
            color: #cfa86e;
        }
        .assist-text h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin: 0 0 4px;
        }
        .assist-text p {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: #666;
            margin: 0;
        }
        .assist-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .btn-call-now {
            background: linear-gradient(135deg, #b07e2a 0%, #cfa86e 100%);
            color: #fff;
            padding: 12px 28px;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        .btn-call-now:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(176, 126, 42, 0.3);
            color: #fff;
        }
        .assist-phone {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .assist-phone-icon {
            font-size: 24px;
            color: #cfa86e;
        }
        .assist-phone-text span {
            display: block;
            font-size: 12px;
            color: #888;
            font-weight: 600;
            text-transform: uppercase;
        }
        .assist-phone-text strong {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            color: #2c3e50;
            font-weight: 700;
        }

        /* Attachment 2 Sections */
        .specialized-treatments-section {
            padding: 80px 0;
            background: #ffffff;
            background-image: url('assets/images/light-wave-bg.png'); /* Mock wave bg */
            background-size: cover;
            background-position: top;
        }
        .spec-treat-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .spec-treat-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 40px;
            font-weight: 700;
            color: #664c23;
            text-transform: uppercase;
        }
        
        .spec-treat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px 60px;
            max-width: 900px;
            margin: 0 auto 60px;
        }
        .spec-treat-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #4a3818;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(207, 168, 110, 0.3);
        }
        .spec-treat-item i {
            color: #cfa86e;
            font-size: 16px;
        }

        .diag-proc-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 80px;
            margin: 80px auto;
            max-width: 900px;
        }
        .diag-proc-list {
            flex: 1;
        }
        .diag-proc-list h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #9c732a;
            margin-bottom: 30px;
            text-transform: uppercase;
        }
        .diag-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #4a3818;
            margin-bottom: 25px;
        }
        .diag-item i {
            color: #cfa86e;
            font-size: 18px;
        }
        .diag-logo {
            flex: 1;
            text-align: center;
        }
        .diag-logo img {
            max-width: 250px;
            border-radius: 50%;
            box-shadow: 0 10px 40px rgba(156, 115, 42, 0.15);
            padding: 20px;
            background: #fff;
            border: 1px solid #f2e3cb;
        }
        .diag-logo p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-style: italic;
            color: #664c23;
            margin-top: 20px;
        }

        .stages-liver-damage {
            text-align: center;
            margin-top: 80px;
            padding-top: 50px;
            border-top: 1px solid #f2e3cb;
        }
        .stages-liver-damage h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #664c23;
            margin-bottom: 50px;
            text-transform: uppercase;
        }
        .stages-row {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 30px;
        }
        .stage-item {
            text-align: center;
            position: relative;
            flex: 1;
        }
        .stage-item img {
            width: 100px;
            height: auto;
            margin-bottom: 15px;
        }
        .stage-item h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: #4a3818;
            margin: 0;
        }
        .stage-arrow {
            color: #e1d3c0;
            font-size: 24px;
            margin-bottom: 40px;
        }

    

/* OLD TREATMENTS CSS */

/* Sibling styles for the Treatments Landing Page */
        .treatments-hero {
            background-color: #F8F2E5;
            padding: 0;
            overflow: hidden;
            width: 100%;
            border-bottom: 1px solid #EBE4D6;
        }
        
        .treat-hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 480px;
            gap: 50px;
        }
        
        .treat-hero-content {
            flex: 1.2;
            padding: 80px 0;
        }
        
        .treat-hero-tag {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 4px;
            color: var(--primary-color);
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        
        .treat-hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.15;
            margin-bottom: 20px;
        }
        
        .treat-hero-desc {
            font-family: 'Inter', sans-serif;
            font-size: 17px;
            color: #666666;
            line-height: 1.7;
            margin-bottom: 35px;
            max-width: 580px;
        }
        
        .treat-hero-img-col {
            flex: 0.8;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            height: 480px;
            position: relative;
        }
        
        .treat-hero-img-col img {
            max-height: 100%;
            width: auto;
            object-fit: contain;
            display: block;
            position: absolute;
            bottom: 0;
            right: 35px;
        }
        
        /* Stats row below Hero */
        .treat-stats-section {
            background-color: #FEFBF6;
            padding: 40px 0;
            border-bottom: 1.5px solid #EBE4D6;
        }
        
        .treat-stats-banner {
            background: #ffffff;
            border: 1px solid #EBE4D6;
            border-radius: 20px;
            padding: 30px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: var(--shadow-sm);
        }
        
        .treat-stat-item {
            flex: 1;
            text-align: center;
        }

        .treat-stat-icon-wrap {
            font-size: 26px;
            color: var(--primary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .treat-stat-item h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 38px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 4px;
            line-height: 1.1;
        }
        
        .treat-stat-item p {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: #666666;
            margin: 0;
            font-weight: 500;
        }
        
        .treat-stats-divider {
            width: 1px;
            height: 50px;
            background-color: #E2D3B8;
        }
        
        /* Grid Section */
        .treatments-grid-section {
            background-color: #FEFBF6;
            padding: 100px 0;
        }
        
        .pro-treatments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .pro-treat-card {
            background: #ffffff;
            border: 1px solid #EBE4D6;
            border-radius: 24px;
            padding: 45px 35px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 20px rgba(180, 140, 60, 0.02);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
        
        .pro-treat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(180, 140, 60, 0.08);
            border-color: var(--primary-color);
        }
        
        .treat-card-icon {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 10px;
            transition: transform 0.3s ease;
        }
        
        .pro-treat-card:hover .treat-card-icon {
            transform: scale(1.1);
        }
        
        .treat-card-number {
            position: absolute;
            top: 35px;
            right: 35px;
            font-family: 'Poppins', sans-serif;
            font-size: 44px;
            font-weight: 700;
            color: rgba(22, 36, 50, 0.06);
            line-height: 1;
            user-select: none;
            transition: color 0.3s ease;
        }
        
        .pro-treat-card:hover .treat-card-number {
            color: rgba(201, 133, 22, 0.15);
        }
        
        .treat-card-title {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 24px 0 12px;
            line-height: 1.3;
        }
        
        .treat-card-desc {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            color: #666666;
            line-height: 1.65;
            margin-bottom: 30px;
            flex-grow: 1;
        }
        
        .treat-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(232, 222, 202, 0.4);
            padding-top: 24px;
            margin-top: auto;
        }
        
        .treat-tag {
            font-family: 'Poppins', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #a47318;
            background-color: #FDF5E6;
            padding: 6px 14px;
            border-radius: 20px;
            text-transform: uppercase;
        }
        
        .treat-book-link {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.2s ease, transform 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        
        .treat-book-link:hover {
            color: var(--text-dark);
            transform: translateX(2px);
        }

        /* Responsiveness */
        @media (max-width: 992px) {
            .treat-hero-container {
                flex-direction: column;
                text-align: center;
                gap: 30px;
                padding: 60px 0;
            }
            .treat-hero-content {
                padding: 0;
            }
            .treat-hero-desc {
                margin: 0 auto 30px;
            }
            .treat-hero-img-col {
                height: 380px;
                width: 100%;
                justify-content: center;
            }
            .treat-hero-img-col img {
                position: relative;
                max-height: 100%;
                margin: 0 auto;
                right: auto;
            }
            .treat-stats-banner {
                flex-direction: column;
                gap: 25px;
                padding: 30px;
            }
            .treat-stats-divider {
                width: 100%;
                height: 1px;
            }
            .pro-treatments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 650px) {
            .pro-treatments-grid {
                grid-template-columns: 1fr;
            }
            .treat-hero-title {
                font-size: 42px;
            }
            .pro-treat-card {
                padding: 35px 28px;
            }
        }
    
        
/* Added for Mobile Fixes */
@media (max-width: 768px) {
    .trusted-banner-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
        padding: 30px 20px !important;
        align-items: center !important;
    }
    .trusted-divider {
        width: 100% !important;
        height: 2px !important;
    }
    .step-connector {
        display: flex !important;
        justify-content: center !important;
        padding: 20px 0 !important;
        margin: 0 !important;
    }
    .step-connector svg {
        transform: rotate(90deg) !important;
        width: 60px !important;
    }
    .approach-step-group {
        align-items: center !important;
        text-align: center !important;
    }
    .approach-steps {
        flex-direction: column !important;
        align-items: center !important;
    }
    .approach-step {
        justify-content: center !important;
    }
    .step-details h4 {
        text-align: center !important;
    }
    .step-details p {
        text-align: center !important;
    }
}

/* FAQ Mobile Image Fix */
.faq-mobile-img {
    display: none;
}
@media (max-width: 991px) {
    .faq-mobile-img {
        display: flex;
        justify-content: center;
        margin: 30px 0 10px 0;
    }
    .faq-mobile-img img {
        width: 220px;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 15px 30px rgba(201, 133, 22, 0.15));
        transition: transform 0.2s ease-in-out;
    }
    .faq-mobile-img img:hover,
    .faq-mobile-img img:active {
        animation: faq-shake 0.5s ease-in-out infinite;
    }
}

/* Appointment Banner Mobile Fix */
@media (max-width: 991px) {
    .appointment-img-overlay {
        padding: 20px 20px 15px 20px !important;
    }
    .appointment-image-col {
        min-height: 380px !important;
    }
}

/* Doctor Name Formatting Fix */
.doctor-name {
    font-size: 38px !important;
}
@media (max-width: 991px) {
    .doctor-name {
        font-size: 28px !important;
    }
}

:root { --primary-gold: #C98516; }

