.expertise-hero {
    position: relative;
    min-height: 520px;
    background: var(--dark3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    overflow: hidden;
    margin-top: 70px;
}

.expertise-hero-bg {
    position: absolute;
    inset: 0;
    background:url('{{ asset("assets/images/hero1.jpeg") }}') center/cover no-repeat;
    filter: brightness(.15);
}

.expertise-hero::after {
    content: 'W&C';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(160px, 22vw, 320px);
    font-weight: 700;
    color: rgba(184, 150, 62, .04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    letter-spacing: 20px;
    white-space: nowrap;
    user-select: none;
}

.exp-hero-tag {
    position: relative;
    z-index: 1;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.exp-hero-h {
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.1;
}

.exp-hero-h em {
    color: var(--gold);
    font-style: italic;
}

.exp-hero-sub {
    position: relative;
    z-index: 1;
    font-size: 13px;
    color: var(--txt2);
    text-align: center;
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.exp-form-card {
    position: relative;
    z-index: 1;
    background: var(--dark3);
    border: 1px solid rgba(184, 150, 62, .18);
    padding: 32px;
    width: 100%;
    max-width: 900px;
}

.exp-form-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.exp-form-divider {
    height: 1px;
    background: rgba(184, 150, 62, .15);
    margin-bottom: 14px;
}

.exp-form-sub {
    font-size: 12px;
    color: var(--txt2);
    margin-bottom: 20px;
    line-height: 1.7;
}

.exp-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--txt2);
    display: block;
    margin-bottom: 8px;
}

.exp-field-wrap {
    position: relative;
}

.exp-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 13px;
    z-index: 1;
    pointer-events: none;
}

.exp-select,
.exp-input {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(184, 150, 62, .15);
    color: #ccc;
    font-size: 12px;
    padding: 12px 14px 12px 38px;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .3s;
}

.exp-select:focus,
.exp-input:focus {
    outline: none;
    border-color: var(--gold);
    color: #fff;
}

.exp-select option {
    background: #13131f;
    color: #ccc;
}

.exp-select option:checked,
.exp-select option:hover {
    background: #1e1e30;
    color: #fff;
}

.exp-input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.exp-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--txt2);
    font-size: 10px;
    pointer-events: none;
}

.btn-exp-search {
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all .3s;
}

.btn-exp-search:hover {
    background: var(--gold-lt);
}

.exp-trust-bar {
    background: var(--dark2);
    border-top: 1px solid rgba(184, 150, 62, .08);
    border-bottom: 1px solid rgba(184, 150, 62, .15);
}

.exp-trust-row {
    display: flex;
    flex-wrap: wrap;
}

.exp-trust-item {
    flex: 1 1 25%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    border-right: 1px solid rgba(184, 150, 62, .08);
}

.exp-trust-item:last-child {
    border-right: none;
}

.exp-trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(184, 150, 62, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.exp-trust-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.exp-trust-sub {
    font-size: 10px;
    color: var(--txt2);
}

.exp-how-sec {
    background: var(--dark);
    padding: 90px 0;
}

.exp-how-grid {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 40px;
    border: 1px solid rgba(184, 150, 62, .1);
}

.exp-how-item {
    flex: 1 1 33%;
    padding: 36px 28px;
    border-right: 1px solid rgba(184, 150, 62, .08);
    text-align: center;
}

.exp-how-item:last-child {
    border-right: none;
}

.exp-how-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: rgba(184, 150, 62, .12);
    line-height: 1;
    margin-bottom: 4px;
}

.exp-how-icon {
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 14px;
}

.exp-how-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.exp-how-text {
    font-size: 12px;
    color: var(--txt2);
    line-height: 1.85;
}

    {
        {
        -- Detail section (shown when ?id=is in URL) --
    }
}

.exp-detail-sec {
    background: var(--dark2);
    padding: 70px 0 90px;
    display: none;
}

.exp-detail-sec.active {
    display: block;
}

.exp-detail-loading {
    text-align: center;
    padding: 60px;
    color: var(--txt2);
    font-size: 13px;
}

.exp-detail-loading i {
    font-size: 28px;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.exp-thumb-wrap {
    position: relative;
    background: var(--dark3);
    border: 1px solid rgba(184, 150, 62, .1);
}

.exp-main-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.exp-thumbs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.exp-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: .6;
    border: 2px solid transparent;
    transition: all .2s;
}

.exp-thumb.active,
.exp-thumb:hover {
    opacity: 1;
    border-color: var(--gold);
}

.exp-product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.exp-tabs {
    border-bottom: 1px solid rgba(184, 150, 62, .15);
    margin-bottom: 24px;
}

.exp-tab-btn {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--txt2);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 16px;
    cursor: pointer;
    transition: all .25s;
}

.exp-tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.exp-tab-pane {
    display: none;
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.9;
}

.exp-tab-pane.active {
    display: block;
}

.exp-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: 12px;
}

.exp-info-row span:first-child {
    color: var(--txt2);
}

.exp-info-row span:last-child {
    color: var(--white);
    font-weight: 600;
}

@media(max-width:991px) {
    .exp-trust-item {
        flex: 1 1 50%;
    }

    .exp-how-item {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(184, 150, 62, .08);
    }
}

@media(max-width:575px) {
    .exp-trust-item {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(184, 150, 62, .08);
    }
}

.exp-author-card {
    border: 1px solid rgba(184, 150, 62, .15);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--dark3);
    margin-bottom: 15px;
}

.exp-author-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.exp-author-name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.exp-author-role {
    color: var(--txt2);
    font-size: 13px;
}

.btn-exp-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark);
    padding: 12px 20px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-exp-download:hover {
    color: var(--dark);
}