
/* Service Details New Layout Styles */
.service-details-section {
    background-color: #1b1b1b;
    padding: 60px 0;
    color: #fff;
}
.service-details-section .row {
    flex-wrap: wrap;
}

.service-sidebar {
    border-right: 1px solid #333;
    padding-right: 30px; /* Increased padding */
    margin-right: 20px;   /* Added buffer space */
}
@media (max-width: 768px) {
    .service-sidebar {
        border-right: none;
        padding-right: 15px;
        margin-right: 0;
        margin-bottom: 40px;
    }
}

.service-sidebar h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    font-family: 'Gilda Display', serif;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.service-list li {
    border-bottom: 1px solid #333;
}

.service-list li a {
    display: block;
    padding: 15px 0; /* Increased clickable area */
    color: #bbb;
    font-size: 16px;
    transition: all 0.3s;
}

.service-list li a:hover, .service-list li a.active {
    color: #D5B34A;
    padding-left: 10px;
}

.sidebar-contact {
    margin-top: 50px;
    padding: 10px;
    background: #222;
    border-radius: 8px;
}

.sidebar-contact h3 {
    margin-bottom: 15px;
    color: #fff;
}

.sidebar-contact p {
    font-size: 14px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.main-content-row {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.main-content-row.alt-bg {
    background-color: #222;
    padding: 20px;
    border-radius: 12px;
    margin-left: 0; /* Removed negative margins causing collision */
    margin-right: 0;
}

.main-content-row img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.content-text h2 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.section-description {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}


.content-text .highlight {
    font-weight: 700;
    color: #D5B34A;
}

.ti-check.highlight {
    margin-right: 18px;
}

.btn-gold {
    font-weight: 400;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    background: #D5B34A;
    color: #fff;
    padding: 13px 22px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 3px;
}

.btn-gold:hover {
    border: 2px solid rgb(213, 179, 74);
    background: transparent;
    color: rgb(213, 179, 74);
}

.btn-outline-gold {
    background-color: transparent;
    color: #D5B34A !important;
    padding: 12px 22px;
    font-weight: 400;
    font-family: 'Barlow Condensed', sans-serif;
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 3px;
    border: 1px solid #D5B34A;
}

.btn-outline-gold:hover {
    background-color: #D5B34A;
    color: #fff !important;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    background: #222; /* Return to item color */
    border: 1px solid #333;
    overflow: hidden;
    border-radius: 5px !important;
}

.accordion-header {
    margin-bottom: 0 !important; /* Fix: Remove default h2 margin that creates the gap */
}

.accordion-button {
    background-color: #222;
    color: #fff;
    font-weight: 600;
    padding: 20px;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
    background-color: #D5B34A;
    color: #fff;
    box-shadow: none !important;
}

/* Fix weird white line/shadow on active accordion button */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Fix default chevron color */
.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
    background-color: #D5B34A; /* If open */
}

/* Ensure no gap between button and collapse area */
.accordion-collapse {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #1b1b1b;
}

.accordion-body {
    padding: 20px 25px 30px; /* Adjusted padding: top is tighter, bottom is more spacious */
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    background-color: #1b1b1b;
    border: none !important;
}

@media (max-width: 768px) {
    .main-content-row {
        flex-direction: column;
        text-align: center;
    }
    .main-content-row.reverse {
        flex-direction: column-reverse;
    }
    .main-content-row .col-md-6 {
        margin-bottom: 30px;
    }
}

.btn-container-flex {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
}

@media (max-width: 768px) {
    .btn-container-flex {
        justify-content: center;
        gap: 6px;
    }
    .mt-20.row .col-6 {
        width: 100%;
        margin-bottom: 10px;
    }
}

.service-feature-card {
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #333;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-feature-card:hover {
    transform: translateY(-10px);
    border-color: #D5B34A;
}

.service-feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-feature-card .card-content {
    padding: 25px;
    flex-grow: 1;
}

.service-feature-card h3 {
    font-size: 20px !important;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Gilda Display', serif;
}

.service-feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-feature-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-feature-card ul li {
    font-size: 13px !important;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}


.service-feature-card ul li i {
    color: #D5B34A;
    margin-right: 12px;
    font-size: 14px;
}

/* Premium Event Cards V2 */
.premium-event-container {
    padding: 30px 0;
}

.event-card-v2 {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    cursor: pointer;
    background: #111;
}

.event-card-v2 .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.event-card-v2:hover .card-bg {
    transform: scale(1.15);
}

.event-card-v2 .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 30%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    transition: all 0.5s ease;
}

.event-card-v2:hover .card-overlay {
    background: rgba(0,0,0,0.8);
    justify-content: center;
}

.event-card-v2 .card-content {
    transition: all 0.5s ease;
}

.event-card-v2 h3 {
    color: #D5B34A;
    font-family: 'Gilda Display', serif;
    font-size: 28px !important;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.event-card-v2 .event-description {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 20px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.event-card-v2:hover .event-description {
    opacity: 1;
    max-height: 200px;
}

.event-card-v2 .event-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease 0.1s;
}

.event-card-v2:hover .event-list {
    opacity: 1;
    max-height: 250px;
}

.event-card-v2 .event-list li {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.event-card-v2 .event-list li i {
    color: #D5B34A;
    margin-right: 12px;
    font-size: 14px;
}

/* Extra badge for premium feel */
.event-card-v2::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 1px;
    background: #D5B34A;
    z-index: 2;
    transition: width 0.4s ease;
}

.event-card-v2:hover::before {
    width: 100px;
}

