/* Events & Services Section Styles */
:root {
    --ev-primary-orange: #FF6B35;
    --ev-dark-orange: #E55A2B;
    --ev-primary-black: #1a1a1a;
    --ev-secondary-black: #2d2d2d;
    --ev-light-gray: #f5f5f5;
    --ev-white: #ffffff;
    --ev-gold: #FFD700;
    --ev-transition: all 0.3s ease;
}


div{
    border: 0px solid blue;
}
/* Section Styling */
.ev-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Header Styles */
.ev-header {
    margin-bottom: 3rem;
}

.ev-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ev-primary-black);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.ev-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.ev-title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--ev-primary-orange), var(--ev-gold));
    margin: 0 auto;
    border-radius: 2px;
}

/* Filter Buttons */
.ev-filter-container {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 10px 0;
}

.ev-filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.ev-filter-btn {
    padding: 12px 28px;
    background-color: var(--ev-white);
    color: var(--ev-primary-black);
    border: 2px solid var(--ev-primary-orange);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ev-transition);
    white-space: nowrap;
    font-size: 0.95rem;
}

.ev-filter-btn:hover {
    background-color: var(--ev-primary-orange);
    color: var(--ev-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.ev-filter-btn.active {
    background-color: var(--ev-primary-orange);
    color: var(--ev-white);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Services Grid */
.ev-services-grid {
    display: flex;
    flex-wrap: wrap;
    
}

.ev-service-card {
    background: var(--ev-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--ev-transition);
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ev-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.ev-service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: relative;
}

.ev-service-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--ev-primary-orange);
    color: var(--ev-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.ev-service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ev-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ev-primary-black);
    margin-bottom: 12px;
}

.ev-service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.ev-service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.ev-service-features li {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.ev-service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ev-primary-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.ev-service-footer {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.ev-btn-details {
    flex: 1;
    padding: 12px 20px;
    background-color: var(--ev-primary-black);
    color: var(--ev-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ev-transition);
    text-align: center;
}

.ev-btn-details:hover {
    background-color: var(--ev-secondary-black);
    transform: scale(1.02);
}

.ev-btn-contact {
    padding: 12px 20px;
    background-color: var(--ev-primary-orange);
    color: var(--ev-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ev-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ev-btn-contact:hover {
    background-color: var(--ev-dark-orange);
    transform: scale(1.02);
}

/* Contact CTA Section */
.ev-contact-cta {
    background: linear-gradient(135deg, var(--ev-primary-orange), var(--ev-dark-orange));
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.ev-cta-title {
    color: var(--ev-white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ev-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.ev-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--ev-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 5px;
    font-size: 1rem;
}

.ev-btn-whatsapp {
    background-color: #25D366;
    color: var(--ev-white);
}

.ev-btn-whatsapp:hover {
    background-color: #20BA5A;
    color: var(--ev-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.ev-btn-email {
    background-color: var(--ev-primary-black);
    color: var(--ev-white);
}

.ev-btn-email:hover {
    background-color: var(--ev-secondary-black);
    color: var(--ev-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Modal Styles */
.ev-modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.ev-modal-header {
    background: linear-gradient(135deg, var(--ev-primary-orange), var(--ev-dark-orange));
    color: var(--ev-white);
    border-bottom: none;
    padding: 25px 30px;
}

.ev-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ev-white);
}

.ev-btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.ev-modal-body {
    padding: 20px;
}

.ev-modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.ev-modal-description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.ev-modal-features-title {
    color: var(--ev-primary-black);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ev-modal-features-list {
    list-style: none;
    padding: 0;
}

.ev-modal-features-list li {
    color: #555;
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.ev-modal-features-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--ev-gold);
    font-size: 1.2rem;
}

.ev-modal-footer {
    padding: 25px 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Hidden class for filtering */
.ev-hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ev-title {
        font-size: 2.5rem;
    }

    .ev-filter-buttons {
        flex-wrap: wrap;
    }

    .ev-cta-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .ev-cta-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .ev-contact-cta .col-lg-4 {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .ev-section {
        padding: 50px 0;
    }

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

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

    .ev-filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .ev-service-image {
        height: 200px;
    }

    .ev-service-title {
        font-size: 1.3rem;
    }

    .ev-contact-cta {
        padding: 30px 20px;
    }

    .ev-cta-title {
        font-size: 1.5rem;
    }

    .ev-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .ev-modal-image {
        height: 200px;
    }

    .ev-modal-footer {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .ev-filter-container {
        overflow-x: auto;
    }

    .ev-filter-buttons {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .ev-service-footer {
        flex-direction: column;
    }

    .ev-btn-contact {
        width: 100%;
    }
}