/* ============================================
   NEW FEATURES STYLES
   ============================================ */

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    pointer-events: auto;
    min-width: 300px;
}

.toast--show {
    opacity: 1;
    transform: translateX(0);
}

.toast--success {
    border-left: 4px solid #10b981;
}

.toast--success .toast__icon {
    color: #10b981;
}

.toast--error {
    border-left: 4px solid #ef4444;
}

.toast--error .toast__icon {
    color: #ef4444;
}

.toast--warning {
    border-left: 4px solid #f59e0b;
}

.toast--warning .toast__icon {
    color: #f59e0b;
}

.toast--info {
    border-left: 4px solid #DC143C;
}

.toast--info .toast__icon {
    color: #DC143C;
}

.toast__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast__message {
    flex: 1;
    font-size: 0.95rem;
    color: #1e293b;
}

.toast__close {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.toast__close:hover {
    color: #1e293b;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.quick-view-modal--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.quick-view-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.quick-view-modal--open .quick-view-content {
    transform: scale(1);
}

.quick-view-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
}

.quick-view-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.quick-view-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.quick-view-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.quick-view-instructor {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 1rem 0;
}

.quick-view-description {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.quick-view-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.quick-view-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-view-price {
    font-size: 2rem;
    font-weight: 700;
    color: #DC143C;
    margin-bottom: 1.5rem;
}

.quick-view-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.netflix-card__action-btn--quick-view {
    background: rgba(220, 20, 60, 0.1);
    color: #DC143C;
}

.netflix-card__action-btn--quick-view:hover {
    background: rgba(220, 20, 60, 0.2);
}


/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent--show {
    transform: translateY(0);
}

.cookie-consent__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-consent__text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-consent__text i {
    font-size: 1.5rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.cookie-consent__text p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent__link {
    color: #DC143C;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-consent__link:hover {
    text-decoration: underline;
}

/* Keyboard Shortcuts Help */
.keyboard-shortcuts-help {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.keyboard-shortcuts-help--show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.keyboard-shortcuts-help__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.keyboard-shortcuts-help__content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.keyboard-shortcuts-help__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.keyboard-shortcuts-help__header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #1e293b;
}

.keyboard-shortcuts-help__close {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.keyboard-shortcuts-help__close:hover {
    background: #f8f9fa;
}

.keyboard-shortcuts-help__list {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.keyboard-shortcuts-help__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.keyboard-shortcuts-help__keys {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.keyboard-shortcuts-help__keys kbd {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.keyboard-shortcuts-help__description {
    color: #64748b;
    font-size: 0.95rem;
    text-align: right;
}

/* Why Us Section */
.why-us-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.why-us__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin: 0.5rem 0 3rem 0;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us__card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.25rem 1.75rem;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.why-us__card:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 113, 133, 0.35);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.why-us__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: transparent;
    border-radius: 0;
}

.why-us__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.why-us__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #081226;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.why-us__description {
    font-size: 0.875rem;
    color: rgba(8, 18, 38, 0.72);
    line-height: 1.45;
    margin: 0;
}

/* Social Proof Section */
.social-proof-section {
    padding: 4rem 0;
    background: #fff;
}

.social-proof__slider {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.social-proof__track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.social-proof__item {
    min-width: 100%;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.social-proof__avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC143C, #DC143C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.social-proof__content {
    flex: 1;
}

.social-proof__stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.social-proof__text {
    font-size: 1.1rem;
    color: #1e293b;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.social-proof__author {
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.social-proof__role {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.social-proof__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-proof__nav-btn {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s ease;
}

.social-proof__nav-btn:hover {
    background: #DC143C;
    border-color: #DC143C;
    color: #fff;
}

.social-proof__dots {
    display: flex;
    gap: 0.5rem;
}

.social-proof__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}

.social-proof__dot--active {
    background: #DC143C;
    width: 30px;
    border-radius: 5px;
}

/* Hero Actions */
.hero__actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero__actions .btn {
    white-space: nowrap;
    min-width: auto;
}

/* Course Tabs — tuż pod intro, bez pustej przestrzeni od sidebara */
.course-tabs-section {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: calc(var(--top-bar-height, 36px) + var(--header-height, 72px));
    z-index: 40;
    margin: 1rem 0 0;
}

.course-tabs {
    display: flex;
    gap: 0;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
}

.course-tab {
    padding: 0.9rem 1.15rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}

.course-tab:hover {
    color: #DC143C;
    background: rgba(220, 20, 60, 0.05);
}

.course-tab--active {
    color: #DC143C;
    border-bottom-color: #DC143C;
    background: rgba(220, 20, 60, 0.05);
}

.course-tab-content {
    display: none;
}

.course-tab-content--active {
    display: block;
}

/* Course Bundle */
.course-bundle {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.course-bundle__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.course-bundle__courses {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-bundle__course {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    flex: 1;
    min-width: 200px;
}

.course-bundle__course img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.course-bundle__course-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #1e293b;
}

.course-bundle__course-price {
    font-weight: 700;
    color: #DC143C;
}

.course-bundle__plus,
.course-bundle__equals {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64748b;
}

.course-bundle__total {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
}

.course-bundle__old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1rem;
}

.course-bundle__new-price {
    font-size: 2rem;
    font-weight: 700;
    color: #DC143C;
    margin: 0.5rem 0;
}

.course-bundle__savings {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
}

.course-bundle__btn {
    width: 100%;
}

/* Course Instructor Other Courses */
.course-instructor__other-courses {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.course-instructor__other-courses h4 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    color: #1e293b;
}

.course-instructor__courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.course-instructor__course-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.course-instructor__course-item:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.course-instructor__course-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.course-instructor__course-info {
    padding: 1rem;
}

.course-instructor__course-info h5 {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    color: #1e293b;
}

.course-instructor__course-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.course-instructor__course-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #DC143C;
}

/* Active Filters */
.courses-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.courses-filter-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #DC143C;
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
}

.courses-filter-chip__remove {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Courses Empty State */
.courses-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.courses-empty__icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.courses-empty__title {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.courses-empty__description {
    color: #64748b;
    margin: 0 0 2rem 0;
}

/* Cart Trust Badges */
.cart-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    flex-wrap: wrap;
}

.cart-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.cart-trust-badge i {
    color: #DC143C;
    font-size: 1.25rem;
}

/* Password Generator */
.auth-card__password-wrapper {
    position: relative;
}

.auth-card__password-generator {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.auth-card__password-generator:hover {
    color: #DC143C;
}

.password-generator {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.password-generator__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.password-generator__header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1e293b;
}

.password-generator__close {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.password-generator__close:hover {
    background: #f8f9fa;
}

.password-generator__options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.password-generator__option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.password-generator__option input[type="number"] {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.password-generator__preview {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.password-generator__output {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: monospace;
}

.password-generator__copy {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.75rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.password-generator__copy:hover {
    background: #e2e8f0;
}

.password-generator__actions {
    display: flex;
    gap: 0.75rem;
}

/* About Us Timeline */
.about-timeline {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about-timeline__title {
    text-align: center;
    margin-bottom: 3rem;
}

.about-timeline__content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.about-timeline__content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.about-timeline__item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 3rem;
}

.about-timeline__item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: #DC143C;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #e2e8f0;
}

.about-timeline__year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #DC143C;
    margin-bottom: 0.5rem;
}

.about-timeline__content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: #1e293b;
}

.about-timeline__content p {
    margin: 0;
    color: #64748b;
}

/* About Us Values */
.about-values {
    padding: 4rem 0;
    background: #fff;
}

.about-values__title {
    text-align: center;
    margin-bottom: 3rem;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-values__card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-values__card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.about-values__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC143C, #DC143C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.5rem;
}

.about-values__card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    color: #1e293b;
}

.about-values__card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* About Us Team */
.about-team {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about-team__title {
    text-align: center;
    margin-bottom: 3rem;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-team__member {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-team__member:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.about-team__avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC143C, #DC143C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}

.about-team__name {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: #1e293b;
}

.about-team__role {
    margin: 0 0 1rem 0;
    color: #DC143C;
    font-weight: 600;
}

.about-team__bio {
    margin: 0 0 1.5rem 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

.about-team__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.about-team__social a {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s ease;
}

.about-team__social a:hover {
    background: #DC143C;
    color: #fff;
}

/* About Us Contact */
.about-contact {
    padding: 4rem 0;
    background: #fff;
}

.about-contact__title {
    text-align: center;
    margin-bottom: 3rem;
}

.about-contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-contact__info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-contact__info-item i {
    font-size: 1.5rem;
    color: #DC143C;
    flex-shrink: 0;
}

.about-contact__info-item h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: #1e293b;
}

.about-contact__info-item p {
    margin: 0;
    color: #64748b;
}

.about-contact__social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-contact__social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s ease;
}

.about-contact__social a:hover {
    background: #DC143C;
    color: #fff;
}

.about-contact__form-group {
    margin-bottom: 1.5rem;
}

.about-contact__form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

.about-contact__form-group input,
.about-contact__form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.about-contact__form-group input:focus,
.about-contact__form-group textarea:focus {
    outline: none;
    border-color: #DC143C;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .why-us__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .why-us__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .toast-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .toast {
        min-width: auto;
    }

    .quick-view-body {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .cookie-consent__content {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .cookie-consent__actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-consent__actions .btn {
        width: 100%;
    }

    .why-us__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .why-us__card {
        padding: 1.5rem 1rem 1.25rem;
    }
}

@media (max-width: 520px) {
    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .social-proof__item {
        flex-direction: column;
        text-align: center;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .course-tabs {
        overflow-x: auto;
        padding: 0;
    }

    .course-tab {
        padding: 0.85rem 1rem;
        white-space: nowrap;
    }

    .course-bundle__courses {
        flex-direction: column;
    }

    .course-bundle__plus,
    .course-bundle__equals {
        transform: rotate(90deg);
    }

    .about-contact__content {
        grid-template-columns: 1fr;
    }

    .about-timeline__content {
        padding-left: 1.5rem;
    }

    .about-timeline__item {
        padding-left: 2rem;
    }
}

