/* Love 2 Line Dance with Rachel - Custom Styles */

/* Color Variables */
:root {
    --primary-pink: #e91e63;
    --primary-purple: #9c27b0;
    --accent-pink: #f8bbd9;
    --accent-purple: #ce93d8;
    --country-gold: #ffd700;
    --country-brown: #8b4513;
    --dark-blue: #1a237e;
    --light-blue: #e3f2fd;
    --success-green: #4caf50;
    --warning-orange: #ff9800;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.text-pink {
    color: var(--primary-pink) !important;
}

.text-purple {
    color: var(--primary-purple) !important;
}

.bg-gradient-pink {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
}

.bg-gradient-purple {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-blue));
}

/* Custom Button Styles */
.btn-pink {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--white);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-pink:hover {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-outline-pink {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background-color: transparent;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-pink.active {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--white);
}

/* Navigation Styles */
.navbar-light.fixed-top,
.navbar-light,
.navbar,
.custom-navbar {
    background-color: #ffffff !important;
    background: #ffffff !important;
    backdrop-filter: none !important;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-pink) !important;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1;
    height: 50px !important;
    width: auto !important;
}

.logo-img {
    height: 40px !important;
    width: 40px !important;
    max-height: 40px !important;
    max-width: 40px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-pink);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    display: inline-block !important;
}

.brand-content {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-pink);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.brand-text {
    font-size: 1.8rem;
}

.brand-subtitle {
    font-size: 1rem;
    color: var(--primary-purple) !important;
    font-style: italic;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-pink) !important;
    background-color: rgba(233, 30, 99, 0.1);
}

.navbar-nav .nav-link i {
    margin-right: 0.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 58, 64, 0.7), rgba(73, 80, 87, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(233, 30, 99, 0.8);
    border-radius: 50%;
    padding: 1rem;
}

.carousel-indicators {
    bottom: 2rem;
}

.carousel-indicators button {
    background-color: var(--primary-pink);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Section Styles */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
    border-color: var(--accent-pink);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Event Cards */
.event-highlight {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
    border-left: 5px solid var(--primary-pink);
}

.event-date {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.date-day {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.event-title {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.event-location {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-weight: 500;
}

.event-location i {
    margin-right: 0.5rem;
}

/* Gallery Styles */
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.8), rgba(156, 39, 176, 0.8));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-info i {
    font-size: 2rem;
    margin-top: 1rem;
}

/* Gallery Cards for Events Page */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: scale(1.05);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Class Timetable */
.location-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 25px var(--shadow);
    margin-bottom: 2rem;
}

.location-header h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.location-address {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.timetable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.class-item {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.class-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.class-day {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.class-time {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.class-level {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.class-price {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-pink);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

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

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.pricing-features i {
    color: var(--success-green);
    margin-right: 0.5rem;
}

/* Offer Badge */
.offer-badge {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin: 10px 0;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Collaboration Cards */
.collaboration-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.collaboration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.collab-icon {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.collaboration-card h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.collaboration-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Coming Soon Styles */
.coming-soon-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.coming-soon-icon {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.preview-item {
    text-align: center;
    padding: 1.5rem;
}

.preview-item i {
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.preview-item h5 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

/* Event Cards */
.event-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.event-card-header {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.event-card-body {
    padding: 1.5rem;
}

.event-card-body h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.event-card-body .event-location {
    color: var(--primary-pink);
    font-weight: 500;
    margin-bottom: 1rem;
}

.event-card-body p {
    color: var(--text-dark);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.product-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: var(--white);
}

.product-title {
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-sizes {
    margin-bottom: 1rem;
}

.size-label {
    font-weight: 600;
    color: var(--text-dark);
}

.sizes {
    color: var(--text-light);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

/* Service Cards for Events */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.service-features i {
    color: var(--success-green);
    margin-right: 0.5rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

/* Experience Cards */
.experience-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.experience-card h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.experience-card ul {
    list-style: none;
    padding: 0;
}

.experience-card li {
    padding: 0.3rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.experience-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
}

/* Teaching Approach */
.approach-item {
    text-align: center;
    padding: 1.5rem;
}

.approach-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.approach-item h5 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 25px var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.stars {
    color: var(--country-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid var(--bg-light);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--primary-purple);
    display: block;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Styles */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

/* Form Styles */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Location Cards */
.location-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.location-details p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.location-details strong {
    color: var(--primary-purple);
}

/* FAQ Styles */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px var(--shadow);
}

.accordion-button {
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-pink);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--bg-light);
}

.accordion-body ul {
    margin-bottom: 1rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}

.quick-link-card {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.quick-link-card:hover {
    color: var(--primary-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
    text-decoration: none;
}

.quick-link-card i {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.quick-link-card h5 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Info Cards */
.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 25px var(--shadow);
    text-align: center;
}

.class-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
}

.benefit-item i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.benefit-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Featured Event */
.featured-event {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
    position: relative;
}

.event-banner {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    color: var(--white);
    padding: 1rem;
    position: relative;
}

.event-date-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.date-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.date-year {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.event-content {
    padding: 2rem;
}

.event-meta {
    margin-bottom: 1rem;
}

.event-meta span {
    display: inline-block;
    margin-right: 2rem;
    color: var(--text-light);
    font-weight: 500;
}

.event-meta i {
    margin-right: 0.5rem;
    color: var(--primary-pink);
}

.event-highlights h5 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.event-highlights ul {
    list-style: none;
    padding: 0;
}

.event-highlights li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.event-highlights i {
    color: var(--primary-pink);
    margin-right: 0.75rem;
    width: 20px;
}

.ticket-info {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 2rem;
}

.ticket-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    display: block;
}

.ticket-price .price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

/* Footer */
.footer {
    margin-top: 3rem;
}

.footer h5 {
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-pink);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info i {
    margin-right: 0.5rem;
    width: 20px;
}

/* Newsletter Signup */
.newsletter-signup h6 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-signup .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-signup .form-control {
    border: none;
    border-radius: 0;
}

.newsletter-signup .btn {
    border: none;
    border-radius: 0;
    background-color: var(--primary-pink);
}

/* CTA Sections */
.cta-section {
    padding: 4rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Video Section */
.video-placeholder {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.video-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-content h4 {
    margin-bottom: 1rem;
}

/* Download Section */
.download-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.download-card i {
    font-size: 3rem;
    display: block;
}

/* FAQ Quick Answers */
.faq-quick {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px var(--shadow);
    height: 100%;
}

.faq-quick h5 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-quick i {
    font-size: 1.2rem;
}

/* Travel Info */
.travel-info {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
}

.travel-info h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Personal Quote */
.personal-quote {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-pink);
}

.personal-quote .blockquote {
    font-style: italic;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timetable-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons,
    .category-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .featured-event .row {
        flex-direction: column;
    }
    
    .event-meta {
        text-align: center;
    }
    
    .event-meta span {
        display: block;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .pricing-card,
    .product-card {
        margin-bottom: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    .brand-subtitle {
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.shadow-sm-custom {
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1);
}

.shadow-custom {
    box-shadow: 0 5px 25px rgba(233, 30, 99, 0.2);
}

.shadow-lg-custom {
    box-shadow: 0 10px 35px rgba(233, 30, 99, 0.3);
}

.border-pink {
    border-color: var(--primary-pink) !important;
}

.border-purple {
    border-color: var(--primary-purple) !important;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner-pink {
    color: var(--primary-pink);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .hero-section {
        display: none !important;
    }
    
    .page-header {
        background: none !important;
        color: var(--text-dark) !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: var(--text-dark) !important;
    }
}
