/* Modern Section Styles */

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #6c5ce7 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-banner::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ffeaa7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-offer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-text {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffeaa7;
}

.offer-desc {
    font-size: 0.95rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: rotate(0deg) scale(1.05);
}

/* Modern Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.2;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 1rem;
}

/* Category Cards */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.category-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-lg);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
    transition: var(--transition-normal);
}

.category-card:hover::before {
    background: linear-gradient(135deg, rgba(255,107,157,0.3) 0%, rgba(108,92,231,0.7) 100%);
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 3;
    color: white;
}

.category-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

/* Testimonials */
.testimonials {
    background: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    margin: 0 16px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    border: 4px solid var(--primary-color);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--dark-text);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.testimonial-title {
    color: var(--light-text);
    font-size: 0.95rem;
}

.testimonial-rating {
    margin-top: 16px;
    color: #fbbf24;
}

/* Newsletter Section */
.newsletter {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::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"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
}

.newsletter-content {
    position: relative;
    z-index: 2;
    color: white;
}

.newsletter h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.newsletter p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 16px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    min-width: 250px;
}

.newsletter-form .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.newsletter-form .btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-banner {
        padding: 80px 0 60px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
}
/* Mode
rn Promo Tiles */
.promo-tiles {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.tile {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,107,157,0.1) 0%, rgba(108,92,231,0.1) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 2;
}

.tile:hover::before {
    opacity: 1;
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tile:hover img {
    transform: scale(1.1);
}

/* Modern Assurance Badges */
.assurance-badges {
    background: var(--bg-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.assurance-badges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(108, 92, 231, 0.05) 100%);
}

.badges-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.badges-list li {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.badges-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.badges-list li:hover::before {
    transform: scaleX(1);
}

.badges-list li:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-colored-primary);
    color: var(--primary-color);
}

/* Shop By Sections */
.shop-by {
    padding: 80px 0;
    background: var(--bg-primary);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.shop-grid.cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.shop-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.shop-card:hover::before {
    transform: scaleX(1);
}

.shop-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-colored-primary);
    color: var(--primary-color);
}

/* Category Ribbon */
.category-ribbon {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-lg) 0;
    position: sticky;
    top: 80px;
    z-index: 99;
    backdrop-filter: blur(20px);
}

.ribbon-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.ribbon-list li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
}

.ribbon-list li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.ribbon-list li a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 157, 0.05);
}

.ribbon-list li a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .tiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .badges-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .shop-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ribbon-list {
        gap: var(--space-md);
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 var(--space-md);
    }
    
    .ribbon-list li {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .tiles-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-grid,
    .shop-grid.cols-4 {
        grid-template-columns: 1fr;
    }
}
/* 
Modern Featured Products Section */
.featured-products {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(108, 92, 231, 0.03) 0%, transparent 50%);
}

.featured-products .section-header {
    position: relative;
    z-index: 2;
}

.featured-products .section-header h2 {
    background: linear-gradient(135deg, #2d3436 0%, #ff6b9d 50%, #6c5ce7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-products .section-header::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* Fixed Carousel Row with Proper Arrow Positioning */
.carousel-row {
    position: relative;
    margin: 60px 0;
    padding: 0;
}

.scroll-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

.row-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    z-index: 100;
    box-shadow: var(--shadow-lg);
    color: var(--dark-text);
    font-size: 1rem;
}

.row-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-colored-primary);
}

.row-nav.prev {
    left: 20px;
}

.row-nav.next {
    right: 20px;
}

.row-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.row-nav:disabled:hover {
    background: var(--white);
    color: var(--dark-text);
    border-color: var(--gray-200);
    transform: translateY(-50%);
    box-shadow: var(--shadow-md);
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* Modern Service Video Cards */
.service-video-card {
    width: 320px;
    flex: 0 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--gray-100);
}

.service-video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
    border-radius: var(--radius-lg);
}

.service-video-card:hover::before {
    opacity: 0.05;
}

.service-video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-video-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background: var(--gray-900);
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    position: relative;
    z-index: 2;
}

.service-video-card:hover .service-video {
    transform: scale(1.05);
}

.service-video-info {
    padding: var(--space-xl);
    background: var(--white);
    position: relative;
    z-index: 2;
}

.service-video-title {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.service-video-desc {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Modern Promo Videos Grid */
.promo-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.promo-banner::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="promoPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b9d" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23promoPattern)"/></svg>');
}

.promo-banner .section-header {
    position: relative;
    z-index: 2;
}

.promo-banner .section-header h2 {
    background: linear-gradient(135deg, #ff6b9d 0%, #6c5ce7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
}

.promo-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    position: relative;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-900);
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-md);
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-container:hover video {
    transform: scale(1.05);
}

.video-info {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.video-info h3 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: var(--space-sm);
}

.video-info p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Enhanced Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Modern Loading State */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: var(--light-text);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.loading::before {
    content: '';
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-row {
        padding: 0 40px;
    }
    
    .service-video-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .carousel-row {
        padding: 0 20px;
    }
    
    .row-nav {
        width: 48px;
        height: 48px;
    }
    
    .service-video-card {
        width: 300px;
    }
    
    .service-video-wrapper {
        height: 350px;
    }
    
    .promo-videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .video-container {
        height: 200px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .carousel-row {
        padding: 0 10px;
    }
    
    .service-video-card {
        width: 280px;
    }
    
    .service-video-wrapper {
        height: 300px;
    }
    
    .promo-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .featured-products,
    .promo-banner {
        padding: 60px 0;
    }
}/* Spec
ific Modern Section Styles */

/* Modern Services Section */
.modern-services {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.modern-services .section-header h2 {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #6c5ce7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.modern-services .section-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern Stories Section */
.modern-stories {
    background: var(--white);
    position: relative;
}

.modern-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 234, 167, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
}

.modern-stories .section-header h2 {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 50%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

/* Modern Videos Section */
.modern-videos {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fff5f8 100%);
}

.modern-videos .section-header h2 {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

/* Modern Products Section */
.modern-products {
    background: var(--bg-primary);
    position: relative;
}

.modern-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
}

.modern-products .section-header h2 {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #2d3436 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

.modern-products .section-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Section Headers */
.section-header {
    position: relative;
    margin-bottom: 80px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
    font-weight: 400;
}

/* Enhanced Section Divider */
.section-divider {
    width: 100px;
    height: 6px;
    background: var(--gradient-primary);
    margin: 0 auto 32px;
    border-radius: 3px;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

/* Enhanced CTA Buttons */
.section-cta .btn {
    margin: 0 10px 10px 0;
    min-width: 200px;
}

.section-cta .btn-xl {
    padding: var(--space-xl) var(--space-3xl);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
}

/* Responsive Design for Modern Sections */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
    
    .modern-services .section-cta,
    .modern-products .section-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-cta .btn {
        margin: 5px 0;
        min-width: 250px;
    }
    
    .section-divider {
        width: 80px;
        height: 5px;
    }
    
    .section-divider::before {
        width: 14px;
        height: 14px;
        border: 3px solid white;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .section-cta .btn {
        min-width: 200px;
        font-size: 1rem;
    }
}/*
 Enhanced Product Cards with Modern Features */
.product-card {
    position: relative;
    overflow: visible;
}

.product-card .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.product-card .product-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    color: var(--gray-600);
    z-index: 3;
    box-shadow: var(--shadow-sm);
}

.product-card .product-wishlist:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-colored-primary);
}

.product-card .product-wishlist.active {
    background: var(--primary-color);
    color: var(--white);
}

.product-card .product-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.product-card .cart-btn {
    flex: 1;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.product-card .cart-btn::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;
}

.product-card .cart-btn:hover::before {
    left: 100%;
}

.product-card .cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored-primary);
}

.product-card .quick-view-btn {
    width: 52px;
    height: 52px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--gray-600);
}

.product-card .quick-view-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Enhanced Rating Display */
.product-card .rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-card .rating-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.product-card .rating-count {
    color: var(--muted-text);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Enhanced Price Display */
.product-card .price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-card .price {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-card .old-price {
    font-size: 1.125rem;
    color: var(--muted-text);
    text-decoration: line-through;
    font-weight: 500;
}

.product-card .discount-badge {
    background: var(--error-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Product Category Tag */
.product-card .product-category {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Enhanced Product Title */
.product-card .product-title {
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-text);
    line-height: 1.4;
    min-height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover Effects for Product Cards */
.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

/* Loading State Enhancement */
.loading {
    text-align: center;
    padding: 80px 20px;
    color: var(--light-text);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.loading::before {
    content: '';
    width: 56px;
    height: 56px;
    border: 5px solid var(--gray-200);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 24px;
    display: block;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
}

/* Responsive Product Cards */
@media (max-width: 768px) {
    .product-card .product-badge {
        top: 12px;
        left: 12px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .product-card .product-wishlist {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
    
    .product-card .price {
        font-size: 1.375rem;
    }
    
    .product-card .old-price {
        font-size: 1rem;
    }
    
    .product-card .cart-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .product-card .quick-view-btn {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .product-card .product-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .product-card .quick-view-btn {
        width: 100%;
        height: 44px;
    }
}/* 
Enhanced Responsive Design for Carousel */
@media (max-width: 1024px) {
    .carousel-row {
        padding: 0 15px;
    }
    
    .scroll-row {
        padding: 20px 50px;
        margin: 0 -50px;
    }
    
    .row-nav.prev {
        left: 15px;
    }
    
    .row-nav.next {
        right: 15px;
    }
    
    .service-video-card {
        width: 300px;
    }
    
    .service-video-wrapper {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .carousel-row {
        padding: 0 10px;
    }
    
    .scroll-row {
        padding: 20px 40px;
        margin: 0 -40px;
    }
    
    .row-nav {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
    
    .row-nav.prev {
        left: 10px;
    }
    
    .row-nav.next {
        right: 10px;
    }
    
    .service-video-card {
        width: 280px;
    }
    
    .service-video-wrapper {
        height: 280px;
    }
    
    .video-container {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .carousel-row {
        padding: 0 5px;
    }
    
    .scroll-row {
        padding: 20px 35px;
        margin: 0 -35px;
        gap: 16px;
    }
    
    .row-nav {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    
    .row-nav.prev {
        left: 5px;
    }
    
    .row-nav.next {
        right: 5px;
    }
    
    .service-video-card {
        width: 260px;
    }
    
    .service-video-wrapper {
        height: 260px;
    }
    
    .video-container {
        height: 160px;
    }
    
    .promo-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}/* Fi
xed Carousel Navigation Arrows */
.carousel-row {
    position: relative;
    margin: 60px 0;
    padding: 0;
}

.scroll-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

.row-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    z-index: 100;
    box-shadow: var(--shadow-lg);
    color: var(--dark-text);
    font-size: 1.125rem;
}

.row-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-colored-primary);
}

.row-nav.prev {
    left: -25px;
}

.row-nav.next {
    right: -25px;
}

.row-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.row-nav:disabled:hover {
    background: var(--white);
    color: var(--dark-text);
    border-color: var(--gray-200);
    transform: translateY(-50%);
    box-shadow: var(--shadow-md);
}

/* Ensure arrows are visible on container */
.featured-products .container {
    position: relative;
    overflow: visible;
}

/* Service Video Cards with proper sizing */
.service-video-card {
    width: 320px;
    flex: 0 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    border: 1px solid var(--gray-100);
}

.service-video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-video-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    background: var(--gray-900);
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    position: relative;
    z-index: 2;
}

.service-video-card:hover .service-video {
    transform: scale(1.05);
}

.service-video-info {
    padding: var(--space-xl);
    background: var(--white);
    position: relative;
    z-index: 2;
}

.service-video-title {
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.service-video-desc {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive Arrow Positioning */
@media (max-width: 1200px) {
    .row-nav.prev {
        left: -20px;
    }
    
    .row-nav.next {
        right: -20px;
    }
}

@media (max-width: 1024px) {
    .row-nav {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }
    
    .row-nav.prev {
        left: -15px;
    }
    
    .row-nav.next {
        right: -15px;
    }
    
    .service-video-card {
        width: 300px;
    }
    
    .service-video-wrapper {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .row-nav {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
    
    .row-nav.prev {
        left: -10px;
    }
    
    .row-nav.next {
        right: -10px;
    }
    
    .service-video-card {
        width: 280px;
    }
    
    .service-video-wrapper {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .row-nav {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .row-nav.prev {
        left: -5px;
    }
    
    .row-nav.next {
        right: -5px;
    }
    
    .service-video-card {
        width: 260px;
    }
    
    .service-video-wrapper {
        height: 240px;
    }
    
    .scroll-row {
        gap: 16px;
    }
}

/* Ensure proper container spacing for arrows */
.modern-services .container,
.modern-stories .container {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .modern-services .container,
    .modern-stories .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 480px) {
    .modern-services .container,
    .modern-stories .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}/* For
ce Arrow Visibility and Positioning */
.carousel-row {
    position: relative !important;
    overflow: visible !important;
}

.row-nav {
    display: flex !important;
    position: absolute !important;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--gray-200) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.row-nav:hover {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

/* Ensure container has proper spacing for arrows */
.featured-products {
    overflow: visible !important;
}

.featured-products .container {
    overflow: visible !important;
    position: relative !important;
}

/* Make sure scroll container doesn't hide arrows */
.scroll-row {
    position: relative !important;
    z-index: 1 !important;
}

/* Alternative positioning for better visibility */
@media (max-width: 1024px) {
    .row-nav.prev {
        left: 10px !important;
        background: rgba(255, 255, 255, 0.9) !important;
    }
    
    .row-nav.next {
        right: 10px !important;
        background: rgba(255, 255, 255, 0.9) !important;
    }
}

@media (max-width: 768px) {
    .row-nav.prev {
        left: 15px !important;
    }
    
    .row-nav.next {
        right: 15px !important;
    }
}

/* Ensure arrows are clickable */
.row-nav {
    pointer-events: all !important;
    cursor: pointer !important;
}

.row-nav:disabled {
    pointer-events: none !important;
    cursor: not-allowed !important;
}/*
 Fixed Arrow Positioning */
.row-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    color: var(--dark-text);
    font-size: 1.125rem;
}

.row-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-colored-primary);
}

.row-nav.prev {
    left: -30px;
}

.row-nav.next {
    right: -30px;
}

.row-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.row-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-text);
    border-color: var(--gray-200);
    transform: translateY(-50%);
    box-shadow: var(--shadow-md);
}

/* Ensure container has space for arrows */
.featured-products .container {
    position: relative;
    overflow: visible;
    padding-left: 60px;
    padding-right: 60px;
}

/* Responsive Arrow Positioning */
@media (max-width: 1200px) {
    .row-nav.prev {
        left: -25px;
    }
    
    .row-nav.next {
        right: -25px;
    }
    
    .featured-products .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 1024px) {
    .row-nav {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }
    
    .row-nav.prev {
        left: -20px;
    }
    
    .row-nav.next {
        right: -20px;
    }
    
    .featured-products .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .row-nav {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }
    
    .row-nav.prev {
        left: 10px;
    }
    
    .row-nav.next {
        right: 10px;
    }
    
    .featured-products .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .row-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .row-nav.prev {
        left: 15px;
    }
    
    .row-nav.next {
        right: 15px;
    }
    
    .featured-products .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}/
* Testimonials Section Arrow Fix */
.testimonials {
    overflow: visible;
}

.testimonials .container {
    position: relative;
    overflow: visible;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonials-slider {
    position: relative;
}

/* Slider Controls for Testimonials */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    color: var(--dark-text);
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-colored-primary);
}

/* Alternative positioning for testimonial arrows */
#prev-testimonial,
#next-testimonial {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

#prev-testimonial {
    left: -30px;
}

#next-testimonial {
    right: -30px;
}

/* Responsive testimonial arrows */
@media (max-width: 1024px) {
    .testimonials .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    #prev-testimonial {
        left: -20px;
    }
    
    #next-testimonial {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .testimonials .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    #prev-testimonial {
        left: 10px;
    }
    
    #next-testimonial {
        right: 10px;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    #prev-testimonial {
        left: 15px;
    }
    
    #next-testimonial {
        right: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}