/* Event Management Page */

.event-hero-section {
    position: relative;
    min-height: 88vh;
    margin-top: -80px;
    overflow: hidden;
}

.event-hero-bg,
.event-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.event-hero-bg img {
    object-fit: cover;
}

.event-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(1, 75, 111, 0.82), rgba(23, 156, 216, 0.62));
}

.event-intro-section {
    padding-top: 70px;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0;
    margin-left: clamp(1rem, 4vw, 3rem);
    padding-top: clamp(9rem, 14vw, 12rem);
    color: #fff;
}

.event-hero-content h1 {
    font-family: "Inter", sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 12px;
}

.event-hero-content .hero-highlight {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: #d9f3ff;
    margin-bottom: 10px;
}

.event-hero-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 760px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero-buttons .btn-primary {
    background: #179cd8;
    color: #fff;
    box-shadow: 0 8px 20px rgba(23, 156, 216, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    background: #0e7cae;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.28);
}

.service-block {
    padding: 90px 0;
    background: #fff;
}

.service-block.alt {
    background: #f8fafc;
}

.service-grid {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.service-grid.single-col {
    grid-template-columns: 1fr;
    max-width: 1100px;
}

.service-text h2 {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: #000;
    margin-bottom: 8px;
}

.service-text h3 {
    color: #179cd8;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.service-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-text ul {
    margin-top: 10px;
    padding-left: 20px;
    color: #444;
}

.service-text li {
    margin-bottom: 6px;
}

.service-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.faq-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e6eef3;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 18px 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
    color: #123f5a;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .service-grid {
        grid-template-columns: 1fr;
        padding: 0 25px;
    }
    .faq-wrapper {
        padding: 0 25px;
    }
}

@media (max-width: 767.98px) {
    .service-image img {
        min-height: 300px;
    }
}
