/* Colorful & Modern Redesign for Beranda */
:root {
    --primary: #fd650d;
    --primary-light: #ff8e4d;
    --secondary: #7c3aed;
    --tertiary: #3b82f6;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-vibrant: 0 10px 25px -5px rgba(124, 58, 237, 0.1), 0 8px 10px -6px rgba(124, 58, 237, 0.1);
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

p, li {
    font-size: 1.05rem;
    line-height: 1.7;
}

.main-content {
    background-color: var(--bg-light) !important;
    padding: 0 !important;
}

.tf-container {
    padding: 0 20px !important;
}

/* Vibrant Mesh Gradient Backgrounds */
.mesh-gradient {
    background: radial-gradient(at 0% 0%, rgba(253, 101, 13, 0.15) 0, transparent 50%),
                radial-gradient(at 50% 0%, rgba(124, 58, 237, 0.1) 0, transparent 50%),
                radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.15) 0, transparent 50%);
}

/* Hero Section */
.hero-vibrant {
    padding: 60px 0;
    position: relative;
    border-radius: 30px;
    margin-top: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading-section h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.heading-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

/* Modern Informative Search */
.modern-search-box {
    background: #ffffff;
    border-radius: 100px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 40px auto 0;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.modern-search-box:hover, .modern-search-box:focus-within {
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

.modern-search-input {
    border: none;
    padding: 12px 20px;
    flex-grow: 1;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
}

.modern-search-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.modern-search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* Informative Cards */
.box-house.fl-item {
    background: #fff !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-vibrant) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0 !important;
    overflow: hidden;
}

.box-house.fl-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(124, 58, 237, 0.2) !important;
}

.box-house .image-wrap {
    height: 240px !important;
    border-radius: 0 !important;
}

.box-house .image-wrap {
    height: 180px !important;
    border-radius: 20px !important;
    overflow: hidden;
    position: relative;
    margin: 10px;
}

.box-house .image-wrap img {
    transition: transform 0.5s ease;
}

.box-house:hover .image-wrap img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.event-date-badge .day {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
}

.event-date-badge .month {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.price-event {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    padding: 6px 14px !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 16px rgba(253, 101, 13, 0.2);
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 3;
    border: 2px solid #fff;
}

.price-event h6 {
    font-size: 0.85rem !important;
}

.box-house .content {
    padding: 15px 25px 25px !important;
    position: relative;
}


/* Informative Section "How it Works" */
.how-it-works {
    padding: 140px 0;
    position: relative;
}

.how-it-works .row {
    position: relative;
    z-index: 2;
}

/* Modern Illustration Category Cards */
.category-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    height: 240px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.15);
}

.category-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.category-card:hover .category-img-wrap img {
    transform: scale(1.1);
}

.category-overlay-bespoke {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(124, 58, 237, 0.8) 0%, rgba(124, 58, 237, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: all 0.4s ease;
}

.category-card:hover .category-overlay-bespoke {
    background: linear-gradient(0deg, var(--primary) 0%, rgba(253, 101, 13, 0.4) 100%);
}

.category-name-bespoke {
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}

.category-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Premium CTA Section */
.cta-vibrant {
    background: #fff;
    border-radius: 40px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 40px 100px rgba(124, 58, 237, 0.05);
    text-align: center;
    margin-top: 60px;
}

.cta-vibrant .mesh-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    z-index: 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -1.5px;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.cta-btn {
    position: relative;
    z-index: 1;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.3);
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
    color: #fff;
}

/* Events Page Refinement */
.events-page-header {
    padding: 100px 0 30px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.events-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.events-page-header .tf-container {
    position: relative;
    z-index: 1;
}

.search-container-modern {
    background: #fff;
    padding: 12px;
    border-radius: 100px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    max-width: 960px;
    margin: 30px auto 20px;
    transition: all 0.3s ease;
}

.search-container-modern:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
}

.search-input-wrap {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.search-input-wrap input {
    border: none;
    outline: none;
    width: 100%;
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.filter-divider {
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.1);
    margin: 0 10px;
}

.filter-pill-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.filter-pill {
    padding: 8px 20px;
    border-radius: 100px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-pill:hover, .filter-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(253, 101, 13, 0.2);
}

