.video-nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.video-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgb(255, 134, 82) 0%, rgb(255, 114, 62) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 134, 82, 0.3);
    pointer-events: auto;
    position: absolute;
    top: 0;
}

.video-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 134, 82, 0.4);
}

.video-arrow-left {
    left: 6px;
    /* Position on the left side */
}

.video-arrow-right {
    right: 6px;
    /* Position on the right side */
}

.video-arrow svg {
    width: 20px;
    height: 20px;
}

/* Video Enhancements */
.video-header-wrapper {
    position: relative;
    overflow: hidden;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-thumbnail-container img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .video-play-overlay {
    opacity: 1;
}

.team-card:hover .video-thumbnail-container img {
    transform: scale(1.05);
}

.video-play-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 134, 82, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.team-card:hover .video-play-btn {
    transform: scale(1);
    background: rgba(255, 134, 82, 1);
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.video-featured {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-category {
    font-size: 12px;
    color: rgb(255, 134, 82);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 4px 0;
}

.video-stats {
    font-size: 12px;
    color: #666;
    margin: 4px 0;
}

.video-stats i {
    color: rgb(255, 134, 82);
    margin-right: 4px;
}

/* Responsive */
@media (max-width: 1200px) {
    .video-arrow-left {
        left: -15px;
    }

    .video-arrow-right {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .video-arrow {
        width: 40px;
        height: 40px;
    }

    .video-arrow svg {
        width: 16px;
        height: 16px;
    }

    .video-arrow-left {
        left: -5px;
    }

    .video-arrow-right {
        right: -5px;
    }

    .video-play-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .video-duration {
        font-size: 10px;
        padding: 2px 4px;
    }

    .video-featured {
        font-size: 8px;
        padding: 2px 4px;
    }
}

@media (max-width: 480px) {
    .video-nav-arrows {
        display: none;
    }
}

/* Additional styles for better visibility */
.video-arrow:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.video-arrow:hover:before {
    background: rgba(255, 134, 82, 0.1);
}

.products-nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

.products-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 134, 82, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(255, 134, 82, 0.3);
    backdrop-filter: blur(10px);
}

.products-arrow:hover {
    background: rgb(255, 134, 82);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 134, 82, 0.5);
}

.products-arrow-left {
    left: 6px;
}

.products-arrow-right {
    right: 6px;
}

/* Modern Product Card */
.modern-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.modern-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 134, 82, 0.3);
}

/* Card Header */
.product-card-header {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Favorite Button */
.favorite-btn-container {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
}

.modern-favorite-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-favorite-btn:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.heart-icon {
    width: 20px;
    height: 20px;
    stroke: #6c757d;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

.heart-icon.favorited {
    fill: #ff4757;
    stroke: #ff4757;
}

/* Modern Badges */
.modern-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modern-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 4px;
}

.modern-badge.featured {
    background: linear-gradient(135deg, #10b981, #059669);
}

.modern-badge.discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.modern-badge.low-stock {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.modern-badge.out-stock {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.badge-icon {
    font-size: 12px;
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-product-card:hover .product-main-image {
    transform: scale(1.08);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.placeholder-content {
    text-align: center;
    color: #6c757d;
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    stroke: currentColor;
    stroke-width: 1.5;
    opacity: 0.5;
}

/* Hover Overlay */
.product-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 134, 82, 0.9), rgba(255, 114, 62, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.modern-product-card:hover .product-hover-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.quick-view-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.quick-view-btn:hover {
    background: white;
    color: rgb(255, 134, 82);
    transform: scale(1.05);
}

.quick-view-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Therapist Avatar */
.therapist-avatar {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 15;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(255, 134, 82), rgb(255, 114, 62));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 134, 82, 0.3);
    border: 3px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 134, 82, 0.5);
}

.therapist-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.therapist-avatar:hover .therapist-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Card Content */
.product-card-content {
    padding: 16px;
    position: relative;
}

.product-header-info {
    margin-bottom: 16px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.product-category-tag,
.product-brand-tag {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.product-brand-tag {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.prescription-notice {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #dc3545;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prescription-notice svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Stock Indicator */
.stock-indicator {
    margin-bottom: 16px;
}

.stock-bar {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.stock-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.stock-text {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
}

/* Price Section */
.price-section {
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 134, 82, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 134, 82, 0.1);
}

.price-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 24px;
    font-weight: 800;
    color: rgb(255, 134, 82);
    line-height: 1;
}

.original-price {
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
    text-decoration: line-through;
    line-height: 1;
}

.savings-info {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.btn-details,
.btn-add-cart,
.btn-out-stock {
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-details {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white !important;
}

.btn-details:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
    color: white;
    text-decoration: none;
}

.btn-add-cart {
    background: linear-gradient(135deg, rgb(255, 134, 82), rgb(255, 114, 62));
    color: white;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, rgb(255, 114, 62), rgb(235, 94, 42));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 134, 82, 0.4);
}

.btn-out-stock {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-details svg,
.btn-add-cart svg,
.btn-out-stock svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-arrow {
        width: 40px;
        height: 40px;
    }

    .products-arrow-left {
        left: -20px;
    }

    .products-arrow-right {
        right: -20px;
    }

    .product-card-header {
        height: 200px;
    }

    .product-card-content {
        padding: 16px;
    }

    .product-name {
        font-size: 16px;
    }

    .current-price {
        font-size: 20px;
    }

    .product-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .btn-details,
    .btn-add-cart,
    .btn-out-stock {
        padding: 10px 14px;
        font-size: 12px;
    }

    .modern-favorite-btn {
        width: 36px;
        height: 36px;
    }

    .heart-icon {
        width: 18px;
        height: 18px;
    }

    .therapist-avatar {
        bottom: 12px;
        left: 12px;
    }

    .avatar-circle {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .modern-badges {
        top: 12px;
        left: 12px;
    }

    .favorite-btn-container {
        top: 12px;
        right: 12px;
    }

    .modern-badge {
        padding: 4px 8px;
        font-size: 10px;
    }

    .product-meta {
        gap: 6px;
    }

    .product-category-tag,
    .product-brand-tag {
        padding: 3px 8px;
        font-size: 10px;
    }
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.modern-product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.modern-product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.modern-product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.modern-product-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Swiper specific styles for products */
.products-slider .swiper-slide {
    height: auto;
}

.products-slider .swiper-wrapper {
    align-items: stretch;
}

/* Additional Visual Enhancements */
.modern-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 134, 82, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.modern-product-card:hover::before {
    opacity: 1;
}

/* Loading State for Images */
.product-main-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.product-main-image.loaded {
    animation: none;
    background: none;
}

/* Glassmorphism effect for cards */
.modern-product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced hover states */
.product-category-tag:hover,
.product-brand-tag:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.prescription-notice:hover {
    color: #dc3545;
    transform: scale(1.02);
    transition: all 0.2s ease;
}


.modern-favorite-btn:focus,
.quick-view-btn:focus,
.btn-details:focus,
.btn-add-cart:focus {
    outline: 2px solid rgb(255, 134, 82);
    outline-offset: 2px;
}

        .feature {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
            height: 250px;
        }
    
        .feature-card {
            display: flex;
            flex-direction: column;
            background: #f8f9fa;
    
            border-radius: 5px;
            text-align: center;
        }
    
        .feature-card.tall {
            grid-row: span 2;
        }
    
        .feature-card-img {
            width: 100%;
            height: 100%;
            border-radius: 5px;
        }
    
        .info {
            margin-top: 10px;
        }
    
        .hover-content {
            display: none;
        }
    
        .feature-card:hover .hover-content {
            display: block;
        }
    
        .title-box h3 {
            font-size: 18px;
            margin-bottom: 10px;
            cursor: pointer;
        }
    
        .title-box {
            backdrop-filter: none !important;
    
        }
    
        .feature-card .normal {
            line-height: 0px !important;
        }
    
        .feature-card-overlay {
            position: relative;
            width: 100%;
            height: 100%;
        }
    
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            transition: 0.3s ease-in-out;
        }
    
    
        .feature-card:hover .overlay {
            background: rgb(0 0 0 / 34%);
        }
    
        .title-box {
            bottom: 30% !important;
        }
    
        @media (max-width: 480px) {
            .section-heading.style-1 .section-subtitle {
                font-size: 30px;
            }
    
            .title-box h3 {
                font-size: 6px;
            }
        }
    
        .new-class {
            position: relative;
        }
    
        #btn-set {
            position: relative;
            display: flex;
            justify-content: center;
            top: 12px;
        }

                .faq-section {
                    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
                    padding: 80px 0;
                    position: relative;
                    overflow: hidden;
                }
        
                .faq-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="faq-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff8652" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>') repeat;
                    pointer-events: none;
                }
        
                .faq-subtitle {
                    text-align: center;
                    color: #6c757d;
                    font-size: 1.1rem;
                    margin-top: 10px;
                    margin-bottom: 50px;
                }
        
                .faq-container {
                    max-width: 900px;
                    margin: 0 auto;
                    position: relative;
                    z-index: 2;
                }
        
                .faq-item {
                    background: white;
                    border-radius: 16px;
                    margin-bottom: 20px;
                    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                    overflow: hidden;
                    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                    border: 1px solid rgba(255, 134, 82, 0.1);
                }
        
                .faq-item:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
                    border-color: rgba(255, 134, 82, 0.2);
                }
        
                .faq-question {
                    padding: 24px 28px;
                    cursor: pointer;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    transition: all 0.3s ease;
                    background: linear-gradient(135deg, rgba(255, 134, 82, 0.02) 0%, rgba(255, 114, 62, 0.02) 100%);
                    position: relative;
                }
        
                .faq-question:hover {
                    background: linear-gradient(135deg, rgba(255, 134, 82, 0.05) 0%, rgba(255, 114, 62, 0.05) 100%);
                }
        
                .faq-question:focus {
                    outline: 2px solid #ff8652;
                    outline-offset: 2px;
                }
        
                .faq-question-content {
                    display: flex;
                    align-items: center;
                    flex: 1;
                }
        
                .faq-icon {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background: linear-gradient(135deg, #ff8652 0%, #ff723e 100%);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 20px;
                    flex-shrink: 0;
                }
        
                .faq-icon i {
                    color: white;
                    font-size: 16px;
                }
        
                .faq-question-text {
                    margin: 0;
                    font-size: 18px;
                    font-weight: 600;
                    color: #2d3748;
                    line-height: 1.4;
                    padding-right: 20px;
                }
        
                .faq-toggle {
                    width: 36px;
                    height: 36px;
                    border-radius: 50%;
                    background: linear-gradient(135deg, #ff8652 0%, #ff723e 100%);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                    flex-shrink: 0;
                }
        
                .faq-toggle i {
                    color: white;
                    font-size: 14px;
                    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                }
        
                .faq-answer {
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                    background: white;
                }
        
                .faq-answer-content {
                    padding: 0 28px 24px 28px;
                    display: flex;
                    align-items: flex-start;
                }
        
                .faq-answer-icon {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background: linear-gradient(135deg, #ff8652 0%, #ff723e 100%);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 20px;
                    flex-shrink: 0;
                    margin-top: 4px;
                }
        
                .faq-answer-icon i {
                    color: white;
                    font-size: 16px;
                }
        
                .faq-answer p {
                    margin: 0;
                    line-height: 1.7;
                    color: #4a5568;
                    font-size: 16px;
                    padding-top: 8px;
                }
        
                /* Active states */
                .faq-item.active {
                    border-color: #ff8652;
                    box-shadow: 0 8px 30px rgba(255, 134, 82, 0.15);
                }
        
                .faq-item.active .faq-question {
                    background: linear-gradient(135deg, rgba(255, 134, 82, 0.08) 0%, rgba(255, 114, 62, 0.08) 100%);
                }
        
                .faq-item.active .faq-toggle i {
                    transform: rotate(45deg);
                }
        
                .faq-answer.active {
                    max-height: 300px;
                }
        
                /* FAQ CTA Section */
                .faq-cta {
                    margin-top: 60px;
                    text-align: center;
                    position: relative;
                    z-index: 2;
                }
        
                .faq-cta-content {
                    background: linear-gradient(135deg, #F47B46, #ffe7dd, #ffffff, #ffe7dd, #F47B46);
                    padding: 40px;
                    border-radius: 20px;
                    color: #2d3748;
                    position: relative;
                    overflow: hidden;
                }
        
                .faq-cta-content::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="cta-pattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>') repeat;
                    pointer-events: none;
                }
        
                .faq-cta h3 {
                    font-size: 28px;
                    font-weight: 700;
                    margin-bottom: 12px;
                    position: relative;
                    z-index: 1;
                }
        
                .faq-cta p {
                    font-size: 18px;
                    margin-bottom: 30px;
                    opacity: 0.9;
                    position: relative;
                    z-index: 1;
                }
        
                .faq-cta-buttons {
                    display: flex;
                    gap: 20px;
                    justify-content: center;
                    flex-wrap: wrap;
                    position: relative;
                    z-index: 1;
                }
        
                .btn-enhanced {
                    border-radius: 0.5rem;
                    font-weight: 600;
                    padding: 0.75rem 1.5rem;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                    transition: all 0.3s ease;
        
                    text-decoration: none;
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                }
        
                .btn-primary-enhanced {
                    background: white;
                    color: #ff8652;
                    border: 1px solid #2d3748;
                }
        
                .btn-primary-enhanced:hover {
                    background: rgba(255, 255, 255, 0.1);
                    color: white;
                    transform: translateY(-2px);
                    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
                    text-decoration: none;
                    border: 1px solid #2d3748;
                }
        
                .btn-secondary-enhanced {
                    background: rgba(255, 255, 255, 0.2);
                    color: white;
                    border: 1px solid #2d3748;
                    backdrop-filter: blur(10px);
                }
        
                .btn-secondary-enhanced:hover {
                    background: rgba(255, 255, 255, 0.3);
                    color: white;
                    transform: translateY(-2px);
                    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
                    text-decoration: none;
                    border: 1px solid #2d3748;
                }
        
                /* Animations */
                @keyframes fadeInUp {
                    from {
                        opacity: 0;
                        transform: translateY(30px);
                    }
        
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
        
                .faq-item {
                    animation: fadeInUp 0.6s ease forwards;
                }
        
                .faq-item:nth-child(1) {
                    animation-delay: 0.1s;
                }
        
                .faq-item:nth-child(2) {
                    animation-delay: 0.2s;
                }
        
                .faq-item:nth-child(3) {
                    animation-delay: 0.3s;
                }
        
                .faq-item:nth-child(4) {
                    animation-delay: 0.4s;
                }
        
                .faq-item:nth-child(5) {
                    animation-delay: 0.5s;
                }
        
                /* Responsive Design */
                @media (max-width: 768px) {
                    .faq-section {
                        padding: 60px 0;
                    }
        
                    .faq-container {
                        margin: 0 20px;
                    }
        
                    .faq-question {
                        padding: 20px 24px;
                        flex-direction: column;
                        align-items: flex-start;
                        gap: 15px;
                    }
        
                    .faq-question-content {
                        width: 100%;
                    }
        
                    .faq-toggle {
                        align-self: flex-end;
                        margin-top: -40px;
                    }
        
                    .faq-question-text {
                        font-size: 16px;
                        padding-right: 50px;
                    }
        
                    .faq-answer-content {
                        padding: 0 24px 20px 24px;
                        flex-direction: column;
                        gap: 15px;
                    }
        
                    .faq-answer-icon {
                        margin-right: 0;
                        margin-bottom: 10px;
                        align-self: flex-start;
                    }
        
                    .faq-answer p {
                        padding-top: 0;
                        font-size: 15px;
                    }
        
                    .faq-cta-content {
                        padding: 30px 20px;
                        margin: 0 20px;
                    }
        
                    .faq-cta h3 {
                        font-size: 24px;
                    }
        
                    .faq-cta p {
                        font-size: 16px;
                    }
        
                    .faq-cta-buttons {
                        flex-direction: column;
                        align-items: center;
                    }
        
                    .faq-cta-buttons .btn {
                        width: 100%;
                        max-width: 250px;
                    }
                }
        
                @media (max-width: 480px) {
                    .faq-icon {
                        width: 36px;
                        height: 36px;
                        margin-right: 16px;
                    }
        
                    .faq-icon i {
                        font-size: 14px;
                    }
        
                    .faq-answer-icon {
                        width: 36px;
                        height: 36px;
                    }
        
                    .faq-answer-icon i {
                        font-size: 14px;
                    }
        
                    .faq-toggle {
                        width: 32px;
                        height: 32px;
                    }
        
                    .faq-toggle i {
                        font-size: 12px;
                    }
                }
        
        
                .faq-question:focus-visible {
                    outline: 3px solid #ff8652;
                    outline-offset: 2px;
                }
        
        
                @media (prefers-contrast: high) {
                    .faq-item {
                        border: 2px solid #000;
                    }
        
                    .faq-question-text {
                        color: #000;
                    }
        
                    .faq-answer p {
                        color: #000;
                    }
                }
        
        
                @media (prefers-reduced-motion: reduce) {
        
                    .faq-item,
                    .faq-toggle i,
                    .faq-answer {
                        animation: none;
                        transition: none;
                    }
                }

                                  .custom-plan-card {
                                      transition: transform 0.3s ease, box-shadow 0.3s ease;
                                      background-color: #f8f9fa;
                                      padding: 20px;
                                      border-radius: 12px;
                                  }
                
                                  .custom-plan-card:hover {
                                      transform: translateY(-10px);
                                      box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.1);
                                  }
                
                                  .custom-card-title {
                                      font-size: 1.5rem;
                                      color: #333;
                                  }
                
                                  .custom-plan-price h4 {
                                      font-size: 2rem;
                                      font-weight: bold;
                                  }
                
                                  .custom-plan-features {
                                      margin-bottom: 20px;
                                  }
                
                                  .custom-feature-item {
                                      font-size: 1.1rem;
                                      margin: 10px 0;
                                      color: #333;
                                      display: flex;
                                      align-items: center;
                                  }
                
                                  .custom-feature-item i {
                                      margin-right: 10px;
                                  }
                
                                  .custom-plan-list .list-group-item {
                                      border: none;
                                      padding: 12px;
                                  }
                
                                  .custom-buy-now-btn {
                                      background-color: #e67e22;
                                      color: white !important;
                                      font-weight: bold;
                                      transition: background-color 0.3s ease;
                                      padding: 12px 0;
                                  }
                
                                  .custom-buy-now-btn:hover {
                                      background-color: #e67e22;
                                  }