/* Hero Updates */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--accent);
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Small Sleek Mission/Vision Cards */
.mission-card, .vision-card, .goals-card {
    background: var(--white);
    padding: 1.8rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.mission-card:hover, .vision-card:hover, .goals-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

.mission-card {
    border-left: 3px solid var(--primary);
}

.vision-card {
    border-left: 3px solid var(--accent);
}

.goals-card {
    border-left: 3px solid #e66465;
}

.mission-card h3, .vision-card h3, .goals-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon,
.goals-card:hover .card-icon {
    transform: scale(1.1);
}

/* Team Section */
.team-grid-section {
    background-color: var(--white);
    padding: 4rem 0;
}

/* Small Sleek Team Cards */
.team-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

.team-card.medical-leadership {
    border-top: 3px solid var(--primary);
}

.team-card.support-team {
    border-top: 3px solid var(--accent);
}

.team-card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #2a2950 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-card.support-team .team-card-header {
    background: linear-gradient(135deg, var(--accent) 0%, #1ea952 100%);
}

.team-icon {
    font-size: 1.8rem;
}

.team-card-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.team-card-body {
    padding: 1.5rem;
}

.team-member {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.team-member:hover {
    background: rgba(57, 53, 98, 0.02);
    padding-left: 8px;
    border-radius: 6px;
}

.team-member:last-child {
    border-bottom: none;
}

.team-member h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.member-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.member-qualifications {
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.member-role {
    color: var(--text-mid);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.4;
}

/* Small Sleek Team Philosophy */
.team-philosophy {
    background: var(--white);
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--accent);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-philosophy h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.team-philosophy p {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Ultra Sleek Doctor Cards */
.doctor-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
}

.doctor-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.doctor-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.doctor-card:hover .doctor-image::after {
    opacity: 1;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.05);
}

/* Compact Doctor Info */
.doctor-info {
    padding: 1.5rem;
    position: relative;
}

.doctor-info h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.qualification {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.designation {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.doctor-experience {
    margin-bottom: 1.5rem;
}

.exp-item {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.exp-item:last-child {
    margin-bottom: 0;
}

.exp-item::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Compact Specialty Tags */
.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.2s ease;
    cursor: default;
    border: none;
}

.tag.metabolic {
    background: rgba(57, 53, 98, 0.08);
    color: var(--primary);
    border: 1px solid rgba(57, 53, 98, 0.15);
}

.tag.pain {
    background: rgba(37, 211, 102, 0.08);
    color: var(--accent);
    border: 1px solid rgba(37, 211, 102, 0.15);
}

.tag.stress {
    background: rgba(232, 225, 249, 0.8);
    color: #6b5bcc;
    border: 1px solid #d9d1f9;
}

.tag.skin {
    background: rgba(255, 225, 243, 0.8);
    color: #e6407c;
    border: 1px solid #ffd1e8;
}

.tag.digestive {
    background: rgba(255, 253, 178, 0.6);
    color: #9b8e00;
    border: 1px solid #f4eea9;
}

.tag.posture {
    background: rgba(229, 240, 255, 0.8);
    color: #2c6ccf;
    border: 1px solid #c6dbf9;
}

.tag.sports {
    background: rgba(244, 244, 244, 0.8);
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Compact CTA Buttons */
.doctor-cta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-primary.small,
.btn-secondary.small {
    padding: 10px 20px;
    font-size: 0.85rem;
    flex: 1;
    min-width: 120px;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.btn-primary.small {
    background: linear-gradient(135deg, var(--accent) 0%, #1ed760 100%);
    border: 2px solid transparent;
    color: var(--white);
}

.btn-primary.small:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.15);
}

.btn-secondary.small {
    background: transparent;
    color: var(--primary);
    border: 2px solid rgba(57, 53, 98, 0.15);
}

.btn-secondary.small:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(57, 53, 98, 0.15);
}

.btn-primary.outline.small {
    background: transparent;
    color: var(--primary);
    border: 2px solid rgba(57, 53, 98, 0.2);
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-primary.outline.small:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(57, 53, 98, 0.15);
}

/* Small Support Team Strip */
.support-team-strip {
    background: linear-gradient(135deg, var(--creme) 0%, #fef0e1 100%);
    border-radius: 14px;
    padding: 1.8rem;
    border-left: 3px solid var(--accent);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.strip-text {
    flex: 1;
    min-width: 250px;
}

.strip-text h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.strip-text p {
    color: var(--text-mid);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.strip-cta {
    flex-shrink: 0;
}

/* Process Section */
.process-section .section-title h2 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.process-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.process-steps {
    margin-top: 2rem;
}

/* Small Process Steps */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a2950 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(57, 53, 98, 0.15);
}

.step-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.process-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.process-image:hover img {
    transform: scale(1.05);
}

/* Small Sleek Feature Cards */
.feature-card {
    background: var(--white);
    padding: 1.8rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-mid);
    line-height: 1.5;
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Compact Stats */
.stats-container {
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--primary), #2a2950);
    border-radius: 14px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item h3 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-weight: 700;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    max-width: 180px;
    margin: 0 auto;
}

/* Trust Strip */
.trust-item {
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-item h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.trust-item p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Small Sleek Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    color: var(--text);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author p {
    color: var(--text-mid);
    font-size: 0.9rem;
    font-style: normal;
}

/* FAQ */
.faq-accordion {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--white);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: var(--white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(248, 249, 250, 0.8);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
    color: var(--accent);
    font-weight: 300;
    width: 24px;
    text-align: center;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--light-gray);
}

.faq-answer.open {
    padding: 1.5rem;
    max-height: 400px;
}

.faq-answer p {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Clinical Section Styles */
.clinical-section {
    padding: 80px 0;
    position: relative;
}

.clinical-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Small Sleek Principle Cards */
.principle-card {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

.principle-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.principle-card:hover .principle-icon {
    transform: scale(1.1);
}

.clinical-highlight {
    background: linear-gradient(120deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.assessment-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.assessment-point:hover {
    transform: translateX(3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.point-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--primary);
}

.clinical-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-weight: 500;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    margin: 2rem auto;
    max-width: 150px;
}

/* Our Centre Section */

/* Small Centre Cards */
.centre-card {
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.centre-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.08);
}

.centre-image {
    height: 520px;
    overflow: hidden;
    position: relative;
}

.centre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.centre-card:hover .centre-image img {
    transform: scale(1.05);
}

.centre-content {
    padding: 1.5rem;
    text-align: center;
}

.centre-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.centre-content p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .doctor-image {
        height: 220px;
    }
    
    .centre-image {
        height: 200px;
    }
    
    .stats-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .doctor-image {
        height: 200px;
    }
    
    .centre-image {
        height: 180px;
    }
    
    .strip-content {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }
    
    .strip-text {
        min-width: 100%;
    }
    
    .process-step {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stats-container {
        padding: 1.8rem 1.2rem;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .clinical-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .doctor-image {
        height: 180px;
    }
    
    .centre-image {
        height: 160px;
    }
    
    .stats-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .team-card-header {
        padding: 1.2rem;
    }
    
    .team-icon {
        font-size: 1.5rem;
    }
    
    .doctor-card {
        margin-bottom: 1.5rem;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .doctor-cta {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .btn-primary.small,
    .btn-secondary.small {
        min-width: 110px;
        padding: 9px 16px;
        font-size: 0.8rem;
    }
    
    .process-section .row {
        flex-direction: column-reverse;
    }
    
    .process-image {
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-answer.open {
        padding: 1.2rem;
    }
    
    .clinical-quote {
        font-size: 1rem;
        padding-left: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .assessment-point {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .doctor-image {
        height: 160px;
    }
    
    .centre-image {
        height: 140px;
    }
    
    .doctor-info {
        padding: 1.2rem;
    }
    
    .doctor-info h3 {
        font-size: 1.15rem;
    }
    
    .qualification {
        font-size: 0.85rem;
    }
    
    .specialty-tags {
        justify-content: center;
        gap: 4px;
    }
    
    .tag {
        padding: 4px 10px;
        font-size: 0.7rem;
        letter-spacing: 0.4px;
    }
    
    .doctor-cta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-primary.small,
    .btn-secondary.small {
        width: 100%;
        min-width: 100%;
        padding: 10px 16px;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-question::after {
        font-size: 1.2rem;
        width: 20px;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-answer.open {
        padding: 1rem;
    }
    
    .stats-container {
        padding: 1.2rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .mission-card,
    .vision-card,
    .goals-card,
    .feature-card,
    .principle-card {
        padding: 1.5rem 1.2rem;
    }
}

@media (max-width: 400px) {
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .doctor-image {
        height: 140px;
    }
    
    .centre-image {
        height: 120px;
    }
    
    .doctor-info h3 {
        font-size: 1.1rem;
    }
    
    .tag {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    .strip-content {
        text-align: center;
    }
    
    .strip-text {
        min-width: 100%;
    }
    
    .strip-cta .btn-primary {
        width: 100%;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
}

/* Spacing Utilities */
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 2rem; }
.mt-6 { margin-top: 2.5rem; }
.mb-4 { margin-bottom: 1.2rem; }
.mb-5 { margin-bottom: 2rem; }
.py-5 { padding-top: 2rem; padding-bottom: 2rem; }
.py-6 { padding-top: 3rem; padding-bottom: 3rem; }

/* Small Card Grid Spacing */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.gap-3 {
    gap: 1rem !important;
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doctor-card,
.feature-card,
.principle-card,
.centre-card,
.mission-card,
.vision-card,
.goals-card {
    animation: fadeInUp 0.4s ease-out;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .doctor-card:hover,
    .feature-card:hover,
    .mission-card:hover {
        transform: none !important;
    }
}