/* Support Corporate Styles */

/* Section Styles */
.support-section {
    padding: var(--space-24) 0;
    background: var(--neutral-0);
}

.services-section {
    padding: 0 0 var(--space-24) 0;
    background: linear-gradient(to bottom, var(--neutral-0) 0%, var(--neutral-100) 100%);
}

.member-notice {
    background: var(--neutral-0);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-md);
    max-width: 820px;
    margin: 0 auto var(--space-10) auto;
    overflow: hidden;
    position: relative;
    transform: translateY(0);
    box-shadow: 0 15px 35px rgba(29, 78, 216, 0.10);
    border: 1px solid var(--neutral-200);
}


.member-notice-wrapper {
    position: relative;
    max-width: 820px;
    margin: 0 auto var(--space-10) auto;
    min-height: 300px;

}

.member-notice-main {
    position: relative;
    z-index: 10;
}

.member-notice-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    filter: blur(2px) grayscale(30%);
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.member-notice-bg-1 {
    transform: translate(40px, 120px) rotate(-3deg) scale(1.25);
    z-index: 2;
}

.member-notice-bg .btn {
    pointer-events: none;
}

.member-notice-main:hover {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.notice-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: var(--space-8) var(--space-6) var(--space-4) var(--space-6);
    position: relative;
    overflow: hidden;
}

.notice-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 3s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.notice-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4) auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.notice-icon i {
    font-size: 2.5rem;
    color: var(--neutral-0);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.notice-content {
    padding: var(--space-8);
    text-align: center;
}

.notice-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.notice-text {
    font-size: var(--text-base);
    color: var(--neutral-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.notice-actions {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
}

/* Clean Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    min-width: 140px;
    justify-content: center;
}

.btn-primary {
    background: var(--warning-500);
    color: var(--neutral-0);
    border-color: var(--warning-500);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--warning-600);
    border-color: var(--warning-600);
    outline: none;
}

/*
 * Style overrides for the call‑to‑action buttons shown within the member notice.
 * The default member notice buttons inherited a dark neutral palette which
 * clashed with the red alert tone of the notice header. To unify the look
 * and make the actions feel connected to the warning context, the buttons
 * now use the semantic “error” colours defined in the design tokens.
 *
 * Primary action buttons adopt the error 500/600 shades so they mirror
 * the deep red gradient of the notice header. Outline buttons use lighter
 * error tints for their borders and text, and shift to a subtle red
 * background on hover. These overrides live here in support.css to avoid
 * impacting buttons elsewhere in the site.
 */
.member-notice .btn-primary {
    /* Use the same red tone as the notice header for primary actions */
    background: var(--error-500);
    color: var(--neutral-0);
    border-color: var(--error-500);
}

.member-notice .btn-primary:hover,
.member-notice .btn-primary:focus {
    /* Darken slightly on hover/focus to provide feedback */
    background: var(--error-600);
    border-color: var(--error-600);
    outline: none;
}

.member-notice .btn-outline {
    /* Neutral background with red accent text/border for secondary actions */
    background: var(--neutral-0);
    color: var(--error-600);
    border-color: var(--error-300);
}

.member-notice .btn-outline:hover,
.member-notice .btn-outline:focus {
    /* Introduce a very light red background on hover and strengthen border */
    background: var(--error-50);
    border-color: var(--error-400);
    color: var(--error-600);
    outline: none;
}

.btn-outline {
    background: var(--neutral-0);
    color: var(--primary-600);
    border-color: var(--primary-300);
}

.btn-outline:hover {
    background: var(--primary-50);
    border-color: var(--primary-400);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--neutral-100);
    color: var(--neutral-700);
    border-color: var(--neutral-300);
}

.btn-secondary:hover {
    background: var(--neutral-200);
    border-color: var(--neutral-400);
    transform: translateY(-1px);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    align-items: start;
}

/* Service Cards */
.service-card {
    padding: var(--space-8);
    border-radius: var(--radius-3xl);
    background-color: var(--neutral-0);
    transition: all var(--transition-base);
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 0px rgba(29, 78, 216, 0.10);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.service-card:hover {
    box-shadow: 0 15px 35px rgba(29, 78, 216, 0.10);
    z-index: 2;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    background-color: var(--accent-blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6) auto;
    transition: all var(--transition-base);
}

.card-icon i {
    font-size: var(--text-4xl);
    color: var(--accent-blue);
    transition: all var(--transition-base);
}

.card-title {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
    text-align: center;
}

.card-subtitle {
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-normal);
    color: var(--neutral-600);
    margin-bottom: var(--space-6);
    text-align: center;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    flex: 1;
}

.service-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    transition: all 0.2s ease;
}

.service-item:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
}

.service-item i {
    color: var(--primary-600);
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.service-item span {
    font-size: var(--text-sm);
    color: var(--neutral-700);
    font-weight: var(--font-medium);
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    flex: 1;
}

.contact-hours {
    text-align: center;
    padding: var(--space-4);
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
}

.contact-hours h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
}

.contact-hours p {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    line-height: var(--leading-relaxed);
    margin: 0;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    transform: scale(1);
}

.contact-item:focus,
.contact-item:hover {
    cursor: pointer;
    transform: scale(1.05);
    background: var(--primary-50);
    outline: none !important;
    border-color: var(--primary-200);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-600);
    color: var(--neutral-0);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.contact-item.whatsapp .contact-icon {
    background: #16a34a;
}

.contact-item.email .contact-icon {
    background: var(--primary-600);
}

.contact-item.phone .contact-icon {
    background: #ea580c;
}

.contact-icon i {
    font-size: var(--text-base);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
}

.contact-value {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    margin-bottom: var(--space-1);
    line-height: var(--leading-relaxed);
}

.contact-note {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    margin-bottom: 2px;
    font-style: italic;
}

/* Requirements Timeline */
.requirements-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    flex: 1;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    position: relative;
    transform: scale(1);
}

.timeline-item:hover {
    cursor: pointer;
    transform: scale(1.05);
    background: var(--primary-50);
    border-color: var(--primary-200);
}

.timeline-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-600);
    color: var(--neutral-0);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--text-sm);
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.timeline-content {
    flex: 1;
    min-width: 0;
}

.timeline-content h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    margin-bottom: var(--space-2);
    line-height: var(--leading-tight);
}

.timeline-content p {
    font-size: var(--text-sm);
    color: var(--neutral-600);
    line-height: var(--leading-relaxed);
}

.timeline-note {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    font-style: italic;
}

/* Card Actions */
.card-actions {
    margin-top: auto;
    padding-top: var(--space-6);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .support-section {
        padding: var(--space-12) 0;
    }

    .services-section {
        padding: var(--space-16) 0;
    }

    .section-title {
        font-size: var(--text-4xl);
    }

    .section-subtitle {
        font-size: var(--text-lg);
    }

    .service-card {
        padding: var(--space-8);
    }

    .member-notice-wrapper {
        margin: 0;
    }

    .member-notice-bg-1 {
        transform: translate(10px, 10px) rotate(-2deg) scale(1.02);
    }

    .member-notice-bg {
        filter: blur(10px);
        opacity: 0.4;
    }

    .card-icon {
        width: 4rem;
        height: 4rem;
    }

    .card-icon i {
        font-size: var(--text-2xl);
    }

    .member-notice {
        margin: 0 auto;
    }

    .notice-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: var(--space-6);
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }

    .notice-content {
        padding: var(--space-6) var(--space-4);
    }

    .notice-icon {
        width: 64px;
        height: 64px;
    }

    .notice-icon i {
        font-size: 2rem;
    }

    .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .member-notice {
        padding: var(--space-6);
    }

    .notice-icon {
        width: 3rem;
        height: 3rem;
    }

    .notice-icon i {
        font-size: var(--text-xl);
    }

    .notice-title {
        font-size: var(--text-xl);
    }

    .service-card {
        padding: var(--space-6);
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
}

/* Print Styles */
@media print {
    .member-notice::before {
        display: none;
    }

    .service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--neutral-300);
    }

    .btn {
        border: 1px solid var(--neutral-400);
        color: var(--neutral-800) !important;
        background: var(--neutral-0) !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .member-notice::before {
        animation: none;
    }

    .service-card,
    .contact-item,
    .timeline-item,
    .btn {
        transition: none;
    }
}

/* Focus States */
.btn:focus,
.contact-item:focus {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .service-card {
        border-width: 2px;
    }

    .contact-item {
        border-width: 2px;
    }

    .timeline-item {
        border-width: 2px;
    }
}