/* Custom Styles for Winnies School of Excellence */

/* ========================================
   COURSES HERO SECTION
======================================== */

.courses-hero-section {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: linear-gradient(135deg, #5ADBFF 0%, #4AC3E8 50%, #3BA9D4 100%);
}

.hero-background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://stg-winniesschoolofexcellence-staging.kinsta.cloud/wp-content/uploads/2025/11/training-banner.jpg) center center no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,10,0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0 30px 0;
}

.hero-text-content {
    max-width: 800px;
    margin: 0 auto;
    /* padding: 40px 0 30px 0; */
    width: 45%;
    margin-left: 0;
    text-align: left;
}

.hero-headline {
    font-family: 'PP Right Grotesk', 'Urbanist', sans-serif;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
    font-size: 86px;
    line-height: 96px;
    margin: 0 0 30px;
    font-weight: 900;
    max-width: 85%;
}

.hero-subtext {
    font-family: 'Urbanist', sans-serif;
    margin-bottom: 40px;
    /* max-width: 600px; */
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0.5px;
    color: #fff;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Urbanist', sans-serif;
    position: relative;
    overflow: hidden;
    background: #5ADBFF;
    border-color: #5ADBFF !important;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    border-width: 1px;
    padding: 18px 20px;
    border-radius: 40px;
    text-decoration: none;
    transition: all ease .3s;
    cursor: pointer;

}

.hero-cta-btn:hover {
    background: #EBB211;
    border-color: #EBB211 !important;
    color: #000000;
}

.hero-cta-btn:active {
    transform: translateY(0);
}

.sub-title-with-line{
    justify-content: center;
}

.hero-cta-btn svg {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover svg {
    transform: translateY(2px);
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 1500px) {
    .hero-headline {
        font-size: 60px;
        line-height: 70px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-headline {
        margin: 0 0 10px;
    }
    
    .hero-subtext {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-text-content{
        width: 50%;
        padding: 40px 0 20px 0;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-headline {
        font-size: 32px;
        line-height: 42px;
    }
    
    .hero-subtext {
        font-size:16px;
        margin-bottom: 32px;
        line-height: 24px;
    }
    
    .hero-cta-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text-content{
        width: 100%;
        padding: 40px 0 20px 0;
    }

    .hero-headline {
        line-height: 1.3;
        max-width: unset;
        width: 100%;
    }
    
    .hero-cta-btn,
    .hero-cta-btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Course Archive Header Adjustments */
.course-archive-header {
    margin-top: 60px;
    margin-bottom: 40px;
}

.course-archive-header .page-title {
    font-family: 'PP Right Grotesk', 'Urbanist', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .course-archive-header {
        margin-top: 40px;
        margin-bottom: 30px;
    }
    
    .course-archive-header .page-title {
        font-size: 2rem;
    }
}

/* ========================================
   END COURSES HERO SECTION
======================================== */

/* Product Loading States */
.products.loading {
    opacity: 0.5;
    position: relative;
}

.products.loading:after {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Infinite Scroll Styles */
.infinite-scroll-loader {
    text-align: center;
    padding: 30px 20px;
    font-size: 16px;
    color: #666;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
    animation: pulse 1.5s ease-in-out infinite alternate;
}

.infinite-scroll-loader:before {
    content: "⏳ ";
    margin-right: 8px;
}

.infinite-scroll-error {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    color: #e74c3c;
    background: #fdf2f2;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 20px 0;
}

.infinite-scroll-error:before {
    content: "⚠️ ";
    margin-right: 8px;
}

@keyframes pulse {
    from {
        opacity: 0.6;
    }
    to {
        opacity: 1;
    }
}

/* WooCommerce Pagination Styles */
.woocommerce-pagination {
    margin: 40px 0;
    text-align: center;
}

.woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.woocommerce-pagination .page-numbers li {
    margin: 0;
    padding: 0;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 0;
    background: transparent;
    color: #333;
    text-decoration: none;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.woocommerce-pagination .page-numbers .current {
    background: #5ADBFF;
    color: #000;
    border-color: #5ADBFF;
    cursor: default;
    font-weight: 600;
}

.woocommerce-pagination .page-numbers .prev,
.woocommerce-pagination .page-numbers .next {
    padding: 0;
    font-weight: 500;
    display: flex;
}

.woocommerce-pagination .page-numbers .prev:hover,
.woocommerce-pagination .page-numbers .next:hover {
    color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .woocommerce-pagination .page-numbers {
        gap: 6px;
    }
    
    .woocommerce-pagination .page-numbers a,
    .woocommerce-pagination .page-numbers span {
        min-width: 40px;
        padding: 0;
        font-size: 14px;
    }
    
    .woocommerce-pagination .page-numbers .prev,
    .woocommerce-pagination .page-numbers .next {
        padding: 0;
    }
}

/* Loading state for pagination */
.woocommerce-pagination.loading {
    opacity: 0.6;
    pointer-events: none;
}

.woocommerce-pagination.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #5ADBFF;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cart Sidebar Duplicate Prevention */
.cart-sidebar .cart-sidebar-footer:not(:last-child) {
    display: none !important;
}

/* Ensure only one subtotal, coupon section, and checkout button */
.cart-sidebar .cart-sidebar-footer ~ .cart-sidebar-footer {
    display: none !important;
}

/* LearnDash Course Search Styles */
.course-archive-header {
    margin-bottom: 40px;
    text-align: center;
}

.course-archive-header .page-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 30px 0;
    font-family: 'Urbanist', sans-serif;
}

.course-search-container {
    max-width: 500px;
    margin: 0 auto;
}

.course-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 48px;
}

.course-search-wrapper:focus-within {
    border-color: #5ADBFF;
    box-shadow: 0 4px 12px rgba(90, 219, 255, 0.1);
    background: #f8f9fa;
}

.course-search-wrapper:hover {
    border-color: #5ADBFF;
    background: #f8f9fa;
}

.course-search-wrapper .search-icon {
    position: absolute;
    left: 16px;
    color: #666;
    z-index: 2;
    pointer-events: none;
    flex-shrink: 0;
}

.course-search-input {
    width: 100%;
    padding: 12px 16px 12px 52px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Urbanist', sans-serif;
    background: transparent;
    color: #333;
    border-radius: 8px;
}

.course-search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.search-clear-btn:hover {
    background: #e9ecef;
    color: #5ADBFF;
}

.search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px auto;
    padding: 20px;
    width: 100%;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #5ADBFF;
    border-top: 2px solid #5ADBFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Course Search and Filter Layout */
.course-search-section {
    margin-bottom: 40px;
    margin-top: 40px;
}

.search-filters-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.search-container {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.filters-container {
    flex-shrink: 0;
    min-width: 320px;
}

.filter-group {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin: 0;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #495057;
    min-width: 140px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.filter-select:focus {
    outline: none;
    border-color: #5ADBFF;
    box-shadow: 0 0 0 3px rgba(90, 219, 255, 0.1);
}

.filter-select:hover {
    border-color: #5ADBFF;
}

/* Modern Filter Dropdown Styling */
.custom-filter-wrapper {
    position: relative;
    display: inline-block;
}

.custom-filter-dropdown {
    position: relative;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Urbanist', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: space-between;
    min-width: 140px;
}

.filter-toggle:hover {
    border-color: #5ADBFF;
    background: #f8f9fa;
}

.filter-toggle.active {
    border-color: #5ADBFF;
    background: #f8f9fa;
}

.filter-icon {
    color: #666;
    flex-shrink: 0;
}

.filter-text {
    flex: 1;
    text-align: left;
}

.filter-toggle .dropdown-arrow {
    color: #666;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.filter-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.filter-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 140px;
}

.filter-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
    color: #333;
}

.filter-option:hover {
    background: #f8f9fa;
    color: #5ADBFF;
}

.filter-option.selected {
    background: #5ADBFF;
    color: white;
}

.filter-option:last-child {
    border-radius: 0 0 6px 6px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Modern Course Card Styles */
.course-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.course-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Course Thumbnail */
.course-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #f8f9fa;
}

.course-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image {
    transform: scale(1.05);
}

/* Course Progress Overlay */
.course-progress-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.progress-text {
    display: block;
    line-height: 1;
}

/* Course Content */
.course-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Urbanist', sans-serif;
}

.course-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.course-title a:hover {
    color: #000000;
}

/* Course Meta */
.course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.course-students {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.course-students svg {
    color: #000000;
    flex-shrink: 0;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.price-amount {
    color: #000;
    font-size: 16px;
}

.price-interval {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.price-free {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
}

/* Course Excerpt */
.course-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

/* Course Actions */
.course-actions {
    margin-top: auto;
}

.btn-continue-course,
.btn-view-course {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 40px;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-continue-course {
    background-color: #5ADBFF;
    color: #000000;
}

.btn-continue-course:hover {
    transform: translateY(-2px);
}

.btn-view-course {
    background: #5ADBFF;
    color: #000;
}

.btn-view-course:hover {
    background: #EBB211;
}

.search-results-container {
    margin-top: 40px;
}

/* AJAX Pagination Styles */
.course-pagination {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.pagination-btn:hover {
    background: #204ce5;
    border-color: #204ce5;
    color: #ffffff;
}

.pagination-btn.active {
    background: #204ce5;
    border-color: #204ce5;
    color: #fff;
    font-weight: 600;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-btn svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
}

.pagination-btn.prev-btn,
.pagination-btn.next-btn {
    padding: 10px;
}

/* Course grid loading overlay - matches product listing style */
.course-archive-content.loading,
.courses-section.loading,
.course-grid-container.loading {
    position: relative;
}

.course-archive-content.loading .course-grid,
.courses-section.loading .course-grid,
.course-grid-container.loading .course-grid {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.course-archive-content.loading::before,
.courses-section.loading::before,
.course-grid-container.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #5ADBFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 100;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-dots {
    padding: 0 8px;
    color: #999;
    font-weight: bold;
}

.prev-btn, .next-btn {
    font-weight: 600;
}

.load-more-btn {
    background: #5ADBFF;
    border-color: #5ADBFF;
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    min-width: 160px;
    height: auto;
}

.load-more-btn:hover {
    background: #4AC3E8;
    border-color: #4AC3E8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 219, 255, 0.3);
}

@media (max-width: 768px) {
    .pagination-wrapper {
        gap: 4px;
    }
    
    .pagination-btn {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 36px;
        height: 36px;
    }
    
    .prev-btn, .next-btn {
        padding: 6px 12px;
    }
}

/* Course Status Badge Styles */
.course-thumbnail {
    position: relative;
}

.course-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
}

.course-status-badge .status-icon {
    font-size: 12px;
    line-height: 1;
}

.course-status-badge .status-text {
    line-height: 1;
    white-space: nowrap;
}

/* Status Badge Variants */
.status-completed {
    background: rgba(34, 197, 94, 0.9);
    color: white;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-in-progress {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-enrolled {
    background: #5ADBFF;
    color: white;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.status-not-enrolled {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-guest {
    background: rgba(107, 114, 128, 0.9);
    color: white;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

/* Hover Effects */
.course-card:hover .course-status-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .course-status-badge {
        top: 15px;
        right: 15px;
        padding: 3px 6px;
        font-size: 10px;
        gap: 3px;
    }
    
    .course-status-badge .status-icon {
        font-size: 11px;
    }
}

/* No Results Styles */
.no-courses-found,
.no-search-results {
    text-align: center;
    padding: 60px 20px;
    background: transparent;
    border-radius: 12px;
    margin: 40px 0;
}

.no-courses-icon,
.no-results-icon {
    margin-bottom: 20px;
    color: #ccc;
}

.no-courses-found h3,
.no-search-results h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    font-family: 'Urbanist', sans-serif;
}

.no-courses-found p,
.no-search-results p {
    font-size: 16px;
    color: #666;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.btn-clear-search {
    background: #5ADBFF;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Urbanist', sans-serif;
}

.btn-clear-search:hover {
    background: #4ac3e8;
    transform: translateY(-1px);
}

/* Course Pagination */
.course-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.course-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0 4px;
    padding: 8px 12px;
    border: 1px solid #e9ecef;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.course-pagination .page-numbers:hover,
.course-pagination .page-numbers.current {
    background: #5ADBFF;
    color: #fff;
    border-color: #5ADBFF;
}

.course-pagination .page-numbers.prev,
.course-pagination .page-numbers.next {
    padding: 8px 16px;
}

/* Search Error */
.search-error {
    text-align: center;
    padding: 40px 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    color: #856404;
}

/* Quick View Modal Styles */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    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;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: quickViewSlideIn 0.3s ease-out;
}

@keyframes quickViewSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.quick-view-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.quick-view-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.quick-view-close svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.quick-view-loading {
    padding: 60px 40px;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #5ADBFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.quick-view-loading p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.quick-view-product-content {
    padding: 40px;
}

.quick-view-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.quick-view-images {
    position: relative;
}

.quick-view-main-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.quick-view-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.quick-view-details h1 {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.quick-view-categories,
.quick-view-tags {
    font-size: 14px;
    margin: 8px 0;
    color: #000000;
}

.quick-view-categories .category-label,
.quick-view-tags .tag-label {
    font-weight: 600;
    color: #000000;
    margin-right: 8px;
}

.quick-view-price {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 20px 0;
}

/* Sale Price Styling - Product List & Quick View */
.price del,
.quick-view-price del {
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
    order: 2;
}

.price ins,
.quick-view-price ins {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    order: 1;
}

.price .woocommerce-Price-amount,
.quick-view-price .woocommerce-Price-amount {
    font-weight: inherit;
}

/* Reorder price display - Sale price first, then original */
.price,
.quick-view-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Product List Price Styling */
.product-content .price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 8px 0 0 0;
}

.product-content .price del .woocommerce-Price-amount {
    font-size: 18px;
    color: #999;
}

.product-content .price ins .woocommerce-Price-amount {
    font-size: 18px;
    color: #000000;
}

.quick-view-description {
    color: #000000;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.quick-view-actions {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
    flex-direction: column;
}

/* Quick View Variations Styling */
.quick-view-variations {
    width: 100%;
    margin-bottom: 20px;
}

.variation-option {
    margin-bottom: 20px;
}

.variation-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
}

.variation-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.variation-btn {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    background: #fff;
    color: #333;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    min-width: 50px;
    text-align: center;
}

.variation-btn:hover {
    border-color: #5ADBFF;
    color: #5ADBFF;
    background: #f8f9fa;
}

.variation-btn.selected {
    border-color: #5ADBFF;
    background: #5ADBFF;
    color: white;
}

.variation-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    color: #999;
}

.quick-view-quantity button {
    width: 30px;
    height: 30px;
    border: none;
    background: #f8f9fa;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-quantity button:hover {
    background: #5ADBFF;
    color: #fff;
}

.quick-view-quantity input {
    width: 30px;
    height: 30px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.quick-view-add-to-cart {
    flex: 1;
    height: 48px;
    background: #5ADBFF;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 99999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-add-to-cart:hover {
    background: #4AC3E8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 219, 255, 0.3);
}

.quick-view-btn {
    background: #5ADBFF;
    color: #000;
    border: none;
    border-radius: 40px;
    padding: 18px 25px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-view-btn:hover {
    background: #EBB211;
}

.quick-view-btn svg {
    width: 16px;
    height: 16px;
}

/* Product Actions Layout */
.product-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

/* Add to Cart Icon Button (beside Quick View) */
.add-to-cart-icon-btn {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
    flex-shrink: 0;
}

.add-to-cart-icon-btn:hover {
    background: #EBB211;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(235, 178, 17, 0.4);
}

.add-to-cart-icon-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: white;
}

.add-to-cart-icon-btn.out-of-stock {
    background: #999;
    cursor: not-allowed;
}

.add-to-cart-icon-btn.out-of-stock:hover {
    background: #999;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Loading state for add to cart icon button */
.add-to-cart-icon-btn.adding {
    background: #4AC3E8;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-icon-btn.adding .loading-spinner {
    animation: spin 1s linear infinite;
}

/* Ensure loading spinner is centered */
.loading-spinner {
    display: block;
    margin: 0 auto;
}

/* Success state for add to cart icon button */
.add-to-cart-icon-btn.added {
    background: #EBB211;
}

.mlp.add-to-cart-icon-btn {
    flex: 1;
    background: #5ADBFF;
    color: #000;
    border: none;
    border-radius: 40px;
    padding: 18px 25px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 48px;
    font-weight: bold;
}

.mlp.quick-view-btn {
    background: #ffffff;
    color: #000;
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
    padding: 12px;
}

@media (max-width: 600px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 5px !important;
    }

}

/* Custom Sorting Dropdown Styling */
.custom-sorting-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.custom-sorting-dropdown {
    position: relative;
}

.sorting-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Urbanist', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: space-between;
}

.sorting-toggle:hover {
    border-color: #5ADBFF;
    background: #f8f9fa;
}

.sorting-toggle.active {
    border-color: #5ADBFF;
    background: #f8f9fa;
}

.sorting-icon {
    color: #666;
    flex-shrink: 0;
}

.sorting-text {
    flex: 1;
    text-align: left;
}

.dropdown-arrow {
    color: #666;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sorting-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.sorting-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -144px;
    right: 0;
    background: #fff;
    border: 2px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    width: 200px;
}

.sorting-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sorting-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
    color: #333;
}

.sorting-option:hover {
    background: #f8f9fa;
    color: #5ADBFF;
}

.sorting-option.selected {
    background: #5ADBFF;
    color: white;
}

.sorting-option:last-child {
    border-radius: 0 0 6px 6px;
}

.floating-cart-btn.adding {
    background: #28a745;
    animation: pulse 1s infinite;
}

.floating-cart-btn.added {
    background: #28a745;
}

.floating-cart-btn.added svg {
    color: #fff;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .course-archive-header .page-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .course-search-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .course-search-wrapper {
        min-height: 44px;
    }
    
    .course-search-input {
        padding: 10px 14px 10px 44px;
        font-size: 15px;
    }
    
    .course-search-wrapper .search-icon {
        left: 14px;
    }
    
    .search-clear-btn {
        right: 10px;
        width: 24px;
        height: 24px;
        padding: 4px;
    }
    
    /* Mobile Filter Styles */
    .search-filters-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-container {
        max-width: 100%;
        width: 100%;
    }
    
    .filters-container {
        min-width: auto;
        width: 100%;
    }
    
    .filter-group {
        gap: 15px;
        align-items: stretch;
    }
    
    .filter-select {
        min-width: auto;
        width: 100%;
    }
    
    /* Mobile Modern Filter Styles */
    .custom-filter-wrapper {
        width: 100%;
    }
    
    .filter-toggle {
        min-width: auto;
        width: 100%;
        justify-content: space-between;
        height: 100%;
    }

    .custom-filter-dropdown {
        height: 100%;
    }
    
    .filter-dropdown-menu {
        min-width: auto;
        width: 100%;
        left: 0;
        right: 0;
        max-height: 400px; 
        overflow-y: scroll;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    
    .course-card {
        border-radius: 12px;
    }
    
    .course-card:hover {
        transform: translateY(-4px);
    }
    
    .course-content {
        padding: 20px;
    }
    
    .course-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .course-meta {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .course-students {
        font-size: 13px;
    }
    
    .course-excerpt {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .btn-continue-course,
    .btn-view-course {
        padding: 12px 20px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .no-courses-found,
    .no-search-results {
        padding: 40px 20px;
        margin: 20px 0;
    }
    
    .sorting-toggle {
        min-width: 180px;
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .sorting-option {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .quick-view-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .quick-view-product {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quick-view-product-content {
        padding: 30px 20px;
    }
    
    .quick-view-details h1 {
        font-size: 24px;
    }
    
    .quick-view-price {
        font-size: 20px;
    }
    
    .quick-view-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quick-view-btn {
        font-size: 13px;
        padding: 8px 14px;
        margin-top: 6px;
    }
    
    .floating-cart-btn {
        width: 40px;
        height: 40px;
        opacity: 1;
        transform: scale(1);
    }
    
    .floating-cart-btn svg {
        width: 18px;
        height: 18px;
    }
}

body.archive.post-type-archive-sfwd-courses .container,
body.archive.post-type-archive-product .container {
    max-width: 1540px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.course-archive-header {
    text-align: left;
}

.course-archive-header  h1.page-title {
    font-size: 60px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Urbanist', sans-serif;
}

.search-container .search-input-wrapper {
    position: relative;
}

.search-input-wrapper input {
    padding-right: 70px !important;
    background-color: transparent !important;
}

.search-input-wrapper button.search-btn {
    position: absolute;
    right: 16px;
    bottom: 10px;
    border: none;
    background-color: transparent;
}

.search-input-wrapper button.clear-search-btn {
    position: absolute;
    right: 50px;
    bottom: 12px;
    background: transparent;
    border: none;
}

.course-results-info {
    margin-bottom: 15px;
    padding-bottom: 10px;
}

/* Modern WooCommerce Messages */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    position: relative;
    padding: 16px 20px 16px 50px;
    margin: 20px 0;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Success Messages */
.woocommerce-message {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-left: 4px solid #22c55e;
    color: #065f46;
}

.woocommerce-message::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Error Messages */
.woocommerce-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-left: 4px solid #ef4444;
    color: #7f1d1d;
}

.woocommerce-error::before {
    content: "✕";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Info Messages */
.woocommerce-info {
    background: linear-gradient(135deg, rgba(90, 219, 255, 0.1) 0%, rgba(90, 219, 255, 0.05) 100%);
    border-left: 4px solid #5ADBFF;
    color: #0c4a6e;
}

.woocommerce-info::before {
    content: "ℹ";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    color: #5ADBFF;
    background: rgba(90, 219, 255, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Notice Group Container */
.woocommerce-NoticeGroup {
    width: 100%;
    margin: 20px 0;
}

/* Message Links */
.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a {
    color: inherit;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.woocommerce-message a strong,
.woocommerce-error a strong,
.woocommerce-info a strong {
    font-weight: 400;
}

.woocommerce-message a:hover {
    color: #16a34a;
    text-decoration: none;
}

.woocommerce-error a:hover {
    color: #dc2626;
    text-decoration: none;
}

.woocommerce-info a:hover {
    color: #0284c7;
    text-decoration: none;
}

/* Hover Effects */
.woocommerce-message:hover,
.woocommerce-error:hover,
.woocommerce-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Close Button Styling */
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: inherit;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.woocommerce-message .button:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
}

.woocommerce-error .button:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.woocommerce-info .button:hover {
    background: rgba(90, 219, 255, 0.2);
    border-color: #5ADBFF;
}

.winnie-quote-sec{
    padding-top: 100px;
    background: #ffffff;
}

.winnie-quote-sec .custom-container {
    max-width: 1540px;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
}

.winnie-quote-sec .side-content-sec {
    border-radius: 30px;
    background: linear-gradient(278deg, #5ADBFF 1.28%, #0B3743 98.96%);
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.winnie-quote-sec .side-content-sec .col-left {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}
.winnie-quote-sec .side-content-sec .col-left .side-sec-des{
    margin: 0;
}

.winnie-quote-sec .side-content-sec .col-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.winnie-quote-sec .side-content-sec .col-left .side-sec-des p {
    color: #FFF;
    font-family: "PP Right Grotesk";
    font-size: 40px;
    font-style: italic;
    font-weight: 500;
    line-height: 52px;
}

.winnie-quote-sec .side-content-sec .col-left .quote_client_name {
    color: #FFF;
    font-family: "Sacramento", cursive;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.winnie-quote-sec .side-content-sec .col-right img {
    width: 100%;
    max-width: 550px;
    margin-top: -124px;
}

/* Winnie Quote Section Responsive */
@media (max-width: 1200px) {
    .winnie-quote-sec .side-content-sec .col-left {
        padding: 40px 30px;
    }
    
    .winnie-quote-sec .side-content-sec .col-left .side-sec-des p {
        font-size: 25px;
        line-height: 34px;
    }
}

@media (max-width: 992px) {
    .winnie-quote-sec .side-content-sec .col-left {
        padding: 35px 25px;
        gap: 35px;
        width: 60%;
    }

    .winnie-quote-sec .side-content-sec .col-right img {
        margin-top: 0px;
    }
}

@media (max-width: 768px) {
    .winnie-quote-sec .side-content-sec .col-left {
        padding: 40px 20px;
        gap: 25px;
        text-align: center;
        width: 60%;
    }
    
    .winnie-quote-sec .side-content-sec .col-right {
        width: 40%;
    }
}

@media (max-width: 576px) {
    .winnie-quote-sec .side-content-sec .col-left {
        padding: 30px 15px;
        gap: 20px;
    }
    
    .winnie-quote-sec .side-content-sec .col-right img {
        max-width: 320px;
    }
}

@media (max-width: 425px) {
    .winnie-quote-sec .side-content-sec {
        flex-direction: column;
    }
    
    .winnie-quote-sec .side-content-sec .col-left,
    .winnie-quote-sec .side-content-sec .col-right {
        width: 100%;
    }
    .winnie-quote-sec .side-content-sec .col-left {
        padding: 25px 15px;
        gap: 18px;
        margin-top: 20px;
    }
    
    .winnie-quote-sec .side-content-sec .col-left .side-sec-des p {
        font-size: 20px;
        line-height: 28px;
    }
    
    .winnie-quote-sec .side-content-sec .col-left .quote_client_name {
        font-size: 30px;
        padding-left: 30px;
    }
    
    .winnie-quote-sec .side-content-sec .col-right img {
        max-width: 280px;
    }
    
    .winnie-quote-sec .side-content-sec .col-right {
        margin-bottom: -30px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .woocommerce-message,
    .woocommerce-error,
    .woocommerce-info {
        padding: 14px 16px 14px 45px;
        margin: 15px 0;
        font-size: 13px;
    }
    
    .woocommerce-message::before,
    .woocommerce-error::before,
    .woocommerce-info::before {
        left: 14px;
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .woocommerce-message .button,
    .woocommerce-error .button,
    .woocommerce-info .button {
        padding: 4px 8px;
        font-size: 11px;
        margin-left: 8px;
    }
}

/* Custom Payment Method Radio Buttons */
.woocommerce-checkout #payment ul.payment_methods {
    list-style: none;
    padding: 20px;
    margin: 0;
    border: none;
}

.woocommerce-checkout #payment ul.payment_methods li {
    margin: 0 0 12px 0;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.woocommerce-checkout #payment ul.payment_methods li:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.woocommerce-checkout #payment ul.payment_methods li.payment_method_selected {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Payment Method Labels */
.woocommerce-checkout #payment ul.payment_methods li label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.woocommerce-checkout #payment ul.payment_methods li label:hover {
    font-weight: bold;
}

/* Hide Default Radio Buttons */
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

/* Custom Radio Button Design */
.woocommerce-checkout #payment ul.payment_methods li label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #000000;
    border-radius: 50%;
    margin-right: 12px;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

/* Radio Button Checked State */
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked + label::before {
    border-color: #000000;
    background: #000000;
}

/* Inner Dot for Checked State */
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5ADBFF;
    transition: all 0.3s ease;
}

/* Payment Method Icons (if any) */
.woocommerce-checkout #payment ul.payment_methods li label img {
    max-height: 24px;
    margin-left: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.woocommerce-checkout #payment ul.payment_methods li:hover label img {
    opacity: 1;
}

/* Payment Box Styling */
.woocommerce-checkout #payment div.payment_box {
    background: transparent !important;
    color: #333 !important;
    border-radius: 0;
    padding: 0 20px;
    margin: auto;
    margin-bottom: 16px;
    border: none;
}

.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}

.woocommerce-checkout #payment div.payment_box p {
    color: #333 !important;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

/* Place Order Button Enhancement */
.woocommerce-checkout #payment #place_order {
    background: #184CB1;
    border: none;
    border-radius: 99999px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 20px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.woocommerce-checkout #payment #place_order:hover {
    transform: translateY(-2px);
}

.woocommerce-checkout #payment #place_order:active {
    transform: translateY(0);
}

/* Mobile Responsive for Payment Methods */
@media (max-width: 768px) {
    .woocommerce-checkout #payment ul.payment_methods li label {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .woocommerce-checkout #payment ul.payment_methods li label::before {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
    
    .woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked + label::after {
        left: 23px;
        width: 6px;
        height: 6px;
    }
    
    .woocommerce-checkout #payment div.payment_box {
        padding: 16px;
    }
    
    .woocommerce-checkout #payment #place_order {
        padding: 16px 18px;
        font-size: 15px;
    }
}

/* Mobile Container and Layout */
@media (max-width: 768px) {
    .woocommerce-shop-container {
        padding: 10px;
        max-width: 100%;
    }
    
    .shop-content-wraper {
        padding: 0;
        flex-direction: column-reverse;
    }

    .shop-content-wraper aside.woocommerce-sidebar {
        max-width: unset;  
    }

    .shop-content-wraper #primary #main{
        width: 100%;
        padding: 0 15px;
    }
    
    /* Shop Page Title */
    .shop-page-title {
        text-align: center;
        margin: 20px 0 15px 0;
        padding: 0 10px;
    }
    
    .shop-page-title .main-page-title {
        font-size: 32px !important;
        font-weight: 700;
        line-height: 1.2;
        margin: 0;
    }
    
    /* Header Bar Layout */
    .woocommerce_header_bar {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .woocommerce_header_bar .left {
        order: 3;
        width: 100%;
    }
    
    /* Breadcrumbs */
    .woocommerce-breadcrumb-wrap {
        margin: 10px 0;
    }
    
    .woocommerce-breadcrumb {
        font-size: 13px;
        text-align: center;
    }
    
    /* Category Filter Mobile */
    .product-categories-filter {
        order: 1;
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    .header-category-section {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .ajax-category-filter.header-categories {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        padding: 0 5px !important;
        min-width: max-content;
    }
    
    .ajax-category-filter.header-categories li {
        flex-shrink: 0;
    }
    
    .ajax-category-filter.header-categories a {
        padding: 10px 16px !important;
        font-size: 14px !important;
        white-space: nowrap;
        border-radius: 20px;
        min-width: auto;
    }
    
    .ajax-category-filter.header-categories a:hover,
    .ajax-category-filter.header-categories a.active {
        transform: none;
    }
    
    /* Custom Sorting Mobile */
    .custom-sorting-wrapper {
        order: 2;
        margin: 0 0 15px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .custom-sorting-dropdown {
        width: 100%;
        max-width: 200px;
    }
    
    .sorting-toggle {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        justify-content: center;
        gap: 8px;
    }
    
    .sorting-dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
        max-width: none;
    }
    
    .sorting-option {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Mobile Product Grid */
@media (max-width: 768px) {
    .mlp.quick-view-btn {
        border-radius: 40px;
        height: 36px !important;
    }
    .woocommerce ul.products li.product {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .product-item {
        padding: 10px;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
        width: 90%;
    }
    
    .product-item .woocommerce-loop-product__link {
        display: flex;
        flex-direction: column;
        flex: 1;
        text-decoration: none;
    }
    
    /* Product Image */
    .product-item .woocommerce-loop-product__link img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 8px;
    }
    
    /* Product Content */
    .product-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .product-content h2,
    .product-content .woocommerce-loop-product__title {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        font-weight: 600;
        color: #333;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2; /* Standard property for compatibility */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-content .price {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #5ADBFF !important;
        margin: 0 !important;
    }
    
    .product-content .price del {
        font-size: 13px !important;
        color: #999 !important;
        margin-right: 5px;
    }
    
    /* Product Actions Mobile */
    .product-actions {
        display: flex;
        gap: 8px;
        margin-top: auto;
        padding-top: 8px;
    }
    
    .quick-view-btn {
        padding: 8px 12px !important;
        font-size: 12px !important;
        border-radius: 6px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .quick-view-btn:hover {
        background: #5ADBFF;
        border-color: #5ADBFF;
        color: #fff;
    }
    
    .add-to-cart-icon-btn {
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        border-radius: 6px;
        background: #5ADBFF;
        border: 1px solid #5ADBFF;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .add-to-cart-icon-btn:hover {
        background: #4AC3E8;
        border-color: #4AC3E8;
    }
    
    .add-to-cart-icon-btn.out-of-stock {
        background: #dc3545;
        border-color: #dc3545;
    }
    
    .add-to-cart-icon-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile Sidebar */
@media (max-width: 768px) {
    .woocommerce-sidebar {
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .sidebar-content {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 12px;
    }
    
    .filter-section {
        margin-bottom: 20px;
    }
    
    .ajax-tags-filter {
        gap: 10px;
    }
    
    .ajax-tags-filter a {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .ajax-tags-filter a:hover {
        transform: none;
    }
    
    .tag-count {
        font-size: 11px !important;
        padding: 2px 6px !important;
    }
}

/* Mobile Pagination */
@media (max-width: 768px) {
    .woocommerce nav.woocommerce-pagination {
        padding: 20px 10px;
        text-align: center;
    }
    
    .woocommerce nav.woocommerce-pagination ul {
        justify-content: center;
        gap: 5px;
    }
    
    .woocommerce nav.woocommerce-pagination ul li {
        margin: 0;
    }
    
    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span {
        padding: 8px 12px;
        font-size: 14px;
        min-width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile Results Counter */
@media (max-width: 768px) {
    .custom-results-counter {
        text-align: center;
        margin: 15px 10px;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .custom-results-counter p {
        font-size: 13px;
        margin: 0;
    }
}

/* Very Small Mobile (320px) */
@media (max-width: 480px) {
    .woocommerce-shop-container {
        padding: 5px;
    }
    
    .shop-page-title .main-page-title {
        font-size: 28px !important;
    }
    
    .ajax-category-filter.header-categories a {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }
    
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 5px !important;
    }
    
    .product-item .woocommerce-loop-product__link img {
        height: 150px;
    }
    
    .product-content h2,
    .product-content .woocommerce-loop-product__title {
        font-size: 15px !important;
    }
    
    .quick-view-btn {
        font-size: 13px !important;
        padding: 10px 14px !important;
    }
    
    .add-to-cart-icon-btn {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Custom Checkout Loading Spinner */
.woocommerce-checkout .blockUI.blockOverlay {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

.woocommerce-checkout .blockUI.blockOverlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid #e3f2fd;
    border-top: 3px solid #5ADBFF;
    border-radius: 50%;
    animation: checkout-spin 1s linear infinite;
    z-index: 9999;
}

/* Hide ALL Default WooCommerce Loading Elements */
.woocommerce-checkout .blockUI.blockMsg {
    display: none !important;
}

/* Hide default WooCommerce loading overlay */
.woocommerce .blockUI.blockOverlay {
    background: transparent !important;
}

/* Hide default WooCommerce processing class styling */
.woocommerce .processing {
    background-image: none !important;
}

/* Hide default WooCommerce loader */
.woocommerce .loader {
    display: none !important;
}

/* Hide default blockUI styling */
.blockUI.blockMsg {
    display: none !important;
}

/* Remove default WooCommerce checkout processing styles */
.woocommerce-checkout .woocommerce-checkout-payment .processing {
    background: none !important;
}

/* Hide default WooCommerce spinner */
.woocommerce .woocommerce-checkout .processing::before {
    display: none !important;
}

/* Remove default loading background images */
.woocommerce form .processing,
.woocommerce-page form .processing {
    background-image: none !important;
    background: transparent !important;
}

/* Hide default WooCommerce ajax loader */
.woocommerce .ajax-loader,
.woocommerce-page .ajax-loader {
    display: none !important;
}

/* Remove default blockUI message styling */
div.blockMsg {
    display: none !important;
}

/* Hide default WooCommerce checkout loader */
.woocommerce-checkout-review-order-table .processing {
    background: none !important;
}

/* Remove any default loading animations */
.woocommerce .processing,
.woocommerce-page .processing {
    animation: none !important;
    background-image: none !important;
}

/* Custom loading animation */
@keyframes checkout-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Loading overlay for specific sections */
.woocommerce-checkout .processing {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.woocommerce-checkout .processing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid #e3f2fd;
    border-top: 2px solid #5ADBFF;
    border-radius: 50%;
    animation: checkout-spin 0.8s linear infinite;
    z-index: 10;
}

/* Custom spinner for payment methods */
.woocommerce-checkout #payment .payment_methods.processing {
    position: relative;
}

.woocommerce-checkout #payment .payment_methods.processing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    z-index: 5;
}

.woocommerce-checkout #payment .payment_methods.processing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 3px solid #e3f2fd;
    border-top: 3px solid #5ADBFF;
    border-radius: 50%;
    animation: checkout-spin 1s linear infinite;
    z-index: 10;
}

/* Loading state for place order button */
.woocommerce-checkout #payment #place_order.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.woocommerce-checkout #payment #place_order.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: checkout-spin 0.8s linear infinite;
}

/* Custom loading for form updates */
.woocommerce-checkout form.checkout.processing {
    position: relative;
}

.woocommerce-checkout form.checkout.processing::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9998;
}

.woocommerce-checkout form.checkout.processing::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid #e3f2fd;
    border-top: 4px solid #5ADBFF;
    border-radius: 50%;
    animation: checkout-spin 1.2s linear infinite;
    z-index: 9999;
}

/* Pulse animation for loading states */
@keyframes checkout-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.woocommerce-checkout .loading-pulse {
    animation: checkout-pulse 1.5s ease-in-out infinite;
}

/* Mobile responsive loading */
@media (max-width: 768px) {
    .woocommerce-checkout .blockUI.blockOverlay::before {
        width: 32px;
        height: 32px;
        border-width: 2px;
    }
    
    .woocommerce-checkout form.checkout.processing::after {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}

.woocommerce-password-strength {
    margin-top: 5px;
    background-color: transparent !important;
    font-size: 14px;
    text-align: left;
}

.woocommerce-password-strength.bad,
.woocommerce-password-strength.short {
    color: #ff0000;
}

.woocommerce-password-strength.strong {
    color: #83c373;
}

.woocommerce-password-strength.good {
    color: #ffc733;
}

.woocommerce form p.form-row#billing_email_field {
    margin-bottom: 20px !important;
}

/* ========================================
   COURSE CARD ENHANCEMENTS
======================================== */

/* Course Short Description */
.course-short-description {
    margin: 8px 0 12px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em; /* Ensures exactly 2 lines */
}

/* Course Instructor */
.course-instructor {
    display: flex;
    align-items: center;
    margin: 8px 0 12px 0;
    color: #555;
    font-size: 13px;
    font-weight: 500;
}

.course-instructor svg {
    margin-right: 6px;
    color: #5ADBFF;
    flex-shrink: 0;
}

.course-instructor span {
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .course-short-description {
        font-size: 13px;
        margin: 6px 0 10px 0;
    }
    
    .course-instructor {
        font-size: 12px;
        margin: 6px 0 10px 0;
    }
    
    .course-instructor svg {
        width: 12px;
        height: 12px;
        margin-right: 5px;
    }
}

/* Ensure proper spacing in course content */
.course-content {
    padding: 16px;
}

.course-content .course-title {
    margin-bottom: 8px;
}

.course-content .course-meta {
    margin-top: 12px;
}

/* ========================================
   FEATURED COURSES SECTION
======================================== */

.featured-courses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 60px;
}

.featured-courses-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.featured-courses-section .section-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #000000;
    margin: 16px 0;
    line-height: 55px;
}

.featured-courses-section .section-subtitle {
    font-size: 1.1rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Courses Grid */
.featured-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

/* Featured Course Card */
.featured-course-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(90, 219, 255, 0.1);
    /* max-width: 33%; */
}

.featured-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(90, 219, 255, 0.3);
}

/* Featured Course Thumbnail */
.featured-course-thumbnail {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.featured-course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-course-card:hover .featured-course-image {
    transform: scale(1.05);
}

/* Featured Course Tags */
.featured-course-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.featured-course-tag.tag-new-course {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.featured-course-tag.tag-best-seller {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #2c3e50;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Featured Course Status */
.featured-course-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.featured-course-status.status-completed {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.featured-course-status.status-in-progress {
    background: rgba(255, 193, 7, 0.9);
    color: white;
}

.featured-course-status.status-enrolled {
    background: rgba(33, 150, 243, 0.9);
    color: white;
}

/* Featured Course Content */
.featured-course-content {
    padding: 24px;
}

.featured-course-title {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.featured-course-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-course-title a:hover {
    color: #5ADBFF;
}

.featured-course-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-course-instructor {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #555;
    font-size: 13px;
    font-weight: 500;
}

.featured-course-instructor svg {
    margin-right: 8px;
    color: #5ADBFF;
    flex-shrink: 0;
}

.featured-course-instructor span {
    color: #666;
}

/* Featured Course Meta */
.featured-course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.featured-course-students {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 13px;
}

.featured-course-students svg {
    margin-right: 6px;
    color: #5ADBFF;
}

.featured-course-price {
    font-weight: 600;
    color: #2c3e50;
}

.featured-course-price .price-amount {
    font-size: 1.1rem;
    color: #5ADBFF;
}

.featured-course-price .price-interval {
    font-size: 0.9rem;
    color: #666;
}

.featured-course-price .price-free {
    color: #4CAF50;
    font-size: 1rem;
}

/* Featured Course Actions */
.featured-course-actions {
    margin-top: 20px;
}

.btn-featured-course {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background:#5ADBFF;
    color: #000000;
    text-decoration: none;
    border-radius: 40px;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-featured-course:hover {
    background: #EBB211;
}

.btn-featured-course svg {
    transition: transform 0.3s ease;
}

.btn-featured-course:hover svg {
    transform: translateX(4px);
}

/* No Featured Courses */
.no-featured-courses {
    text-align: center;
    padding: 60px 20px;
    color: #000000;
    grid-column: 1 / -1;
}

.no-featured-icon {
    margin-bottom: 20px;
}

.no-featured-icon svg {
    color: #ddd;
}

.no-featured-courses h3 {
    margin-bottom: 12px;
    color: #000000;
    font-size: 1.5rem;
}

.no-featured-courses p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-courses-section {
        padding: 60px 0;
        margin-top: 40px;
    }

    .featured-course-card {
        max-width: 100%;
    }
    
    .featured-courses-section .section-title {
        font-size: 2rem !important;
    }
    
    .featured-courses-section .section-subtitle {
        font-size: 1rem;
    }
    
    .featured-courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-course-thumbnail {
        height: 200px;
    }
    
    .featured-course-content {
        padding: 20px;
    }
    
    .featured-course-title {
        font-size: 1.2rem;
    }
    
    .featured-course-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .featured-courses-section .section-title {
        font-size: 1.8rem;
    }
    
    .featured-course-thumbnail {
        height: 180px;
    }
    
    .featured-course-content {
        padding: 16px;
    }
}

/* ========================================
   WSE LEARNING SYSTEM SECTION
======================================== */

.wse-learning-system-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.wse-learning-system-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e7ff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.learning-system-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.learning-system-header .section-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;    
    line-height: 38px;
    margin: 15px 0 0;
}

.learning-system-header .section-description {
    font-size: 1.2rem;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Learning Cards Grid */
.learning-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 2;
}

/* Learning Card */
.learning-card {
    perspective: 1000px;
    height: 280px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.5s ease-in-out;
    transform-style: preserve-3d;
}

.learning-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(90, 219, 255, 0.1);
}

.card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
}

.card-back {
    background: white;
    color: black;
    transform: rotateY(180deg);
}

/* Card Front Elements */
.card-icon {
    margin-bottom: 20px;
    padding: 20px;
    /* background: linear-gradient(135deg, rgba(90, 219, 255, 0.1) 0%, rgba(74, 195, 232, 0.1) 100%); */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.card-icon svg {
    color: #000000;
    transition: all 0.3s ease;
}

/* .learning-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(90, 219, 255, 0.2) 0%, rgba(74, 195, 232, 0.2) 100%);
} */

.card-front .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.3;
}

.card-hover-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.learning-card:hover .card-hover-hint {
    opacity: 1;
    transform: translateX(5px);
}

.card-hover-hint svg {
    transition: transform 0.3s ease;
}

.learning-card:hover .card-hover-hint svg {
    transform: translateX(3px);
}

/* Card Back Elements */
.card-back .card-content {
    text-align: center;
}

.card-back .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: black;
    line-height: 1.3;
}

.card-back .card-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.95);
    font-weight: 400;
}

/* CTA Section */
.learning-system-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-curriculum-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #5ADBFF;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-curriculum-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-curriculum-cta:hover::before {
    left: 100%;
}

.btn-curriculum-cta:hover {
    background: #EBB211;
}

.btn-curriculum-cta svg {
    transition: transform 0.3s ease;
}

.btn-curriculum-cta:hover svg {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wse-learning-system-section {
        padding: 80px 0;
    }
    
    .learning-system-header .section-title {
        font-size: 2.2rem;
    }
    
    .learning-system-header .section-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .learning-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .learning-card {
        height: 260px;
    }
    
    .card-front,
    .card-back {
        padding: 30px 25px;
    }
    
    .card-front .card-title {
        font-size: 1.2rem;
    }
    
    .card-back .card-title {
        font-size: 1.1rem;
    }
    
    .card-back .card-description {
        font-size: 14px;
    }
    
    .btn-curriculum-cta {
        padding: 16px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .learning-system-header .section-title {
        font-size: 1.9rem;
    }
    
    .learning-card {
        height: 240px;
    }
    
    .card-front,
    .card-back {
        padding: 25px 20px;
    }
    
    .card-icon {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .card-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* Touch devices - tap to flip */
@media (hover: none) and (pointer: coarse) {
    .card-hover-hint span {
        display: none;
    }
    
    .card-hover-hint::after {
        content: 'Tap to learn more';
    }
    
    .learning-card:active .card-inner {
        transform: rotateY(180deg);
    }
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #000000;
    margin: 16px 0;
    line-height: 55px;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    justify-items: center;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(90, 219, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(90, 219, 255, 0.3);
}

/* Testimonial Content */
.testimonial-content {
    margin-bottom: 0;
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon svg {
    color: #000000;
    opacity: 0.8;
}

blockquote.testimonial-text{
    padding: 0;
    border: none;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.16px;
    color: #333333E5;
    margin: 0;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 0px;
    height: 100%;
    background: linear-gradient(135deg, #5ADBFF 0%, #EBB211 100%);
    border-radius: 2px;
}

/* Rating Stars */
.testimonial-rating {
    margin-top: 15px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars svg {
    color: #EBB211;
    width: 16px;
    height: 16px;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    border-color: #EBB211;
    transform: scale(1.05);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.author-course {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.author-location {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
}

.btn-view-more-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    color: #000000;
    text-decoration: none;
    border: 2px solid #5ADBFF;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: none;
}

.btn-view-more-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #5ADBFF;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-view-more-testimonials:hover::before {
    left: 0;
}

.btn-view-more-testimonials:hover {
    color: #000000;
    border-color: #5ADBFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 219, 255, 0.3);
}

.btn-view-more-testimonials svg {
    transition: transform 0.3s ease;
}

.btn-view-more-testimonials:hover svg {
    transform: translateX(4px);
}

/* Animation delays for staggered effect */
.testimonial-card[data-aos="fade-up"][data-aos-delay="100"] {
    animation-delay: 0.1s;
}

.testimonial-card[data-aos="fade-up"][data-aos-delay="200"] {
    animation-delay: 0.2s;
}

.testimonial-card[data-aos="fade-up"][data-aos-delay="300"] {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {

    .quote-icon img{
        width: 40px;
    }

    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-header .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-header .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .author-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .btn-view-more-testimonials {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .quote-icon img{
        width: 40px;
    }

    .testimonials-header .section-title {
        font-size: 1.9rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        padding-left: 0;
    }
    
    .testimonial-text::before {
        display: none;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .author-info {
        text-align: center;
    }
}

/* ========================================
   JOIN COMMUNITY CTA SECTION
======================================== */

.join-community-section {
    /* padding: 120px 0;
    background: linear-gradient(135deg, #5ADBFF 0%, #4AC3E8 50%, #EBB211 100%);
    position: relative;
    overflow: hidden;
    color: #000000; */
    background: url(https://stg-winniesschoolofexcellence-staging.kinsta.cloud/wp-content/uploads/2025/11/elite_bg.jpg) no-repeat center / cover #000000;
    padding: 80px 0 60px;
    z-index: 0;
    position: relative;
    overflow: hidden;
}

/* .join-community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
} */

.community-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Community Stats */
.community-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: 'PP Right Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Content */
.community-main-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-headline {
    font-family: 'PP Right Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
}

.community-subtext {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Community Features */
.community-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
    color: #000000;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-icon svg {
    color: #000000;
    width: 18px;
    height: 18px;
}

/* CTA Buttons */
.community-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 25px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #000000;
    background: #5ADBFF;
    border-color: #5ADBFF !important;
    color: #000000;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-cta:hover::before {
    left: 100%;
}

.btn-primary-cta:hover {
    background: #EBB211;
    border-color: #EBB211 !important;
}

.btn-primary-cta svg {
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover svg {
    transform: translateX(5px);
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 25px;
    background: #fff;
    color: #000000;
    text-decoration: none;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 40px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary-cta:hover::before {
    left: 0;
}

.btn-secondary-cta:hover {
    background: #EBB211;
    border-color: #EBB211;
}

/* Guarantee */
.community-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.guarantee-icon svg {
    color: #000000;
    width: 16px;
    height: 16px;
}

/* Background Elements */
.community-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .join-community-section {
        padding: 80px 0;
    }
    
    .community-stats {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .stat-item {
        padding: 20px 15px;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .community-headline {
        font-size: 2.4rem;
    }
    
    .community-subtext {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .community-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .feature-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .community-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 18px 30px;
        font-size: 15px;
    }
    
    .community-guarantee {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .community-headline {
        font-size: 2rem;
    }
    
    .community-subtext {
        font-size: 1rem;
    }
    
    .community-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        font-size: 13px;
        padding: 16px 25px;
    }
}

/* ========================================
   FINAL CTA STATS COMPONENT
======================================== */

.final-cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.cta-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Final CTA Stats */
@media (max-width: 768px) {
    .final-cta-stats {
        gap: 25px;
    }
    
    .cta-stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .final-cta-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}