/* Resources Page Specific Styles */
 html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
            font-family: 'Plus Jakarta Sans', sans-serif !important;
}
/* Page Hero - Resources Variant */
.resources-hero {
    background: var(--primary-blue);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.resources-hero .hero-shape {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--theme-yellow);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(15deg); }
}

.page-hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.page-hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.hero-breadcrumb a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: var(--theme-yellow);
}

.hero-breadcrumb i {
    font-size: 12px;
    color: #666;
}

.hero-breadcrumb span {
    color: #666;
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.stat-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--theme-yellow);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-card i {
    font-size: 32px;
    color: var(--theme-yellow);
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.stat-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #000;
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
    line-height: 1;
}

.stat-card span {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Downloads Section */
.downloads-section {
    padding: 100px 0;
    background: #fff;
}

/* Resource Filter Bar */
.resource-filter-bar {
    background: var(--cream-bg);
    padding: 25px 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-box {
    position: relative;
    flex: 1;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 15px;
    background: #fff;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--theme-yellow);
    box-shadow: 0 5px 20px rgba(245, 213, 71, 0.2);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid transparent;
    background: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.filter-btn:hover {
    border-color: var(--theme-yellow);
    color: #000;
}

.filter-btn.active {
    background: var(--theme-yellow);
    color: #000;
    border-color: var(--theme-yellow);
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.resource-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--theme-yellow);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    border-color: var(--theme-yellow);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.resource-card:hover::before {
    transform: scaleY(1);
}

.resource-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.brand-micron { background: #0066b3; color: #fff; }
.brand-crucial { background: #e31937; color: #fff; }
.brand-3cx { background: #00a4e4; color: #fff; }
.brand-yealink { background: #2d8cf0; color: #fff; }
.brand-snom { background: #4a4a4a; color: #fff; }
.brand-teltonika { background: #00a651; color: #fff; }
.brand-fanvil { background: #ff6b35; color: #fff; }
.brand-jabra { background: #ff6b00; color: #fff; }
.brand-dinstar { background: #1e3a8a; color: #fff; }

.resource-card:hover .resource-icon {
    transform: scale(1.1) rotate(5deg);
}

.resource-content {
    flex: 1;
}

.resource-brand {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
}

.resource-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.4;
}

.resource-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.resource-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.resource-meta span {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.resource-meta i {
    color: var(--theme-yellow);
}

.resource-download {
    width: 45px;
    height: 45px;
    background: var(--cream-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.resource-download:hover {
    background: var(--theme-yellow);
    transform: scale(1.1) rotate(10deg);
}

.resource-download.external {
    background: var(--primary-blue);
}

.resource-download.external:hover {
    background: #000;
    color: #fff;
}

/* Support Section */
.support-section {
    padding: 100px 0;
    background: var(--cream-bg);
}

.lead-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.support-contact-card {
    background: #000;
    padding: 35px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.support-contact-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--theme-yellow);
    border-radius: 50%;
    opacity: 0.2;
}

.support-contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-contact-card h4 i {
    color: var(--theme-yellow);
}

.support-contact-card p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}

.support-phone {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--theme-yellow);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.support-phone:hover {
    color: #fff;
    transform: translateX(5px);
}

.support-email {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.support-email:hover {
    opacity: 1;
    color: var(--theme-yellow);
}

/* Support Tabs */
.support-tabs {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 25px 20px;
    background: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #666;
    white-space: nowrap;
    min-width: 120px;
}

.tab-btn i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: var(--cream-bg);
    color: #000;
}

.tab-btn.active {
    background: var(--theme-yellow);
    color: #000;
}

.tab-btn.active i {
    transform: scale(1.2);
}

.tab-content {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--theme-yellow), var(--primary-blue));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-icon {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--theme-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.tab-action {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

/* Warranty Grid */
.warranty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.warranty-card {
    background: var(--cream-bg);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.warranty-card:hover {
    background: #fff;
    border-color: var(--theme-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.warranty-icon {
    width: 50px;
    height: 50px;
    background: var(--theme-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.warranty-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.warranty-period {
    display: inline-block;
    background: #000;
    color: var(--theme-yellow);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.warranty-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.warranty-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warranty-card li {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warranty-card li i {
    color: #10B981;
    font-size: 11px;
}

/* DOA Section */
.doa-info {
    max-width: 800px;
}

.doa-highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border: 2px solid var(--theme-yellow);
}

.doa-highlight i {
    font-size: 40px;
    color: #f59e0b;
}

.doa-highlight h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.doa-highlight p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.doa-conditions {
    margin-bottom: 30px;
}

.doa-conditions h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doa-conditions ul {
    list-style: none;
    padding: 0;
}

.doa-conditions li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.doa-conditions li i {
    color: #10B981;
    font-size: 18px;
}

.doa-process h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--theme-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 10px;
    color: #000;
    position: relative;
    z-index: 1;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #f0f0f0;
}

.step p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Tech Support Grid */
.tech-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tech-card {
    background: var(--cream-bg);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-card:hover {
    background: var(--primary-blue);
    border-color: var(--theme-yellow);
    transform: translateY(-5px);
}

.tech-card i {
    font-size: 36px;
    color: var(--theme-yellow);
    margin-bottom: 15px;
    display: block;
}

.tech-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tech-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.tech-detail {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.tech-hours {
    font-size: 12px;
    color: #999;
}

.btn-sm-theme {
    display: inline-block;
    background: var(--theme-yellow);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-sm-theme:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Escalation Path */
/* Continuing from .escalation-path */
.escalation-path h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.escalation-path h4 i {
    color: var(--theme-yellow);
}

.escalation-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.escalation-level {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 20px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.escalation-level:hover {
    border-color: var(--theme-yellow);
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.escalation-level span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.escalation-level p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.escalation-level p small {
    font-size: 11px;
    color: #aaa;
    font-weight: 400;
}

.escalation-flow > i {
    color: var(--theme-yellow);
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Events Section */
.events-section {
    padding: 100px 0;
    background: #fff;
}

/* Training Categories */
.training-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--cream-bg);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 14px;
    color: #666;
}

.category-card i {
    font-size: 18px;
    color: #999;
    transition: all 0.3s ease;
}

.category-card:hover {
    background: #fff;
    border-color: var(--theme-yellow);
    color: #000;
    transform: translateY(-2px);
}

.category-card:hover i {
    color: var(--theme-yellow);
}

.category-card.active {
    background: var(--theme-yellow);
    color: #000;
    border-color: var(--theme-yellow);
}

.category-card.active i {
    color: #000;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.event-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    border-color: var(--theme-yellow);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.event-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

@media (max-width: 991px) {
    .event-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
}

.event-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.event-card.featured .event-image {
    height: 100%;
    min-height: 400px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.featured-badge {
    background: var(--theme-yellow);
    color: #000;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { box-shadow: 0 0 0 0 rgba(245, 213, 71, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(245, 213, 71, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 213, 71, 0); }
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 2;
}

.event-date .day {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.event-meta span {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-type {
    color: var(--primary-blue);
}

.event-time, .event-location {
    color: #666;
}

.event-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
    line-height: 1.3;
}

.event-card.featured .event-content h3 {
    font-size: 28px;
}

.event-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.event-speaker {
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-speaker img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--theme-yellow);
}

.event-speaker span {
    display: block;
    font-size: 12px;
    color: #999;
}

.event-speaker strong {
    display: block;
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--theme-yellow);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--theme-yellow);
    white-space: nowrap;
}

.btn-register:hover {
    background: transparent;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 213, 71, 0.3);
}

/* Past Events Section */
.past-events-section {
    background: var(--cream-bg);
    padding: 40px;
    border-radius: 25px;
    margin-top: 40px;
}

.past-events-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}

.past-events-title i {
    color: var(--theme-yellow);
}

.past-events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.past-event-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.past-event-item:hover {
    border-color: var(--theme-yellow);
    transform: translateX(5px);
}

.past-event-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.past-date {
    font-size: 13px;
    font-weight: 700;
    color: var(--theme-yellow);
    background: #000;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.past-event-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-watch:hover {
    background: #000;
    color: var(--theme-yellow);
}

.btn-watch i {
    font-size: 16px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--cream-bg);
}

.newsletter-box {
    background: #000;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--theme-yellow);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.newsletter-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-box h3 i {
    color: var(--theme-yellow);
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(15deg); }
    20%, 40%, 60%, 80% { transform: rotate(-15deg); }
}

.newsletter-box p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    position: relative;
    z-index: 1;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-group input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: #666;
}

.input-group input:focus {
    outline: none;
    border-color: var(--theme-yellow);
    background: rgba(255,255,255,0.1);
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: var(--theme-yellow);
    border: none;
    border-radius: 50px;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 213, 71, 0.3);
}

.btn-subscribe i {
    transition: transform 0.3s ease;
}

.btn-subscribe:hover i {
    transform: translateX(5px);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 13px;
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--theme-yellow);
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .page-hero-title {
        font-size: 42px;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .resources-hero {
        padding: 140px 0 80px;
        min-height: auto;
    }
    
    .page-hero-title {
        font-size: 36px;
    }
    
    .hero-stats-grid {
        margin-top: 40px;
    }
    
    .resource-filter-bar {
        padding: 20px;
    }
    
    .filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card.featured {
        grid-template-columns: 1fr;
    }
    
    .event-card.featured .event-image {
        min-height: 250px;
    }
    
    .warranty-grid,
    .tech-support-grid {
        grid-template-columns: 1fr;
    }
    
    .escalation-flow {
        flex-direction: column;
        align-items: stretch;
    }
    
    .escalation-flow > i {
        transform: rotate(90deg);
        align-self: center;
    }
    
    .escalation-level {
        min-width: auto;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .newsletter-box {
        padding: 40px 30px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .past-event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .page-hero-title {
        font-size: 28px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-card {
        flex-direction: column;
        text-align: center;
    }
    
    .resource-icon {
        margin: 0 auto;
    }
    
    .resource-download {
        margin: 0 auto;
    }
    
    .support-tabs {
        border-radius: 20px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        flex-direction: row;
        justify-content: center;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .tab-content {
        padding: 25px;
    }
    
    .process-timeline {
        padding-left: 30px;
    }
    
    .timeline-icon {
        left: -30px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .training-categories {
        gap: 10px;
    }
    
    .category-card {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .newsletter-box h3 {
        font-size: 24px;
    }
    
    .stat-card h3 {
        font-size: 28px;
    }
}

/* Animation Utilities */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--theme-yellow);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e6c200;
}

/* Loading States */
.resource-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* No Results State */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.no-results h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

/* Print Styles */
@media print {
    .header,
    .back-to-top,
    .newsletter-section,
    .btn-register,
    .resource-download,
    .btn-theme-yellow {
        display: none !important;
    }
    
    .resource-card,
    .event-card,
    .warranty-card {
        break-inside: avoid;
        border: 1px solid #ddd;
    }
}
   