/* DROPDOWN FIX - HIDDEN BY DEFAULT */
.dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
}

/* 2ADVANCED NAVIGATION STYLING */
.nav-link {
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
    border-radius: 2px 2px 0 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover {
    color: #dc2626;
    transform: translateY(-2px);
}

/* Active Navigation State */
.nav-link.active {
    color: #dc2626;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.12));
}

.nav-link.active::before {
    width: 100%;
    height: 4px;
}

/* Dropdown Button Styling */
.dropdown-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
    cursor: pointer;
}

.dropdown-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
    border-radius: 2px 2px 0 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.dropdown:hover .dropdown-button::before {
    width: 80%;
}

.dropdown:hover .dropdown-button {
    color: #dc2626;
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.08));
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.dropdown-button i {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-button i {
    transform: rotate(180deg);
}

/* HERO TITLE - ENHANCED 2ADVANCED GRADIENT ANIMATION */
.hero-title {
    font-size: 4rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    background: linear-gradient(45deg, #06b6d4, #3b82f6, #8b5cf6, #c084fc, #06b6d4) !important;
    background-size: 400% 400% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: hero-gradient-flow 6s ease-in-out infinite !important;
    letter-spacing: -0.02em !important;
    color: transparent !important;
    text-shadow: 0 0 40px rgba(6, 182, 212, 0.3), 0 0 80px rgba(59, 130, 246, 0.2) !important;
    position: relative !important;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hero-glow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes hero-gradient-flow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    25% { 
        background-position: 25% 25%;
        filter: brightness(1.1);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
    75% { 
        background-position: 75% 75%;
        filter: brightness(1.1);
    }
}

@keyframes hero-glow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* VIEW PROFILE BUTTON - RED 2ADVANCED GRADIENT */
.view-profile-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3) !important;
    width: 100% !important;
}

.view-profile-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.5) !important;
}

/* THUMBNAILS - HORIZONTAL LAYOUT */
.tattoo-thumbnails {
    display: flex !important;
    flex-direction: row !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
}

.tattoo-thumbnail {
    flex: 1 !important;
    aspect-ratio: 1 !important;
    border-radius: 8px !important;
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* COSMIC HERO BACKGROUND WITH 2ADVANCED EFFECTS */
.cosmic-hero {
    background: linear-gradient(135deg, #000000 0%, #1a0d2e 20%, #4c1d95 50%, #8b5cf6 80%, #a855f7 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* FLOATING PARTICLES - ENHANCED WITH MORE COLORS */
.floating-particle {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.7;
}

.floating-particle.xl { width: 8px; height: 8px; background: #06b6d4; top: 20%; left: 10%; animation-delay: 0s; }
.floating-particle.large { width: 6px; height: 6px; background: #3b82f6; top: 30%; left: 80%; animation-delay: 2s; }
.floating-particle.medium { width: 4px; height: 4px; background: #8b5cf6; top: 60%; left: 20%; animation-delay: 4s; }
.floating-particle.small { width: 3px; height: 3px; background: #06b6d4; top: 80%; left: 70%; animation-delay: 6s; }
.floating-particle.tiny { width: 2px; height: 2px; background: #a855f7; top: 40%; left: 90%; animation-delay: 1s; }

.floating-particle.cyan { background: #22d3ee; }
.floating-particle.purple { background: #c084fc; }
.floating-particle.indigo { background: #818cf8; }
.floating-particle.pink { background: #f472b6; }
.floating-particle.emerald { background: #34d399; }
.floating-particle.yellow { background: #fbbf24; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* MOVING LINES - DIAGONAL AND HORIZONTAL */
.moving-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.6), transparent);
    animation: line-move 8s linear infinite;
    opacity: 0.5;
}

.moving-line.diagonal {
    transform: rotate(45deg);
    width: 150px;
    animation: diagonal-move 10s linear infinite;
}

@keyframes line-move {
    0% { transform: translateX(-200px); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateX(100vw); opacity: 0; }
}

@keyframes diagonal-move {
    0% { transform: rotate(45deg) translateX(-200px); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: rotate(45deg) translateX(100vw); opacity: 0; }
}

/* SHIMMERING STARS */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: shimmer 3s ease-in-out infinite;
}

.star.bright { animation: shimmer-bright 2s ease-in-out infinite; }

@keyframes shimmer {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes shimmer-bright {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(2); }
}

/* WAVY LINES */
.wavy-line {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
    animation: wave-move 6s linear infinite;
    opacity: 0.4;
}

@keyframes wave-move {
    0% { transform: translateX(-100px) scaleX(0); }
    50% { transform: translateX(50vw) scaleX(1); }
    100% { transform: translateX(100vw) scaleX(0); }
}

.verified-badge {
    color: #3b82f6;
    margin-left: 4px;
}

/* STATS CARDS - 2ADVANCED STYLE */
.stats-card {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid transparent !important;
    border-radius: 12px !important;
    padding: 24px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg, #06b6d4, #3b82f6, #8b5cf6, #06b6d4);
    background-size: 400% 400%;
    animation: border-gradient 4s ease-in-out infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.stats-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    background: rgba(0, 0, 0, 0.4) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
}

@keyframes border-gradient {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 50% 0%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 100%; }
}

.stats-number {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: white !important;
    margin-bottom: 8px !important;
    line-height: 1 !important;
}

.stats-label {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 4px !important;
}

.stats-description {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* 2ADVANCED FOOTER LINK ANIMATIONS - ENHANCED RED THEME */
.footer-link {
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #fecaca, #fca5a5, #f87171, #ef4444, #dc2626, #b91c1c, #991b1b);
    background-size: 200% 100%;
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    animation: gradient-shift 3s ease-in-out infinite;
}

.footer-link:hover::before {
    width: 110%;
    height: 5px;
    bottom: -4px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ffffff, #fecaca, #ffffff);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.footer-link:hover::after {
    width: 120%;
}

.footer-link:hover {
    color: #dc2626;
    transform: translateY(-3px);
    text-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}

/* Social Media Icons Enhanced - RED THEME */
.social-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ef4444, #dc2626, #b91c1c, #991b1b);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Footer Section Headers - NO HOVER EFFECTS */
.footer-header {
    position: relative;
    /* Removed all hover effects */
}

/* 2ADVANCED MOBILE HAMBURGER MENU */
.mobile-menu-button {
    display: none;
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 60;
}

.hamburger-line {
    position: absolute;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    left: 4px;
}

.hamburger-line:nth-child(1) {
    top: 8px;
}

.hamburger-line:nth-child(2) {
    top: 15px;
}

.hamburger-line:nth-child(3) {
    top: 22px;
}

.mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: linear-gradient(90deg, #dc2626, #b91c1c);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: linear-gradient(90deg, #dc2626, #b91c1c);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(30, 30, 30, 0.98));
    backdrop-filter: blur(10px);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-nav-item {
    margin-bottom: 8px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.mobile-nav-link:hover::before {
    left: 0;
}

.mobile-nav-link:hover {
    color: white;
    transform: translateX(8px);
}

/* Mobile Dropdown */
.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 8px;
}

.mobile-dropdown.active {
    max-height: 300px;
}

.mobile-dropdown-link {
    display: block;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-dropdown-link:hover {
    color: white;
    background: rgba(239, 68, 68, 0.2);
    border-left-color: #ef4444;
    transform: translateX(4px);
}

/* Mobile Auth Buttons */
.mobile-auth-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-auth-button {
    display: block;
    width: 100%;
    padding: 16px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-login-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.mobile-join-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: 2px solid transparent;
}

.mobile-join-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
}

/* CARD TAGS - SINGLE LINE WITH ELLIPSIS AND HOVER DROPDOWN */
.card-tags-container {
    position: relative;
    height: 24px;
    overflow: hidden;
    margin-bottom: 16px;
}

.card-tags-visible {
    display: flex;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.card-tag {
    flex-shrink: 0;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.card-tags-more {
    flex-shrink: 0;
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-tags-more:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Tags Dropdown */
.tags-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
}

.card-tags-container:hover .tags-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}

.tags-dropdown-title {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    text-align: center;
}

.tags-dropdown-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.tags-dropdown-item {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tags-dropdown-item:hover {
    transform: scale(1.05);
}

.tags-dropdown-link {
    display: block;
    text-align: center;
    margin-top: 8px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tags-dropdown-link:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-1px);
}



/* ===== BLOG SECTION STYLES ===== */

/* Blog Card Base Styles */
.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Blog Card Header with Gradients */
.blog-card-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-card-header.pink-gradient {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 50%, #db2777 100%);
}

.blog-card-header.blue-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
}

.blog-card-header.green-gradient {
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
}

.blog-card-header.purple-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #7c3aed 100%);
}

/* Blog Icon */
.blog-icon {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Blog Card Content */
.blog-card-content {
    padding: 1.5rem;
}

/* Blog Category and Read Time */
.blog-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.blog-category.aftercare {
    background-color: #fef2f2;
    color: #dc2626;
}

.blog-category.trends {
    background-color: #eff6ff;
    color: #2563eb;
}

.blog-category.beginner {
    background-color: #f0fdf4;
    color: #16a34a;
}

.blog-category.spotlight {
    background-color: #faf5ff;
    color: #9333ea;
}

.blog-read-time {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

/* Blog Title */
.blog-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Blog Description */
.blog-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Blog Meta Information */
.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.blog-author {
    font-weight: 500;
}

.blog-views {
    font-weight: 400;
}

/* Blog Read More Link - 2Advanced Style */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #dc2626;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.blog-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
    transition: width 0.3s ease;
}

.blog-read-more:hover {
    color: #b91c1c;
    transform: translateX(4px);
}

.blog-read-more:hover::after {
    width: 100%;
}

.blog-read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* View All Button - 2Advanced Style */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
}

.view-all-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 ease;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.4), 0 4px 6px -2px rgba(220, 38, 38, 0.2);
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%);
}

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

.view-all-btn:hover i {
    transform: translateX(4px);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

/* Responsive Design for Blog Cards */
@media (max-width: 768px) {
    .blog-card-content {
        padding: 1rem;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-description {
        font-size: 0.8rem;
    }
}


/* ===== PRICING SECTION STYLES ===== */

/* Pricing Section Background */
.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%, #f8fafc 100%);
    position: relative;
}

/* Animated Background Texture */
.pricing-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    animation: bgShift 8s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    }
    50% { 
        background: 
            radial-gradient(circle at 80% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 60% 60%, rgba(120, 219, 255, 0.15) 0%, transparent 50%);
    }
}

/* Animated Lines */
.pricing-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.pricing-lines::before,
.pricing-lines::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
    animation: lineMove 6s linear infinite;
}

.pricing-lines::before {
    left: 25%;
    animation-delay: 0s;
}

.pricing-lines::after {
    right: 25%;
    animation-delay: 3s;
}

@keyframes lineMove {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* Animated Flares */
.pricing-flares {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.pricing-flares::before,
.pricing-flares::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.8) 0%, transparent 70%);
    animation: flareFloat 8s ease-in-out infinite;
}

.pricing-flares::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.pricing-flares::after {
    top: 70%;
    right: 20%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
}

@keyframes flareFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Popular Card */
.pricing-card-popular {
    border: 2px solid #ef4444;
    transform: scale(1.05);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Popular Badge */
.pricing-popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pricing Card Header */
.pricing-card-header {
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
}

.pricing-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.pricing-discount {
    font-size: 0.875rem;
    color: #059669;
    font-weight: 600;
}

/* Pricing Card Body */
.pricing-card-body {
    padding: 0 2rem 1rem 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.pricing-check {
    color: #059669;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Pricing Card Footer */
.pricing-card-footer {
    padding: 1rem 2rem 2rem 2rem;
}

/* Pricing Buttons */
.pricing-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3);
}

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

.pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.4), 0 4px 6px -2px rgba(239, 68, 68, 0.2);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

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

.pricing-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.pricing-btn-secondary:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-card-popular {
        transform: none;
    }
    
    .pricing-card-popular:hover {
        transform: translateY(-8px);
    }
    
    .pricing-card-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .pricing-card-body {
        padding: 0 1.5rem 1rem 1.5rem;
    }
    
    .pricing-card-footer {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
}


/* ===== WEBSITE HOSTING SECTION STYLES ===== */

/* Website Hosting Section Background */
.website-hosting-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 25%, #374151 50%, #1f2937 75%, #0f172a 100%);
    position: relative;
}

/* Dark Gradient Background */
.website-hosting-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(185, 28, 28, 0.06) 0%, transparent 50%);
    animation: hostingBgShift 10s ease-in-out infinite;
}

@keyframes hostingBgShift {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 40% 60%, rgba(185, 28, 28, 0.06) 0%, transparent 50%);
    }
    50% { 
        background: 
            radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 60% 40%, rgba(185, 28, 28, 0.08) 0%, transparent 50%);
    }
}

/* Animated Red Shapes */
.hosting-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hosting-shapes::before,
.hosting-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    animation: shapeFloat 12s ease-in-out infinite;
}

.hosting-shapes::before {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hosting-shapes::after {
    width: 40px;
    height: 40px;
    top: 70%;
    right: 15%;
    animation-delay: 6s;
    background: rgba(220, 38, 38, 0.15);
}

@keyframes shapeFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-30px) rotate(120deg) scale(1.1);
        opacity: 0.6;
    }
    66% { 
        transform: translateY(20px) rotate(240deg) scale(0.9);
        opacity: 0.4;
    }
}

/* Animated Red Lines */
.hosting-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hosting-lines::before,
.hosting-lines::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(239, 68, 68, 0.4) 50%, transparent 100%);
    animation: lineSlide 8s linear infinite;
}

.hosting-lines::before {
    left: 30%;
    animation-delay: 0s;
}

.hosting-lines::after {
    right: 25%;
    animation-delay: 4s;
}

@keyframes lineSlide {
    0% { transform: translateY(-100px) rotate(15deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(calc(100vh + 100px)) rotate(15deg); opacity: 0; }
}

/* Animated Red Particles */
.hosting-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hosting-particles::before,
.hosting-particles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.6);
    animation: particleFloat 15s ease-in-out infinite;
}

.hosting-particles::before {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.hosting-particles::after {
    top: 60%;
    right: 30%;
    animation-delay: 7s;
    background: rgba(220, 38, 38, 0.5);
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.4;
    }
    25% { 
        transform: translateX(20px) translateY(-15px) scale(1.2);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-10px) translateY(-30px) scale(0.8);
        opacity: 0.6;
    }
    75% { 
        transform: translateX(15px) translateY(-10px) scale(1.1);
        opacity: 0.7;
    }
}

/* Hosting Badge */
.hosting-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Hosting Features */
.hosting-feature {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.hosting-check {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

/* Hosting CTA Button */
.hosting-cta-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3);
}

.hosting-cta-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 ease;
}

.hosting-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.4), 0 4px 6px -2px rgba(239, 68, 68, 0.2);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

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

/* Website Mockup */
.website-mockup {
    max-width: 500px;
    margin: 0 auto;
}

.browser-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.browser-window:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.browser-header {
    background: #f3f4f6;
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot.red {
    background: #ef4444;
}

.browser-dot.yellow {
    background: #f59e0b;
}

.browser-dot.green {
    background: #10b981;
}

.browser-url {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #6b7280;
    flex: 1;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.website-content {
    padding: 1.5rem;
    background: white;
}

.portfolio-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
}

.portfolio-placeholder {
    background: #e5e7eb;
    height: 60px;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.portfolio-placeholder.small {
    height: 40px;
    width: 70%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .browser-window {
        transform: none;
    }
    
    .browser-window:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hosting-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hosting-cta-btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .website-content {
        padding: 1rem;
    }
    
    .portfolio-header {
        font-size: 1rem;
        padding: 0.75rem;
    }
}



/* ===== SEARCH PAGE STYLES ===== */

/* Search Hero Section */
.search-hero-section {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    position: relative;
    overflow: hidden;
}

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

.search-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
}

.search-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .search-hero-title {
        font-size: 2rem;
    }
    
    .search-hero-subtitle {
        font-size: 1rem;
    }
}

/* Search Filters */
.search-filters-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.search-filters-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f3f4f6;
}

.search-filter-group {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.search-filter-group:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.search-filter-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.search-filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Radio Options */
.search-radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.search-radio-option:hover {
    background-color: #f9fafb;
}

.search-radio {
    width: 1rem;
    height: 1rem;
    margin-right: 0.75rem;
    accent-color: #dc2626;
}

.search-radio-label {
    font-size: 0.875rem;
    color: #374151;
    display: flex;
    align-items: center;
}

/* Checkbox Options */
.search-checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.search-checkbox-option:hover {
    background-color: #f9fafb;
}

.search-checkbox {
    width: 1rem;
    height: 1rem;
    margin-right: 0.75rem;
    accent-color: #dc2626;
}

.search-checkbox-label {
    font-size: 0.875rem;
    color: #374151;
    display: flex;
    align-items: center;
}

/* Input Groups */
.search-input-group {
    margin-bottom: 1rem;
}

.search-input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.search-input,
.search-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus,
.search-select:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Stars */
.search-stars {
    color: #fbbf24;
    margin-right: 0.25rem;
}

/* Filter Buttons */
.search-filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.search-apply-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-apply-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.search-reset-btn {
    background: #6b7280;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Search Bar */
.search-bar-container {
    margin-bottom: 2rem;
}

.search-bar {
    position: relative;
    max-width: 600px;
}

.search-bar-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 1.125rem;
}

.search-bar-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

.search-bar-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Search Results Header */
.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-results-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.search-results-count {
    font-size: 0.875rem;
    color: #6b7280;
}

.search-sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    background: white;
    min-width: 150px;
}

/* Search Results Grid */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .search-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .search-results-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Search Result Cards */
.search-result-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    height: 420px;
    display: flex;
    flex-direction: column;
}

.search-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
}

/* Result Badges */
.search-result-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.search-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.search-badge-featured {
    background: #dc2626;
    color: white;
}

.search-badge-pro {
    background: #f59e0b;
    color: white;
}

.search-badge-verified {
    background: #10b981;
    color: white;
}

/* Result Header */
.search-result-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-result-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6b7280;
    flex-shrink: 0;
}

.search-result-avatar-shop {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    color: #7c3aed;
}

.search-result-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.search-result-handle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.search-result-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.search-rating-value {
    font-weight: 600;
    color: #1f2937;
}

.search-artist-count {
    color: #6b7280;
}

/* Result Location */
.search-result-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Result Tags */
.search-result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.search-tag-with-more {
    position: relative;
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.search-tag-more {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid white;
}

.search-tag-more:hover {
    background: #b91c1c;
    transform: scale(1.1);
}

/* Result Status */
.search-result-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.search-status-available {
    background: #d1fae5;
    color: #065f46;
}

.search-status-booking {
    background: #fef3c7;
    color: #92400e;
}

/* Result Portfolio */
.search-result-portfolio {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.search-portfolio-item {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    flex: 1;
}

/* Result Actions */
.search-result-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: auto;
    padding-top: 0.5rem;
}

.search-result-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 0.875rem;
}

.search-result-btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    flex: 1;
}

.search-result-btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.search-result-btn-favorite {
    background: #f9fafb;
    color: #6b7280;
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
}

.search-result-btn-favorite:hover {
    background: #f3f4f6;
    color: #dc2626;
}

/* Load More Button */
.search-load-more {
    text-align: center;
    margin-top: 2rem;
}

.search-load-more-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-load-more-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .search-results-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-sort-select {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .search-result-header {
        flex-direction: column;
        text-align: center;
    }
    
    .search-result-actions {
        flex-direction: column;
    }
    
    .search-result-btn-primary {
        width: 100%;
    }
    
    .search-portfolio-item {
        width: 80px;
        height: 80px;
    }
    
    .search-filter-buttons {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 1rem;
        margin: -1.5rem -1.5rem 0;
        border-top: 1px solid #e5e7eb;
    }
}


/* ===== MOBILE FILTER STYLES ===== */

/* Mobile Filter Button */
.mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-filter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(220, 38, 38, 0.3);
}

/* Mobile Filter Overlay */
.mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Filters Sidebar */
.filters-sidebar {
    width: 100%;
}

@media (max-width: 1023px) {
    .filters-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 320px;
        background: white;
        z-index: 50;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .filters-sidebar.active {
        transform: translateX(0);
    }
}

@media (min-width: 1024px) {
    .filters-sidebar {
        width: 25%;
    }
}

/* Mobile Filter Header */
.mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.close-filters-btn {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close-filters-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Update search filters container for mobile */
@media (max-width: 1023px) {
    .search-filters-container {
        padding: 1.5rem;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }
}

/* Body scroll lock when mobile menu is open */
body.mobile-filters-open {
    overflow: hidden;
}



/* ===== EXPLORE PAGE STYLES ===== */

/* Enhanced Toggle Switch for Explore Page */
.toggle-switch {
    appearance: none;
    width: 3.5rem;
    height: 2rem;
    background-color: #e5e7eb;
    border-radius: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch:checked {
    background-color: #c4b5fd;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 1.5rem;
    height: 1.5rem;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.toggle-switch:checked::before {
    transform: translateX(1.5rem);
    background-color: #7c3aed;
}

/* Custom Scrollbar for Explore Page */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #7c3aed, #6366f1);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #6d28d9, #4f46e5);
}

/* Slow spin animation for Explore Page */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 8s linear infinite;
}

/* Active filter badge styles for Explore Page */
.filter-badge {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-badge button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.filter-badge button:hover {
    background: rgba(255, 255, 255, 0.3);
}

