/* Modern Index Page Styles - Click Village - NEW DESIGN */

:root {
    /* Modern Color Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    
    /* Sophisticated Colors */
    --primary-purple: #667eea;
    --primary-blue: #4facfe;
    --accent-pink: #f093fb;
    --accent-coral: #f5576c;
    --success-green: #43e97b;
    --warning-orange: #fee140;
    
    /* Neutral Colors */
    --dark-navy: #1a1d29;
    --medium-grey: #2d3748;
    --light-grey: #edf2f7;
    --pure-white: #ffffff;
    
    /* Typography */
    --heading-font: 'Inter', 'Poppins', sans-serif;
    --body-font: 'Inter', 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-max-width: 1400px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 20px 40px rgba(102, 126, 234, 0.4);
}

/* Hero Section with Stunning New Design */
.welcome-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-gradient);
    overflow: hidden;
}

.welcome-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(240, 147, 251, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 172, 254, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.welcome-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    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="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.8" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.2" fill="rgba(255,255,255,0.12)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float-bg 20s infinite linear;
    z-index: 1;
}

.welcome-hero .container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
}

.welcome-hero-txt {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1.2s ease-out;
}

.welcome-hero-txt h2 {
    font-family: var(--heading-font);
    font-size: 4.5rem;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1.2s ease-out 0.3s both;
    letter-spacing: -0.02em;
}

.welcome-hero-txt h2 span {
    background: linear-gradient(135deg, #f093fb, #43e97b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.welcome-hero-txt p {
    font-family: var(--body-font);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease-out 0.6s both;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Box - Futuristic Design */
.welcome-hero-serch-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-colored);
    animation: fadeInUp 1.2s ease-out 0.9s both;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-hero-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.single-welcome-hero-form {
    position: relative;
}

.single-welcome-hero-form h3 {
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-welcome-hero-form input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: var(--body-font);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 500;
}

.single-welcome-hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.single-welcome-hero-form input:focus {
    border-color: var(--accent-pink);
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(240, 147, 251, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.welcome-hero-form-icon {
    position: absolute;
    left: 20px;
    top: 51px;
    color: var(--accent-pink);
    font-size: 20px;
    z-index: 2;
}

.search-button {
    background: var(--secondary-gradient) !important;
    border: none !important;
    color: white !important;
    padding: 18px 36px !important;
    border-radius: var(--radius-md) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: var(--heading-font) !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
    height: 64px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
}

.search-button::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;
}

.search-button:hover::before {
    left: 100%;
}

.search-button:hover {
    background: linear-gradient(135deg, #f5576c, #fa709a) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 40px rgba(245, 87, 108, 0.4) !important;
}

/* Categories Section - Glassmorphism Design */
.list-topics {
    padding: var(--section-padding);
    background: 
        linear-gradient(135deg, var(--light-grey) 0%, #f7fafc 100%),
        radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    position: relative;
}

.list-topics::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="10" cy="10" r="2" fill="rgba(102,126,234,0.1)"/><circle cx="90" cy="30" r="1.5" fill="rgba(240,147,251,0.1)"/><circle cx="30" cy="70" r="2.5" fill="rgba(79,172,254,0.1)"/><circle cx="70" cy="90" r="1" fill="rgba(67,233,123,0.1)"/></svg>');
    animation: float-bg 30s infinite linear;
}

.list-topics-content ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.single-list-topics-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.single-list-topics-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.single-list-topics-content:hover::before {
    opacity: 0.05;
}

.single-list-topics-content:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: var(--shadow-colored);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(102, 126, 234, 0.3);
}

.single-list-topics-icon {
    position: relative;
    z-index: 3;
    margin-bottom: 32px;
}

.single-list-topics-icon img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.single-list-topics-content:hover .single-list-topics-icon img {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        var(--shadow-lg),
        0 0 0 8px rgba(102, 126, 234, 0.1);
    border-color: white;
}

.single-list-topics-content h2 {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.single-list-topics-content p {
    font-family: var(--body-font);
    color: var(--medium-grey);
    line-height: 1.7;
    position: relative;
    z-index: 3;
    font-size: 15px;
    font-weight: 400;
}

/* Section Headers - Ultra Modern */
.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: var(--secondary-gradient);
    border-radius: 3px;
    animation: pulse-width 2s infinite ease-in-out;
}

.section-header p {
    font-family: var(--body-font);
    font-size: 1.25rem;
    color: var(--medium-grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Info Section (How it Works) - Card Grid Design */
.works {
    padding: var(--section-padding);
    background: 
        linear-gradient(135deg, #fafbfc 0%, var(--pure-white) 100%),
        radial-gradient(circle at 70% 70%, rgba(79, 172, 254, 0.08) 0%, transparent 70%);
    position: relative;
}

.single-how-works {
    background: var(--pure-white);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.single-how-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.single-how-works:hover::before {
    transform: scaleX(1);
}

.single-how-works::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(79, 172, 254, 0.03), transparent);
    transform: rotate(0deg);
    transition: transform 0.8s ease;
    z-index: 1;
}

.single-how-works:hover::after {
    transform: rotate(180deg);
}

.single-how-works:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.2);
}

.single-how-works-icon {
    position: relative;
    z-index: 3;
    margin-bottom: 32px;
}

.single-how-works-icon img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 4px solid var(--pure-white);
    background: var(--pure-white);
    padding: 8px;
}

.single-how-works:hover .single-how-works-icon img {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 
        var(--shadow-lg),
        0 0 0 8px rgba(79, 172, 254, 0.1);
}

.single-how-works h2 {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.single-how-works h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-how-works:hover h2 a {
    color: var(--primary-blue);
}

.single-how-works p {
    font-family: var(--body-font);
    color: var(--medium-grey);
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative;
    z-index: 3;
    font-size: 15px;
    font-weight: 400;
}

.how-work-btn {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.how-work-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.how-work-btn:hover::before {
    left: 100%;
}

.how-work-btn:hover {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(79, 172, 254, 0.4);
}

/* Households Section - Elegant Design */
.explore {
    padding: var(--section-padding);
    background: 
        linear-gradient(135deg, var(--light-grey) 0%, #f7fafc 100%),
        radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.08) 0%, transparent 70%);
    position: relative;
}

.explore-content .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.single-explore-item {
    background: var(--pure-white);
    border: 1px solid rgba(245, 87, 108, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.single-explore-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--warning-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.single-explore-item:hover::before {
    transform: scaleX(1);
}

.single-explore-item:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 87, 108, 0.2);
}

.single-explore-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.single-explore-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.single-explore-item:hover .single-explore-img img {
    transform: scale(1.1);
}

.single-explore-img-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.single-explore-item:hover .single-explore-img-info {
    opacity: 1;
}

.single-explore-txt {
    padding: 30px;
}

.single-explore-txt h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.single-explore-txt h2 a {
    color: #333;
    transition: color 0.3s ease;
}

.single-explore-txt h2 a:hover {
    color: #ff545a;
}

/* Ultra Modern Products Slider */
.products-section {
    padding: var(--section-padding);
    background: 
        linear-gradient(135deg, var(--dark-navy) 0%, #2d3748 100%),
        radial-gradient(circle at 20% 80%, rgba(240, 147, 251, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 172, 254, 0.15) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.products-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="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.products-section .section-header h2 {
    color: white;
}

.products-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.products-section .section-header h2::after {
    background: var(--success-gradient);
}

.products-slider-wrapper {
    position: relative;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 80px;
    z-index: 2;
}

.products-slider {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.products-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 40px;
    padding: 8px;
}

.product-slide {
    min-width: 350px;
    flex-shrink: 0;
}

.modern-product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(240, 147, 251, 0.1) 0%, 
        rgba(79, 172, 254, 0.1) 50%,
        rgba(67, 233, 123, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.modern-product-card:hover::before {
    opacity: 1;
}

.modern-product-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(102, 126, 234, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.modern-product-card:hover .product-image {
    transform: scale(1.1) rotate(2deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 84, 90, 0.8), rgba(244, 48, 50, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    font-weight: 600;
    color: #333;
}

.overlay-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    transform: rotate(-5deg);
}

.product-content {
    padding: 30px;
    text-align: center;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-farm {
    color: #007bff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.product-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.status-available {
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-unavailable {
    color: #dc3545;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Ultra Modern Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    color: white;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 20;
    font-size: 20px;
}

.slider-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.slider-nav:hover::before {
    opacity: 1;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 8px rgba(79, 172, 254, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

.slider-nav i {
    width: 24px;
    height: 24px;
    z-index: 2;
    position: relative;
}

.slider-nav:hover {
    background: linear-gradient(135deg, #f43032, #d32f2f);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 84, 90, 0.4);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 84, 90, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #ff545a, #f43032);
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(255, 84, 90, 0.4);
}

/* Ultra Modern View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--success-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.view-all-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.view-all-btn:hover::before {
    opacity: 1;
}

.view-all-btn:hover::after {
    left: 100%;
}

.view-all-btn:hover {
    text-decoration: none;
    color: white;
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 8px rgba(67, 233, 123, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.view-all-btn i {
    width: 20px;
    height: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    position: relative;
}

.view-all-btn:hover i {
    transform: translateX(8px) rotate(360deg);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, #f43032, #d32f2f);
    text-decoration: none;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 84, 90, 0.4);
}

/* Statistics Section Modern Design */
.statistics {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    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="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

.statistics-counter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.single-ststistics-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    min-width: 200px;
}

.single-ststistics-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.statistics-content {
    margin-bottom: 15px;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.statistics-content span {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Events Section - Premium Design */
.blog {
    padding: var(--section-padding);
    background: 
        linear-gradient(135deg, var(--pure-white) 0%, #fafbfc 100%),
        radial-gradient(circle at 20% 80%, rgba(67, 233, 123, 0.08) 0%, transparent 70%);
    position: relative;
}

.single-blog-item {
    background: var(--pure-white);
    border: 1px solid rgba(67, 233, 123, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.single-blog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--success-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.single-blog-item:hover::before {
    transform: scaleX(1);
}

.single-blog-item:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(67, 233, 123, 0.2);
}

.single-blog-item-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.single-blog-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.single-blog-item:hover .single-blog-item-img img {
    transform: scale(1.1);
}

.manifestacija-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.date-day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-top: 2px;
}

.single-blog-item-txt {
    padding: 30px;
}

.single-blog-item-txt h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.single-blog-item-txt h2 a {
    color: #333;
    transition: color 0.3s ease;
}

.single-blog-item-txt h2 a:hover {
    color: #ff545a;
}

.manifestacija-info {
    margin-bottom: 15px;
}

.manifestacija-date,
.manifestacija-location {
    display: flex;
    align-items: center;
    margin: 5px 0;
    font-size: 14px;
    color: #666;
    gap: 8px;
}

.no-events-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-style: italic;
}

/* Ultra Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes float-bg {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse-width {
    0%, 100% { transform: translateX(-50%) scaleX(1); }
    50% { transform: translateX(-50%) scaleX(1.2); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.6); }
}

/* Sophisticated Hover Effects */
.shimmer-effect {
    background: linear-gradient(
        45deg,
        rgba(255,255,255,0.1) 25%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.1) 75%
    );
    background-size: 200% 200%;
    animation: shimmer 2s infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-slider-wrapper {
        padding: 0 40px;
    }
    
    .product-slide {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .welcome-hero-txt h2 {
        font-size: 2.5rem;
    }
    
    .welcome-hero-form {
        grid-template-columns: 1fr;
    }
    
    .products-slider-wrapper {
        padding: 0 30px;
    }
    
    .product-slide {
        min-width: 280px;
    }
    
    .product-image-container {
        height: 220px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
    }
    
    .price-tag {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .manifestacija-date-badge {
        top: 10px;
        right: 10px;
        padding: 6px;
    }
    
    .date-day {
        font-size: 16px;
    }
    
    .date-month {
        font-size: 10px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .statistics-counter {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .welcome-hero {
        min-height: 80vh;
    }
    
    .welcome-hero-txt h2 {
        font-size: 2rem;
    }
    
    .welcome-hero-serch-box {
        padding: 20px;
        margin: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .single-list-topics-content,
    .single-how-works,
    .single-explore-item,
    .single-blog-item {
        margin-bottom: 20px;
    }
}