
/* Section – NO background color */
.exhibition-types {
    padding: 60px 0;
}

/* Card */
.exhibit-card {
    display: block;
    background: transparent;
    /* important */
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
}

/* Pink outline */
.exhibit-card::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 25px;
    border: 2px solid #222;
    pointer-events: none;
}

/* Image */
.exhibit-img {
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.exhibit-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Title bar (only element with color – NOT background of section) */
.exhibit-title {
    background: #ffc107;
    /* allowed – component color */
    color: #222;
    text-align: center;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
}

/* Hover effects */
.exhibit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(255, 42, 163, 0.4);
}

.exhibit-card:hover img {
    transform: scale(1.08);
}

/* Section */
.bespoke-section {
    background: transparent;
}

/* Title */
.bespoke-title {
    font-weight: 700;
    font-size: 30px;
    color: #2b2b2b;
    line-height: 1.3;
    margin-bottom: 20px;
}

.bespoke-title span {
    color: #ffc107;
}

/* Text */
.bespoke-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

.bespoke-section strong {
    color: #000;
    font-weight: 700;
}

/* Image wrapper */
.bespoke-image {
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #2b2b2b;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Image */
.bespoke-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Button */
.btn-quotation {
    color: #2b2b2b;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 2px solid #ffbd22;
}

.btn-quotation:hover {
    background: #ffbd22;
    color: #2b2b2b;
}

 /* Section */
.benefits-section {
     padding: 60px 0 0 0;
    background: transparent;
}

/* Title */
.benefits-title {
    font-size: 30px;
    font-weight: 700;
    color: #2b2b2b;
}

.benefits-title span {
    color: #ffc107; /* THEME COLOR */
}

/* Intro */
.benefits-intro {
    font-size: 15px;
    color: #444;
    max-width: 850px;
}

/* List */
.benefits-list {
    list-style: none;
    padding-left: 0;
    max-width: 100%;
}

 /* FAQ Section */
.faq-section {
    background: #fff;
    padding:60px 0;
}

/* Header */
.faq-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.faq-header h2 span {
    color: #ffc107;
}

.faq-header p {
    color: #555;
    max-width: 650px;
    margin: 10px auto 0;
}

/* Wrapper */
.faq-wrapper {
    max-width: 850px;
    margin: auto;
}

/* FAQ Item */
.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Question */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Icon */
.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,193,7,0.15);
    color: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Answer */
.faq-answer {
    padding: 0 22px;
    font-size: 15px;
    color: #444;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Active State */
.faq-item.active {
    border-color: #ffc107;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item.active .faq-answer {
    padding: 0 22px 18px;
    max-height: 200px;
}

.faq-item.active .faq-icon {
    background: #ffc107;
    color: #000;
    transform: rotate(45deg);
}

/* Hover */
.faq-item:hover {
    border-color: #ffc107;
}
