
/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0 60px;
    border-bottom: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #00b894, #00d4aa);
}

.page-header::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    border: 2px solid rgba(0, 212, 170, 0.3);
    color: #00d4aa;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 0.95rem;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.4);
}

.back-button:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    border-color: rgba(0, 212, 170, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.2);
}

.back-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-3px);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-stats {
    display: flex;
    gap: 30px;
}

.header-stats .stat-item {
    text-align: center;
    background: rgba(0, 212, 170, 0.05);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    backdrop-filter: blur(10px);
}

.header-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4aa;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.6);
    display: block;
    margin-bottom: 5px;
}

.header-stats .stat-label {
    color: #f8f9fa;
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quote Cards Grid Styles */
.quote-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.quote-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #1f1f1f 100%);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 140px;
}

.quote-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #00b894, #00d4aa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quote-card:hover::before {
    transform: scaleX(1);
}

.quote-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #00d4aa;
    box-shadow: 0 16px 32px rgba(0, 212, 170, 0.15),
        0 6px 24px rgba(0, 0, 0, 0.4);
}

.quote-card:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quote-card:hover .quote-icon {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    border-color: rgba(0, 212, 170, 0.6);
    transform: scale(1.1);
}

.quote-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.quote-card:hover .quote-icon::before {
    width: 80px;
    height: 80px;
}

.quote-icon i {
    font-size: 1.5rem;
    color: #00d4aa;
    z-index: 2;
    position: relative;
    text-shadow: 0 0 12px rgba(0, 212, 170, 0.6);
    transition: all 0.3s ease;
}

.quote-card:hover .quote-icon i {
    transform: scale(1.1);
    text-shadow: 0 0 18px rgba(0, 212, 170, 0.8);
}

.quote-content {
    flex: 1;
    min-width: 0;
}

.quote-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.quote-content p {
    color: #f8f9fa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Enhanced Hover Effects for Quote Cards */
.quote-card:hover .quote-icon {
    animation: iconBounce 0.5s ease;
}
