﻿
/* ===== ATTRACTIVE BLOCKQUOTES - MEDICAL THEME ===== */
.blockquote-container {
    margin: 3rem 0;
    position: relative;
}

/* Main Blockquote Style */
.blockquote {
    position: relative;
    padding: 2.5rem 3rem 2.5rem 4rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border-left: 6px solid #00A86B;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    font-style: italic;
    color: #333333;
    line-height: 1.8;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.blockquote:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-left-color: #01411C;
}

/* Quote Icon */
.blockquote::before {
    content: "❝";
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 3.5rem;
    color: #0066CC;
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

/* Quote Text */
.blockquote-text {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Quote Author */
.blockquote-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066CC, #00A86B);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #01411C;
    font-style: normal;
    margin: 0 0 5px 0;
}

.author-title {
    font-size: 0.9rem;
    color: #666666;
    font-style: normal;
    margin: 0;
}

/* Medical Blockquote Variation */
.blockquote-medical {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border-left-color: #0066CC;
}

.blockquote-medical::before {
    color: #00A86B;
}

.blockquote-medical .author-avatar {
    background: linear-gradient(135deg, #00A86B, #01411C);
}

/* Testimonial Blockquote */
.blockquote-testimonial {
    padding: 3rem;
    background: white;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.blockquote-testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066CC, #00A86B, #01411C);
}

.blockquote-testimonial::after {
    content: "❞";
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(0, 102, 204, 0.1);
    font-family: serif;
    line-height: 1;
}

/* Emergency/Important Blockquote */
.blockquote-emergency {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border-left: 6px solid #FF6B6B;
    animation: pulseBorder 2s infinite;
}

.blockquote-emergency::before {
    content: "⚠";
    color: #FF6B6B;
    opacity: 0.3;
    
}

@@keyframes pulseBorder {
    0%, 100% {
        border-left-color: #FF6B6B;
    }
    50% {
        border-left-color: #FF8E53;
    }
}

/* Blockquote with Image */
.blockquote-with-image {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
}

.quote-image {
    flex: 0 0 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.quote-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.quote-content {
    flex: 1;
}

/* Grid of Blockquotes */
.blockquote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blockquote-grid .blockquote {
    margin: 0;
    height: 100%;
}

/* Pull Quote (Large, Centered) */
.pull-quote {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    position: relative;
}

.pull-quote .blockquote-text {
    font-size: 1.8rem;
    color: #01411C;
    line-height: 1.6;
}

.pull-quote::before,
.pull-quote::after {
    content: "❝";
    font-size: 5rem;
    color: #0066CC;
    opacity: 0.2;
    position: absolute;
    line-height: 1;
}

.pull-quote::before {
    top: 0;
    left: 20px;
}

.pull-quote::after {
    content: "❞";
    bottom: 0;
    right: 20px;
}

/* Blockquote in Sidebar */
.blockquote-sidebar {
    background: white;
    border: 1px solid rgba(0, 102, 204, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.blockquote-sidebar .blockquote-text {
    font-size: 1rem;
}

/* Blockquote with Stats */
.blockquote-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #0066CC 0%, #01411C 100%);
    color: white;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.blockquote-stats .blockquote-text {
    color: white;
    margin-bottom: 0.5rem;
}

.blockquote-stats .author-name {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@@media (max-width: 768px) {
    .blockquote {
        padding: 2rem 1.5rem 2rem 3.5rem;
    }
    
    .blockquote::before {
        left: 15px;
        font-size: 2.5rem;
    }
    
    .blockquote-text {
        font-size: 1.1rem;
    }
    
    .blockquote-with-image {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .quote-image {
        flex: 0 0 auto;
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .quote-image img {
        height: 100px;
    }
    
    .blockquote-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pull-quote {
        padding: 2rem 1rem;
    }
    
    .pull-quote .blockquote-text {
        font-size: 1.4rem;
    }
    
    .blockquote-stats {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@@media (max-width: 480px) {
    .blockquote {
        padding: 1.5rem 1.5rem 1.5rem 3rem;
    }
    
    .blockquote::before {
        top: 15px;
        left: 10px;
        font-size: 2rem;
    }
    
    .blockquote-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .blockquote-testimonial {
        padding: 2rem 1.5rem;
    }
}

/* Animation */
@@keyframes fadeInQuote {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blockquote {
    animation: fadeInQuote 0.6s ease forwards;
}

/* Utility Classes for Blockquotes */
.blockquote-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.blockquote-large .blockquote-text {
    font-size: 1.4rem;
}

.blockquote-small {
    padding: 1.5rem 2rem;
    font-size: 0.95rem;
}

.blockquote-small .blockquote-text {
    font-size: 1rem;
}

/* Shadow Variations */
.blockquote-shadow-light {
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.08);
}

.blockquote-shadow-medium {
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.12);
}

.blockquote-shadow-heavy {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}
    