/**
 * Medical Page Builder - Widget Styles
 * Version: 1.0.0
 */

/* ========================================
   GLOBAL STYLES
   ======================================== */
   
* {
    box-sizing: border-box;
}

/* ========================================
   1. HERO SECTION WIDGET
   ======================================== */

.medical-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.medical-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.medical-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 24px;
    text-align: center;
}

.medical-hero-heading {
    font-family: 'Inter', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 32px;
}

.medical-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 32px;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
}

.medical-hero-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #f96363;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.medical-hero-button:hover {
    background-color: #e54545;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(249, 99, 99, 0.3);
}

@media (max-width: 767px) {
    .medical-hero-heading {
        font-size: 40px;
    }
    
    .medical-hero-description {
        font-size: 16px;
        padding: 24px;
    }
    
    .medical-hero-button {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   2. TWO COLUMN CONTENT WIDGET
   ======================================== */

.medical-two-column-section {
    padding: 80px 24px;
    background: #ffffff;
}

.two-column-container {
    max-width: 1140px;
    margin: 0 auto;
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.two-column-heading {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1c2359;
    margin: 0 0 24px;
    line-height: 1.3;
}

.two-column-content {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
}

.two-column-content p {
    margin: 0 0 24px;
}

.two-column-content p:last-child {
    margin-bottom: 0;
}

.two-column-content em {
    font-style: italic;
}

.two-column-content strong {
    font-weight: 600;
    color: #1c2359;
}

.two-column-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Animation classes */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .two-column-heading {
        font-size: 32px;
    }
    
    .two-column-content {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .medical-two-column-section {
        padding: 60px 16px;
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Image always appears first on mobile */
    .two-column-grid.text-left-layout .two-column-image {
        order: -1;
    }
    
    .two-column-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .two-column-content {
        font-size: 16px;
    }
    
    .two-column-content p {
        margin-bottom: 16px;
    }
}

/* ========================================
   3. SYMPTOMS SECTION WIDGET
   ======================================== */

.medical-symptoms-section {
    padding: 80px 24px;
    background: #F9FAFB;
}

.symptoms-container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Section Header */
.symptoms-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.symptoms-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1c2359;
    margin: 0;
    line-height: 1.3;
}

/* Two Column Grid */
.symptoms-two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 64px;
}

/* Left Column */
.symptoms-left-column {
    display: flex;
    flex-direction: column;
}

.symptoms-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 32px;
}

.symptoms-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.symptom-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.symptom-icon-wrapper {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(249, 99, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.symptom-icon-wrapper i,
.symptom-icon-wrapper svg {
    font-size: 14px;
    color: #f96363;
}

.symptom-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
    flex: 1;
}

/* Right Column - Warning Box */
.symptoms-right-column {
    display: flex;
}

.warning-box {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.warning-box-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f96363;
    margin: 0 0 24px;
    line-height: 1.3;
}

.warning-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 24px;
}

.warning-intro strong {
    font-weight: 600;
    color: #1c2359;
}

.warning-signs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.warning-sign-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.warning-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #f96363;
    border-radius: 50%;
    margin-top: 10px;
}

.warning-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    flex: 1;
}

.warning-alert {
    background: rgba(249, 99, 99, 0.1);
    padding: 16px;
    border-radius: 12px;
}

.warning-alert p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #f96363;
    margin: 0;
}

/* Bottom White Box */
.symptoms-bottom-box {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bottom-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.bottom-left p,
.bottom-right p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

.bottom-left strong,
.bottom-right strong {
    font-weight: 600;
    color: #1c2359;
}

.bottom-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1c2359;
    margin: 0 0 16px;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
    .symptoms-main-title {
        font-size: 32px;
    }
    
    .warning-box-title,
    .bottom-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .medical-symptoms-section {
        padding: 60px 16px;
    }
    
    .symptoms-section-header {
        margin-bottom: 48px;
    }
    
    .symptoms-main-title {
        font-size: 28px;
    }
    
    .symptoms-two-column-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }
    
    /* Image/warning box appears first on mobile */
    .symptoms-right-column {
        order: -1;
    }
    
    .warning-box {
        padding: 24px;
    }
    
    .symptoms-intro-text {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .bottom-box-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .symptoms-bottom-box {
        padding: 24px;
    }
    
    .bottom-left p,
    .bottom-right p {
        font-size: 16px;
    }
    
    .warning-box-title,
    .bottom-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

/* ========================================
   4. CAUSES SECTION WIDGET
   ======================================== */

.medical-causes-section {
    padding: 80px 24px;
    background: #ffffff;
}

.causes-container {
    max-width: 1140px;
    margin: 0 auto;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

/* Image Column */
.causes-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

/* Content Column */
.causes-content {
    display: flex;
    flex-direction: column;
}

.causes-heading {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #f96363;
    margin: 0 0 24px;
    line-height: 1.3;
}

.causes-intro {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 24px;
}

.causes-intro strong {
    font-weight: 600;
    color: #1c2359;
}

.causes-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.cause-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cause-icon-wrapper {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(249, 99, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.cause-icon-wrapper i,
.cause-icon-wrapper svg {
    font-size: 14px;
    color: #f96363;
}

.cause-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
    flex: 1;
}

.causes-closing {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .causes-heading {
        font-size: 28px;
    }
    
    .causes-intro,
    .causes-closing {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .medical-causes-section {
        padding: 60px 16px;
    }
    
    .causes-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Image appears first on mobile */
    .causes-grid.image-left-layout .causes-image,
    .causes-grid.content-left-layout .causes-image {
        order: -1;
    }
    
    .causes-heading {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .causes-intro,
    .causes-closing {
        font-size: 16px;
    }
    
    .causes-list-wrapper {
        margin-bottom: 24px;
        gap: 12px;
    }
}

/* ========================================
   5. TREATMENT OPTIONS WIDGET
   ======================================== */

.medical-treatment-options {
    padding: 80px 24px;
    background: #F9FAFB;
}

.treatment-container {
    max-width: 1140px;
    margin: 0 auto;
}

.treatment-header {
    text-align: center;
    margin-bottom: 64px;
}

.treatment-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1c2359;
    margin: 0 0 24px;
    line-height: 1.3;
}

.treatment-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    max-width: 900px;
    margin: 0 auto;
}

.treatment-box {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 48px;
}

.treatment-box:last-child {
    margin-bottom: 0;
}

.treatment-box-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f96363;
    margin: 0 0 24px;
    line-height: 1.3;
}

.treatment-box-content {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
}

.treatment-box-content p {
    margin: 0 0 24px;
}

.treatment-box-content p:last-child {
    margin-bottom: 0;
}

.treatment-box-content strong {
    font-weight: 600;
    color: #1c2359;
}

@media (max-width: 1024px) {
    .treatment-main-title {
        font-size: 28px;
    }
    
    .treatment-box-title {
        font-size: 22px;
    }
    
    .treatment-subtitle,
    .treatment-box-content {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .medical-treatment-options {
        padding: 60px 16px;
    }
    
    .treatment-header {
        margin-bottom: 48px;
    }
    
    .treatment-main-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .treatment-box {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .treatment-box-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .treatment-subtitle,
    .treatment-box-content {
        font-size: 16px;
    }
    
    .treatment-box-content p {
        margin-bottom: 16px;
    }
}

/* ========================================
   6. HOW IT WORKS WIDGET
   ======================================== */

.medical-how-it-works {
    padding: 80px 24px;
    background: #ffffff;
}

.how-it-works-container {
    max-width: 1140px;
    margin: 0 auto;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 64px;
}

.how-it-works-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1c2359;
    margin: 0;
    line-height: 1.3;
}

.how-it-works-content {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
}

.how-it-works-content p {
    margin: 0 0 32px;
}

.how-it-works-content p:last-child {
    margin-bottom: 0;
}

.how-it-works-content strong {
    font-weight: 600;
    color: #1c2359;
}

@media (max-width: 1024px) {
    .how-it-works-title {
        font-size: 32px;
    }
    
    .how-it-works-content {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .medical-how-it-works {
        padding: 60px 16px;
    }
    
    .how-it-works-header {
        margin-bottom: 48px;
    }
    
    .how-it-works-title {
        font-size: 28px;
    }
    
    .how-it-works-content p {
        margin-bottom: 24px;
    }
}

/* ========================================
   7. TECHNOLOGY SECTION WIDGET
   ======================================== */

.medical-technology-section {
    padding: 80px 24px;
    background: #F9FAFB;
}

.technology-container {
    max-width: 1140px;
    margin: 0 auto;
}

.technology-header {
    text-align: center;
    margin-bottom: 64px;
}

.technology-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1c2359;
    margin: 0;
    line-height: 1.3;
}

.technology-content {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 48px;
}

.technology-content p {
    margin: 0 0 32px;
}

.technology-content p:last-child {
    margin-bottom: 0;
}

.technology-content strong {
    font-weight: 600;
    color: #1c2359;
}

.technology-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

@media (max-width: 1024px) {
    .technology-title {
        font-size: 32px;
    }
    
    .technology-content {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .medical-technology-section {
        padding: 60px 16px;
    }
    
    .technology-header {
        margin-bottom: 48px;
    }
    
    .technology-title {
        font-size: 28px;
    }
    
    .technology-content {
        margin-bottom: 32px;
    }
    
    .technology-content p {
        margin-bottom: 24px;
    }
}

/* ========================================
   8. TYPES OF PROCEDURES WIDGET
   ======================================== */

.medical-types-procedures {
    padding: 80px 24px;
    background: #F9FAFB;
}

.types-container {
    max-width: 1140px;
    margin: 0 auto;
}

.types-header {
    text-align: center;
    margin-bottom: 64px;
}

.types-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1c2359;
    margin: 0;
    line-height: 1.3;
}

.procedures-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.procedure-box {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.procedure-box-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f96363;
    margin: 0 0 24px;
    line-height: 1.3;
}

.procedure-box-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

@media (max-width: 1024px) {
    .types-main-title {
        font-size: 32px;
    }
    
    .procedure-box-title {
        font-size: 22px;
    }
    
    .procedure-box-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .medical-types-procedures {
        padding: 60px 16px;
    }
    
    .types-header {
        margin-bottom: 48px;
    }
    
    .types-main-title {
        font-size: 28px;
    }
    
    .procedures-list {
        gap: 24px;
    }
    
    .procedure-box {
        padding: 24px;
    }
    
    .procedure-box-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

/* ========================================
   9. RECOVERY SECTION WIDGET
   ======================================== */

.medical-recovery-section {
    padding: 80px 24px;
    background: #ffffff;
}

.recovery-container {
    max-width: 1140px;
    margin: 0 auto;
}

.recovery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.recovery-heading {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1c2359;
    margin: 0 0 24px;
    line-height: 1.3;
}

.recovery-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
}

.recovery-text p {
    margin: 0 0 24px;
}

.recovery-text p:last-child {
    margin-bottom: 0;
}

.recovery-text strong {
    font-weight: 600;
    color: #1c2359;
}

.recovery-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

@media (max-width: 1024px) {
    .recovery-heading {
        font-size: 32px;
    }
    
    .recovery-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .medical-recovery-section {
        padding: 60px 16px;
    }
    
    .recovery-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .recovery-grid.text-left-layout .recovery-image {
        order: -1;
    }
    
    .recovery-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .recovery-text p {
        margin-bottom: 16px;
    }
}

/* ========================================
   10. NEXT STEPS WIDGET
   ======================================== */

.medical-next-steps {
    padding: 80px 24px;
    background: rgba(249, 99, 99, 0.05);
}

.next-steps-container {
    max-width: 1140px;
    margin: 0 auto;
}

.next-steps-header {
    text-align: center;
    margin-bottom: 64px;
}

.next-steps-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #f96363;
    margin: 0;
    line-height: 1.3;
}

.next-steps-content {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps-content p {
    margin: 0 0 32px;
}

.next-steps-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .next-steps-title {
        font-size: 32px;
    }
    
    .next-steps-content {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .medical-next-steps {
        padding: 60px 16px;
    }
    
    .next-steps-header {
        margin-bottom: 48px;
    }
    
    .next-steps-title {
        font-size: 28px;
    }
    
    .next-steps-content p {
        margin-bottom: 24px;
    }
}

/* ========================================
   11. CARDIOLOGY CARE WIDGET
   ======================================== */

.medical-cardiology-care {
    padding: 80px 24px;
    background: #1c2359;
    color: #ffffff;
}

.cardiology-container {
    max-width: 1140px;
    margin: 0 auto;
}

.cardiology-header {
    text-align: center;
    margin-bottom: 64px;
}

.cardiology-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.cardiology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.care-box,
.doctor-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
}

.care-box {
    margin-bottom: 32px;
}

.care-box-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f96363;
    margin: 0 0 24px;
    line-height: 1.3;
}

.care-box-content {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.doctor-box-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #f96363;
    margin: 0 0 16px;
    line-height: 1.3;
}

.doctor-position {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px;
}

.doctor-hospital {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px;
}

.doctor-bio {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.doctor-bio p {
    margin: 0;
}

.doctor-bio strong {
    font-weight: 600;
    color: #ffffff;
}

.cardiology-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

@media (max-width: 1024px) {
    .cardiology-main-title {
        font-size: 32px;
    }
    
    .care-box-title {
        font-size: 22px;
    }
    
    .care-box-content,
    .doctor-bio {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .medical-cardiology-care {
        padding: 60px 16px;
    }
    
    .cardiology-header {
        margin-bottom: 48px;
    }
    
    .cardiology-main-title {
        font-size: 28px;
    }
    
    .cardiology-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cardiology-image {
        order: -1;
    }
    
    .care-box,
    .doctor-box {
        padding: 24px;
    }
    
    .care-box {
        margin-bottom: 24px;
    }
    
    .care-box-title {
        font-size: 20px;
    }
}

/* ========================================
   12. PROCEDURE TIMELINE WIDGET
   ======================================== */

.medical-procedure-timeline {
    padding: 80px 24px;
}

.timeline-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1c2359;
    text-align: center;
    margin: 0 0 48px;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    width: 2px;
    height: calc(100% - 20px);
    background: #E5E7EB;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: #f96363;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(249, 99, 99, 0.3);
    z-index: 1;
}

.timeline-content {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 12px;
}

.timeline-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1c2359;
    margin: 0 0 12px;
}

.timeline-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
}

@media (max-width: 767px) {
    .timeline-step {
        padding-left: 60px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .timeline-step:not(:last-child)::after {
        left: 20px;
    }
}

/* ========================================
   4. FAQ ACCORDION WIDGET
   ======================================== */

.medical-faq-accordion {
    padding: 80px 24px;
}

.faq-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1c2359;
    text-align: center;
    margin: 0 0 48px;
}

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

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1c2359;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    user-select: none;
}

.faq-question:hover {
    background: #F9FAFB;
}

.faq-icon {
    color: #f96363;
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #6B7280;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 24px 24px;
}

@media (max-width: 767px) {
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* ========================================
   13. FAQ ACCORDION WIDGET
   ======================================== */

.medical-faq-accordion {
    padding: 80px 24px;
    background: #F9FAFB;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1c2359;
    margin: 0 0 24px;
    line-height: 1.3;
}

.faq-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #F9FAFB;
}

.faq-question-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1c2359;
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    font-size: 24px;
    color: #f96363;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px;
}

.faq-answer-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

@media (max-width: 1024px) {
    .faq-section-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .medical-faq-accordion {
        padding: 60px 16px;
    }
    
    .faq-header {
        margin-bottom: 48px;
    }
    
    .faq-section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .faq-section-subtitle {
        font-size: 16px;
    }
    
    .faq-list {
        gap: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-zoom {
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s ease-out;
}

.animate-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.open {
    max-height: 500px;
}

.gradient-overlay {
    background: linear-gradient(135deg, rgba(28, 35, 89, 0.9) 0%, rgba(28, 35, 89, 0.7) 100%);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (max-width: 1024px) {
    .medical-hero-heading {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .medical-symptoms-grid,
    .medical-procedure-timeline,
    .medical-faq-accordion,
    .medical-contact-cta {
        padding: 60px 16px;
    }
}
/* ========================================
   14. CONTACT CTA WIDGET
   ======================================== */

.medical-contact-cta {
    padding: 80px 24px;
    background: #ffffff;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
}

.cta-heading {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1c2359;
    margin: 0 0 24px;
    line-height: 1.3;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    max-width: 800px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button-primary {
    background-color: #f96363;
}

.cta-button-primary:hover {
    background-color: #e54545;
    box-shadow: 0 8px 20px rgba(249, 99, 99, 0.3);
}

.cta-button-secondary {
    background-color: #1c2359;
}

.cta-button-secondary:hover {
    background-color: #151b45;
    box-shadow: 0 8px 20px rgba(28, 35, 89, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(249, 99, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-icon i {
    font-size: 28px;
    color: #f96363;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1c2359;
    margin: 0 0 8px;
}

.contact-info {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

@media (max-width: 1024px) {
    .cta-heading {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .medical-contact-cta {
        padding: 60px 16px;
    }
    
    .cta-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
}
   ANIMATIONS
   ======================================== */

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (max-width: 1024px) {
    .medical-hero-heading {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .medical-symptoms-grid,
    .medical-procedure-timeline,
    .medical-faq-accordion,
    .medical-contact-cta {
        padding: 60px 16px;
    }
}
