:root {
    --primary-color: #ff4757;
    --secondary-color: #2f3542;
    --accent-color: #7bed9f;
    --background-color: #f1f2f6;
    --text-color: #2f3542;
    --card-bg: #ffffff;
    --nav-height: 70px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    padding-bottom: calc(var(--nav-height) + 20px);
    /* Space for bottom nav */
    margin: 0;
}

/* Modern Card Styling */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    background-color: var(--card-bg);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
    padding: 1.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff6b81;
    border-color: #ff6b81;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.nav-item {
    text-decoration: none;
    color: #a4b0be;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.nav-item i {
    font-size: 1.5rem;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}

.nav-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-item.active i {
    transform: translateY(-3px);
}

.nav-item:hover {
    color: var(--primary-color);
}

/* Hero Section for Home */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 1.5rem 4rem;
    border-radius: 0 0 30px 30px;
    margin-bottom: -3rem;
    /* Overlap with cards */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    opacity: 1;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.content-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 1rem;
}

/* Section Styling */
.section-title {
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Countdown Timer */
.countdown-item {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 80px;
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: #a4b0be;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #e1e1e1;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(255, 71, 87, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 71, 87, 0.1);
}

/* Form Styling */
.form-control {
    border-radius: 12px;
    padding: 12px 16px;
    border: 2px solid #f1f2f6;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.1);
    background-color: white;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

/* List Styling */
.participant-list-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f1f2f6;
}

.participant-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.participant-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.participant-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #747d8c;
}
/* Fixed Top Header */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.has-fixed-header {
    padding-top: 80px;
}
