:root {
    --primary-color: #dc3545;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-dark: #333;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --transition: all 0.3s ease-in-out;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 15px 40px rgba(220, 53, 69, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('../img/ana.jpeg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/ana.jpeg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    pointer-events: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--primary-color);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: white !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
    transform: scale(1.05);
}

.brand-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    margin: 0 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    background: transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-in-out;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BUTTONS ===== */
.btn-danger {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c82333 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-danger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

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

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #a01c2a 100%);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #20ba58 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #20ba58 0%, #1a9145 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-outline-danger {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-danger:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== SECTIONS ===== */
section {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.placeholder-img {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    border-radius: 15px;
}

.features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.75rem;
    border-radius: 8px;
}

.feature-item:hover {
    background: rgba(220, 53, 69, 0.05);
    padding-left: 1.25rem;
}

.feature-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(6px);
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 400px;
}

.info-box {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(220, 53, 69, 0.02));
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.info-box:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    transform: translateX(5px);
}

.info-box h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--text-muted);
    margin: 0;
}

.info-box a {
    color: var(--primary-color) !important;
    font-weight: 600;
    transition: var(--transition);
}

.info-box a:hover {
    color: #c82333 !important;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.2), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.cta-section p {
    opacity: 0.9;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
    backdrop-filter: blur(7px);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* ===== GALLERY ===== */
.gallery-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease-in-out;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 15px;
}

.placeholder-gallery {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    transition: var(--transition);
}

.gallery-img-wrapper:hover .placeholder-gallery {
    transform: scale(1.1);
}

.placeholder-gallery i {
    margin-bottom: 0.5rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-img-wrapper:hover .overlay {
    opacity: 1;
}

.gallery-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.gallery-link:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.2);
}

.gallery-caption {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ===== FILTER BUTTONS ===== */
.filter-btn {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 0.5rem 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20ba58 100%);
    color: white;
}

.contact-icon.phone {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    color: white;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(-10deg);
}

.contact-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* ===== SERVICE BOXES ===== */
.service-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.service-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.1);
    transform: translateY(-5px);
}

.service-box h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-box h4 i {
    margin-right: 0.5rem;
}

.service-box p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ===== INFO ITEMS ===== */
.info-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.info-item:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

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

.info-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-top: 2px solid var(--primary-color);
}

.footer h5 {
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.footer p {
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer a {
    transition: var(--transition);
    color: #ffffff !important;
}

.footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(3px);
    display: inline-block;
}

.footer .text-muted {
    color: #ffffff !important;
}

.footer small {
    color: #ffffff;
    font-size: 0.85rem;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366 0%, #20ba58 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    animation: none;
}

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

/* ===== ACCORDION ===== */
.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 10px !important;
    padding: 1.25rem;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(220, 53, 69, 0.02));
    color: var(--primary-color);
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dc3545' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-body {
    background: white;
    border: 1px solid var(--border-color);
    border-top: none;
    color: var(--text-muted);
}

/* ===== EVENTS SECTION ===== */
.event-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.event-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-10px);
}

.event-day {
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    color: white;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.event-content {
    padding: 2rem;
}

.event-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.event-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-details i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.event-card.premium .event-day {
    background: linear-gradient(135deg, #000, #1a1a1a);
    border-bottom: 3px solid var(--primary-color);
}

/* ===== SPECIAL EVENTS ===== */
.special-events {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(6px);
}

.special-event-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.special-event-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.event-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.special-event-card:hover .event-icon {
    transform: scale(1.2) rotate(-15deg);
}

.special-event-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.special-event-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ===== ARTISTS SECTION ===== */
.artist-card {
    text-align: center;
    transition: var(--transition);
}

.artist-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
}

.placeholder-artist {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    transition: var(--transition);
}

.artist-card:hover .placeholder-artist {
    transform: scale(1.1);
}

.artist-card h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.artist-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== CATALOG SECTION ===== */
.catalog-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .brand-icon {
        font-size: 1.5rem;
        margin-right: 0.3rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin: 0 0.25rem 0.75rem;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .contact-card,
    .service-box,
    .info-item {
        margin-bottom: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-header {
        padding: 3rem 1rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .brand-icon {
        display: none;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .btn-danger,
    .btn-success {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        font-size: 0.95rem !important;
        padding: 0.75rem 1.75rem !important;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .event-card,
    .contact-card,
    .service-box {
        margin-bottom: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 1.3rem;
    }

    .footer {
        text-align: center;
    }

    .footer h5 {
        margin-top: 1rem;
    }

    .footer-divider {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-in-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-in-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-in-out 0.4s both;
}

/* ===== UTILITY CLASSES ===== */
.text-danger {
    color: var(--primary-color) !important;
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

/* ===== SMOOTH SCROLLING ===== */
.scroll-smooth {
    scroll-behavior: smooth;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}

/* ===== SMOOTH ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleInCenter {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Apply animations to elements */
.service-card {
    animation: slideInLeft 0.6s ease-out backwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.contact-card {
    animation: slideInRight 0.6s ease-out backwards;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-item {
    animation: scaleInCenter 0.6s ease-out backwards;
}

.info-item:nth-child(2) {
    animation-delay: 0.2s;
}

.info-item:nth-child(3) {
    animation-delay: 0.4s;
}

.gallery-item {
    animation: scaleInCenter 0.5s ease-out backwards;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.3s;
}

.event-card {
    animation: slideInLeft 0.6s ease-out backwards;
}

.event-card:nth-child(2) {
    animation-delay: 0.15s;
}

.event-card:nth-child(3) {
    animation-delay: 0.3s;
}

.event-card:nth-child(4) {
    animation-delay: 0.45s;
}

.event-card:nth-child(5) {
    animation-delay: 0.6s;
}

.event-card:nth-child(6) {
    animation-delay: 0.75s;
}

.event-card:nth-child(7) {
    animation-delay: 0.9s;
}

/* Hover glow effect for buttons */
.btn-danger,
.btn-success {
    position: relative;
}

.btn-danger:active,
.btn-success:active {
    transform: scale(0.98) !important;
}

/* Link hover underline effect */
a {
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

/* Smooth fade in for page load */
body {
    animation: fadeInUp 0.8s ease-out;
}

/* Enhanced card shadows with animation */
.service-card:hover,
.contact-card:hover,
.info-item:hover {
    filter: drop-shadow(0 15px 35px rgba(220, 53, 69, 0.2));
}

/* Subtle background animation for hero */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-section {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Button ripple effect */
.btn {
    position: relative;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.btn:active::after {
    width: 200px;
    height: 200px;
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

