:root {
    --t4a-orange: #FF7400;
    --t4a-orange-light: #FF812D;
    --t4a-blue: #111111;
    --t4a-white: #FFFFFF;
    --t4a-light: #F8F8F8;
    --t4a-border: #EDEDED;
    --t4a-blue: #171A47;
}

.catalogue-breadcrumb {
    /*background: #fffdfb;*/
    border-bottom: 1px solid #e8edf3;
    padding: 12px 0;
}

.catalogue-breadcrumb .breadcrumb {
    font-size: 14px;
    font-weight: 500;
}

.catalogue-breadcrumb a {
    /*color: var(--t4a-orange-light);
    text-decoration: none;*/
}

.catalogue-breadcrumb a:hover {
    /*color: var(--t4a-blue);*/
}

.catalogue-breadcrumb .active {
    color: #172033;
    font-weight: 600;
}

.catalogue-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #8995a5;
}














/*  */
.catalogue-hero {
    /* background: linear-gradient(110deg, #f5f8fc, #eef5fc); */
    /*background: linear-gradient(110deg, #f9eee1, #eef5fc);*/
    padding: 50px 0;
    overflow: hidden;
}

.catalogue-hero-content h1 {
    color: var(--t4a-blue);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.catalogue-hero-content p {
    color: #536174;
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 25px;
}

.catalogue-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.catalogue-btn-primary,
.catalogue-btn-outline {
    padding: 11px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.catalogue-btn-primary {
    background: var(--t4a-orange-light);
    color: #fff;
    border: 1px solid var(--t4a-orange);
}

.catalogue-btn-primary:hover {
    background: var(--t4a-blue);
    border-color: var(--t4a-blue);
    color: #fff;
}

.catalogue-btn-outline {
    background: #fff;
    color: var(--t4a-orange);
    border: 1px solid var(--t4a-orange);
}

.catalogue-btn-outline:hover {
    background: var(--t4a-blue);
    color: #fff;
}

.catalogue-hero-image {
    text-align: center;
}

.catalogue-hero-image img {
    width: 100%;
    max-width: 650px;
}

/* Responsive */
@media (max-width: 991px) {
    .catalogue-hero-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .catalogue-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .catalogue-hero-btns {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .catalogue-hero-content h1 {
        font-size: 30px;
    }

    .catalogue-hero-btns .btn {
        width: 100%;
    }
}
.catalogue-btn-primary, .catalogue-btn-outline {
    font-weight: 400;
}











/*  */
.catalogue-about {
    padding: 45px 0;
    background: var(--t4a-white);
}

.catalogue-about-content h2 {
    color: var(--t4a-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.catalogue-about-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0;
}

.catalogue-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.catalogue-stat {
    padding: 18px 14px;
    min-height: 145px;
    border: 1px solid var(--t4a-border);
    border-radius: 8px;
    background: var(--t4a-white);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .05);
}

.catalogue-stat i {
    display: block;
    color: var(--t4a-orange);
    font-size: 24px;
    margin-bottom: 12px;
}

.catalogue-stat strong {
    display: block;
    color: var(--t4a-blue);
    font-size: 26px;
    line-height: 1;
    margin-bottom: 8px;
}

.catalogue-stat span {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .catalogue-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .catalogue-about {
        padding: 35px 0;
    }

    .catalogue-about-content h2 {
        font-size: 24px;
    }

    .catalogue-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalogue-stat {
        min-height: 130px;
    }
}

.catalogue-stat-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    fill: none;
    stroke: var(--t4a-orange);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


















/*  */
.catalogue-editions {
    padding: 45px 0;
    background: var(--t4a-white);
}

.catalogue-section-title h2 {
    color: var(--t4a-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.catalogue-section-title p {
    color: #000;
    font-size: 14px;
    margin-bottom: 25px;
}

.edition-box {
    border: 1px solid var(--t4a-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .04);
}

.edition-head {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 22px;
    border-bottom: 1px solid var(--t4a-border);
}

.edition-logo {
    width: 145px;
    text-align: center;
    flex-shrink: 0;
}

.edition-logo img {
    max-width: 120px;
    max-height: 75px;
    object-fit: contain;
}

.edition-info {
    flex: 1;
}

.edition-info h3 {
    color: var(--t4a-blue);
    font-size: 22px;
    margin: 0 0 8px;
}

.edition-info h3 span {
    display: inline-block;
    background: #e9f7ed;
    color: #2eaa4f;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.edition-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #555;
    font-size: 13px;
}

.edition-info p {
    color: #000;
    font-size: 13px;
    margin: 7px 0 0;
}

.edition-details {
    color: var(--t4a-orange);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.edition-details:hover {
    color: var(--t4a-orange-light);
}

/* Table */
.edition-row span, strong{
    font-size:14px;
}

.edition-table-head,
.edition-row {
    display: grid;
    /* grid-template-columns: 1.5fr 1.2fr 1.5fr .7fr .7fr 2fr; */
    grid-template-columns: 1.5fr 1.2fr 1.5fr 2fr;
    align-items: center;
}

.edition-table-head {
    padding: 13px 18px;
    background: var(--t4a-light);
    color: #444;
    font-size: 12px;
    font-weight: 600;
}

.edition-row {
    padding: 14px 18px;
    border-top: 1px solid var(--t4a-border);
    color: #555;
    font-size: 12px;
    min-height: 70px;
}

.edition-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--t4a-blue);
}

.pdf-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #e53935;
    font-size: 9px;
    font-weight: 700;
}

.edition-name small {
    background: #e9f7ed;
    color: #2eaa4f;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 10px;
}

.edition-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.view-pdf,
.download-pdf {
    padding: 9px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.view-pdf {
    color: var(--t4a-orange);
    border: 1px solid var(--t4a-orange);
    background: #fff;
}

.download-pdf {
    color: #fff;
    background: var(--t4a-orange);
    border: 1px solid var(--t4a-orange);
}

.view-pdf:hover,
.download-pdf:hover {
    background: var(--t4a-orange-light);
    border-color: var(--t4a-orange-light);
    color: #fff;
}

.more-editions {
    display: block;
    margin: 15px auto;
    padding: 9px 25px;
    border: 1px solid var(--t4a-orange);
    background: #fff;
    color: var(--t4a-orange);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.more-editions:hover {
    background: var(--t4a-orange);
    color: #fff;
}

/* Mobile */
@media (max-width: 991px) {
    .edition-table-head {
        display: none;
    }

    .edition-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 18px;
    }

    .edition-row>span {
        width: 45%;
    }

    .edition-actions {
        width: 100%;
        justify-content: flex-start;
        margin-top: 5px;
    }
}

@media (max-width: 575px) {
    .edition-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .edition-logo {
        text-align: left;
    }

    .edition-info h3 {
        font-size: 19px;
    }

    .edition-row>span {
        width: 100%;
    }

    .edition-actions a {
        flex: 1;
        text-align: center;
    }
}













/*  */
.catalogue-exhibitions {
    padding: 45px 0;
    background: var(--t4a-white);
    overflow: hidden;
}

.catalogue-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px;
}

.catalogue-section-head h2 {
    color: var(--t4a-blue);
    font-size: 27px;
    font-weight: 700;
    margin: 0 0 5px;
}

.catalogue-section-head p {
    color: #000;
    font-size: 16px;
    margin: 0;
}

.catalogue-section-head>a {
    color: var(--t4a-orange-light);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

/* Slider */
.expo-slider-wrap {
    position: relative;
}

.expo-slider {
    overflow: hidden;
    margin: 0 40px;
}

.expo-track {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 0 0 calc((100% - 64px) / 8);
    gap: 46px;
    transition: transform .4s ease;
}
@media(max-width:991px){

.expo-item{
    flex:0 0 calc((100% - 60px)/4); /* 4 per row */
}

}
/*@media screen and (max-width:771px){
    .expo-track {
        flex: 0 0 calc((100% - 64px) / 4) !important;
    }
}*/

.expo-card {
    /* display: flex; */
    /* flex: 0 0 calc((100% - 64px) / 8); */
    /* min-height: 260px; */
    /* padding: 22px; */
    border: 1px solid var(--t4a-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
}

.expo-card img {
    width: 100%;
    height: 52px;
    object-fit: contain;
    /* margin-bottom: 15px; */
}   margin-bottom: 15px;
}

.expo-card h3 {
    font-size: 15px;
    color: var(--t4a-blue);
    margin: 0 0 5px;
    font-weight: 700;
}

.expo-card span {
    display: block;
    color: #777;
    font-size: 12px;
    margin-bottom: 18px;
}

.expo-card strong {
    display: block;
    color: #333;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.expo-card a {
    color: #1456a0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.expo-card a:hover {
    color: var(--t4a-orange);
}

/* Arrows */
.expo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 1px solid var(--t4a-border);
    border-radius: 50%;
    background: #fff;
    color: #1456a0;
    font-size: 28px;
    line-height: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
    cursor: pointer;
}

.expo-prev {
    left: 0;
}

.expo-next {
    right: 0;
}

.expo-arrow:hover {
    background: var(--t4a-orange);
    color: #fff;
    border-color: var(--t4a-orange);
}

/* Tablet */
@media (max-width: 1199px) {
    .expo-card {
        flex-basis: calc((100% - 32px) / 3);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .catalogue-section-head {
        display: block;
    }

    .catalogue-section-head>a {
        display: inline-block;
        margin-top: 10px;
    }

    .expo-slider {
        margin: 0 30px;
    }

    .expo-card {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media (max-width: 575px) {
    .expo-card {
        flex-basis: 100%;
    }
}














/*  */
.catalogue-gallery {
    padding: 45px 0;
    background: var(--t4a-light);
    overflow: hidden;
}

.catalogue-section-title h2 {
    color: var(--t4a-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.catalogue-section-title p {
    color: #000;
    font-size: 14px;
    margin-bottom: 22px;
}

/* Slider */
.gallery-slider-wrap {
    position: relative;
}

.gallery-slider {
    overflow: hidden;
    margin: 0 38px;
}

.gallery-track {
    display: flex;
    gap: 16px;
    transition: transform .4s ease;
}

.gallery-card {
    flex: 0 0 calc((100% - 64px) / 5);
    text-align: center;
}

.gallery-card img {
    width: 100%;
    /* height: 175px; */
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 10px;
    border: 1px solid var(--t4a-border);
}

.gallery-card h3 {
    color: #444;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

/* Arrows */
.gallery-arrow {
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid var(--t4a-border);
    border-radius: 50%;
    background: #fff;
    color: var(--t4a-orange);
    font-size: 27px;
    line-height: 30px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.gallery-prev {
    left: 0;
}

.gallery-next {
    right: 0;
}

.gallery-arrow:hover {
    background: var(--t4a-orange);
    color: #fff;
    border-color: var(--t4a-orange);
}

/* Tablet */
@media (max-width: 1199px) {
    .gallery-card {
        flex-basis: calc((100% - 32px) / 3);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .gallery-card {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media (max-width: 575px) {
    .gallery-card {
        flex-basis: 100%;
    }
}














/*  */
.catalogue-process {
    padding: 45px 0;
    background: var(--t4a-light);
}

.catalogue-section-title h2 {
    color: var(--t4a-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.catalogue-section-title p {
    color: #000;
    font-size: 14px;
    margin-bottom: 25px;
}

.process-flow {
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-card {
    position: relative;
    flex: 1;
    min-height: 180px;
    padding: 28px 18px 18px;
    background: var(--t4a-white);
    border: 1px solid var(--t4a-border);
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 18px;
    color: var(--t4a-orange);
    font-size: 17px;
    font-weight: 700;
}

.process-icon {
    margin-bottom: 12px;
}

.process-icon svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: var(--t4a-orange);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-card h3 {
    color: var(--t4a-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
}

.process-card p {
    color: #000;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.process-arrow {
    color: var(--t4a-orange);
    font-size: 25px;
    font-weight: 600;
    flex-shrink: 0;
}

/* Tablet */
@media (max-width: 1199px) {
    .process-flow {
        flex-wrap: wrap;
    }

    .process-card {
        flex: 0 0 calc(33.333% - 12px);
    }

    .process-arrow {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .process-card {
        flex: 0 0 100%;
        min-height: auto;
    }
}




















/*  */
.catalogue-audience {
    padding: 50px 0;
    background: var(--t4a-white);
}

.catalogue-section-title {
    margin-bottom: 25px;
}

.catalogue-section-title h2 {
    color: var(--t4a-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.catalogue-section-title p {
    color: #000;
    font-size: 16px;
    margin: 0;
}

/* Audience Card */
.audience-card {
    height: 100%;
    min-height: 165px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 20px;
    background: var(--t4a-white);
    border: 1px solid var(--t4a-border);
    border-radius: 8px;
    transition: all .3s ease;
}

.audience-card:hover {
    border-color: var(--t4a-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.audience-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5ed;
    border-radius: 50%;
}

.audience-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: var(--t4a-orange);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.audience-content h3 {
    color: var(--t4a-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.audience-content p {
    color: #000;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* CTA */
.audience-cta {
    margin-top: 25px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff8f2;
    border: 1px solid #ffe2cc;
    border-radius: 8px;
}

.audience-cta h3 {
    color: var(--t4a-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.audience-cta p {
    color: #000;
    font-size: 14px;
    margin: 0;
}

.audience-cta-btn {
    flex-shrink: 0;
    padding: 11px 20px;
    background: var(--t4a-orange);
    color: #fff;
    border: 1px solid var(--t4a-orange);
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}

.audience-cta-btn:hover {
    background: var(--t4a-orange-light);
    border-color: var(--t4a-orange-light);
    color: #fff;
}

.audience-cta-btn span {
    margin-left: 7px;
}

/* Mobile */
@media (max-width: 767px) {

    .catalogue-audience {
        padding: 40px 0;
    }

    .catalogue-section-title h2 {
        font-size: 24px;
    }

    .audience-card {
        min-height: 140px;
    }

    .audience-cta {
        display: block;
        text-align: center;
    }

    .audience-cta-btn {
        display: inline-block;
        margin-top: 15px;
    }
}



















/*  */
.catalogue-advertise {
    padding: 50px 0;
    background: var(--t4a-white);
}

.advertise-box {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    border: 1px solid var(--t4a-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

/* Left */
.advertise-info {
    position: relative;
    padding: 40px 35px;
    background: #fff6ee;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.advertise-info h2 {
    color: var(--t4a-blue);
    font-size: 29px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 14px;
}

.advertise-info p {
    max-width: 430px;
    color: #000;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.advertise-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advertise-info li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 14px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.advertise-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--t4a-orange);
    color: #fff;
    font-size: 11px;
    text-align: center;
    line-height: 18px;
}

/* Advertisement Visual */
.advertise-book {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
}

.book-cover {
    width: 150px;
    height: 205px;
    padding: 25px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--t4a-blue);
    border-radius: 4px;
    transform: rotate(5deg);
    box-shadow: 12px 15px 25px rgba(0, 0, 0, .18);
}

.book-cover span {
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

/* Form */
.advertise-form {
    padding: 30px;
    background: #fff;
}

.advertise-form h3 {
    color: var(--t4a-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group input,
.form-group select,
.advertise-form textarea {
    width: 100%;
    height: 43px;
    padding: 0 13px;
    border: 1px solid #e3e7ec;
    border-radius: 5px;
    color: #444;
    background: #fff;
    font-size: 14px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.advertise-form textarea:focus {
    border-color: var(--t4a-orange);
}

.advertise-form textarea {
    height: 75px;
    padding: 12px 13px;
    resize: vertical;
    margin-bottom: 12px;
}

/* Upload */
.upload-box {
    height: 43px;
    border: 1px solid #e3e7ec;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.upload-box label {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px;
    cursor: pointer;
    color: #000;
    font-size: 11px;
}

.upload-box svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--t4a-orange);
    stroke-width: 1.6;
}

.upload-box small {
    color: #999;
    font-size: 9px;
}

.upload-box input {
    display: none;
}

/* Submit */
.advertise-form button {
    width: 100%;
    height: 43px;
    border: 0;
    border-radius: 5px;
    background: var(--t4a-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.advertise-form button:hover {
    background: var(--t4a-orange-light);
}

.advertise-form button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    vertical-align: middle;
    margin-right: 5px;
}

/* Tablet */
@media (max-width: 991px) {
    .advertise-box {
        grid-template-columns: 1fr;
    }

    .advertise-info {
        min-height: 300px;
    }
}

/* Mobile */
@media (max-width: 575px) {

    .advertise-info {
        display: block;
        padding: 30px 22px;
    }

    .advertise-info h2 {
        font-size: 24px;
    }

    .advertise-book {
        display: none;
    }

    .advertise-form {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

















/*  */
.catalogue-contact {
    padding: 40px 0;
    background: var(--t4a-white);
}

.catalogue-contact-box {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 25px 30px;
    background: var(--t4a-blue);
    border-radius: 9px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
}

.contact-icon svg {
    width: 62px;
    height: 62px;
    fill: none;
    stroke: var(--t4a-orange);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-content {
    flex: 1.3;
}

.contact-content h2 {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 7px;
}

.contact-content p {
    max-width: 430px;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
}

.contact-detail svg {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--t4a-orange);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-detail small {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    padding: 12px 22px;
    background: #fff;
    color: #073b82;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.contact-btn:hover {
    background: var(--t4a-orange);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .catalogue-contact-box {
        flex-wrap: wrap;
    }

    .contact-content {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .catalogue-contact-box {
        display: block;
        text-align: center;
        padding: 30px 20px;
    }

    .contact-icon {
        margin-bottom: 15px;
    }

    .contact-content p {
        margin: auto;
    }

    .contact-detail {
        justify-content: center;
        margin-top: 20px;
        text-align: left;
    }

    .contact-btn {
        margin-top: 20px;
    }
}













/**/
/*=========================
   Advertisement Options
==========================*/

            .t4a-ad-section {
                padding: 70px 0;
                background: #fff;
            }
            .t4a-subtitle {
                display: inline-block;
                font-size: 13px;
                font-weight: 700;
                letter-spacing: 1px;
                color: #FF7400;
                text-transform: uppercase;
                margin-bottom: 12px;
            }

            .t4a-heading {
                font-size: 44px;
                font-weight: 700;
                color: #111111;
                margin-bottom: 15px;
            }
            .t4a-heading span {
                color: #FF7400;
            }
            .t4a-desc {
                max-width: 720px;
                margin: auto;
                color: #666;
                font-size: 16px;
                line-height: 28px;
            }
            /*=========================
 Cards
==========================*/

            .ad-card,
            .price-card {
                background: #fff;
                border: 1px solid #EDEDED;
                border-radius: 18px;
                padding: 35px 30px;
                text-align: center;
                transition: .35s;
                height: 100%;
                overflow: hidden;
                position: relative;
            }

            .price-card {
                background: #FFF8F2;
                border: 1px solid #ffd7bb;
            }

            .ad-card:hover,
            .price-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
            }
            /*=========================
 Icon
==========================*/

            .icon-circle {
                width: 60px;
                height: 60px;
                border: 2px solid #FF7400;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: auto auto 25px;
            }

            .ad-icon {
                width: 34px;
                height: 34px;
                fill: none;
                stroke: #FF7400;
                stroke-width: 1.8;
                stroke-linecap: round;
                stroke-linejoin: round;
            }

            .pdf-icon {
                width: 38px;
                height: 38px;
                fill: none;
                stroke: #FF7400;
                stroke-width: 1.8;
            }

            /*=========================
Heading
==========================*/

            .ad-card h3,
            .price-card h3 {
                font-size: 18px;
                font-weight: 700;
                color: #111111;
                margin-bottom: 15px;
            }

            /*=========================
Orange line
==========================*/
            .orange-line {
                width: 70px;
                height: 4px;
                background: #FF7400;
                border-radius: 30px;
                margin: 0 auto 35px;
            }

            /*=========================
Full Page Preview
==========================*/

            .page-preview {
                display: flex;
                justify-content: center;
                margin-bottom: 28px;
            }

            .page-box {
                width: 120px;
                height: 155px;
                background: #fff;
                border-radius: 8px;
                border: 2px solid #ECECEC;
                padding: 10px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
            }

            .page-orange {
                height: 82px;
                background: #FF7400;
                border-radius: 4px;
                margin-bottom: 10px;
            }

            .line {
                height: 5px;
                background: #ddd;
                margin-bottom: 6px;
                border-radius: 30px;
            }
            .line.small {
                width: 60%;
            }

            /*=========================
Centre Spread
==========================*/

            .spread-preview {
                display: flex;
                justify-content: center;
                gap: 5px;
                margin-bottom: 30px;
            }
            .left-page,
            .right-page {
                width: 82px;
                height: 155px;
                background: #fff;
                border: 2px solid #ECECEC;
                border-radius: 6px;
                position: relative;
                overflow: hidden;
                box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
            }

            .left-page::before,
            .right-page::before {
                content: "";
                position: absolute;
                left: 10px;
                right: 10px;
                top: 18px;
                height: 78px;
                background: #FF7400;
                border-radius: 4px;
            }

            .left-page::after,
            .right-page::after {
                content: "";
                position: absolute;
                left: 10px;
                right: 10px;
                bottom: 16px;
                height: 30px;
                background: linear-gradient(#ddd 3px, transparent 3px);
                background-size: 100% 9px;
            }

            /*=========================
PDF
==========================*/

            .pdf-box {
                width: 135px;
                height: 160px;
                margin: 0 auto 30px;
                background: #fff;
                border-radius: 10px;
                border: 2px solid #ECECEC;
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
            }

            .pdf-large {
                width: 55px;
                height: 55px;
                fill: none;
                stroke: #FF7400;
                stroke-width: 1.8;
            }

            .pdf-box span {
                position: absolute;
                bottom: 18px;
                background: #FF7400;
                color: #fff;
                padding: 4px 14px;
                border-radius: 30px;
                font-size: 13px;
                font-weight: 600;
            }
            /*=========================
Text
==========================*/

            .ad-card p,
            .price-card p {
                color: #666;
                font-size: 15px;
                line-height: 26px;
                margin-bottom: 12px;
            }
            /*=========================
Buttons
==========================*/

            .ad-card a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                padding: 6px 20px;
                border: 2px solid #FF7400;
                color: #FF7400;
                border-radius: 8px;
                text-decoration: none;
                font-weight: 600;
                transition: .3s;
                font-size: 13px;
            }
            .ad-card a:hover {
                background: #FF7400;
                color: #fff;
            }
            .pdf-btn {
                display: block;
                padding: 6px 20px;
                background: #FF7400;
                color: #fff;
                border-radius: 8px;
                text-decoration: none;
                font-weight: 600;
                transition: .3s;
                font-size: 13px;
            }
            .pdf-btn:hover {
                background: #FF812D;
                color: #fff;
            }
            /*=========================
Responsive
==========================*/

            @media(max-width:991px) {
                .t4a-heading {
                    font-size: 36px;
                }
                .ad-card,
                .price-card {
                    margin-bottom: 25px;
                }
            }
            @media(max-width:767px) {
                .t4a-heading {
                    font-size: 30px;
                }
                .t4a-desc {
                    font-size: 15px;
                    line-height: 26px;
                }
                .ad-card h3,
                .price-card h3 {
                    font-size: 24px;
                }
            }
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            /**/
            .t4a-price-guide {
                display: flex;
                align-items: center;
                gap: 18px;
                margin: 30px 0;
                padding: 18px 22px;
                background: #fff7f0;
                border: 1px solid #ffe0c7;
                border-radius: 10px;
            }

            .t4a-price-icon {
                width: 52px;
                height: 52px;
                min-width: 52px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #FF7400;
                background: #fff;
                border: 1px solid #ffd0ad;
                border-radius: 8px;
            }

            .t4a-price-content {
                flex: 1;
            }

            .t4a-price-content h3 {
                margin: 0 0 4px;
                color: #111a3a;
                font-size: 18px;
                font-weight: 700;
            }

            .t4a-price-content p {
                margin: 0;
                color: #555;
                font-size: 13px;
            }

            .t4a-price-btn {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 11px 18px;
                background: #FF7400;
                color: #fff;
                border-radius: 5px;
                text-decoration: none;
                font-size: 13px;
                font-weight: 600;
                white-space: nowrap;
            }

            .t4a-price-btn:hover {
                background: #FF812D;
                color: #fff;
            }

            .t4a-price-btn span {
                font-size: 17px;
            }

            @media (max-width: 576px) {
                .t4a-price-guide {
                    align-items: flex-start;
                    flex-wrap: wrap;
                }

                .t4a-price-content {
                    width: calc(100% - 70px);
                }

                .t4a-price-btn {
                    width: 100%;
                    justify-content: center;
                }
            }
            
            
            
            
            
            
            
            
            
            
            
            
            /**/
            .edition-badges {
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
                align-items: center;
                margin-bottom: 10px;
            }

            .expo-badge {
                display: inline-flex;
                align-items: center;
                gap: 7px;
                background: #FFF3E8;
                color: #FF7400;
                border: 1px solid #FFD5AF;
                border-radius: 6px;
                font-size: 12px;
            }

            .expo-badge strong {
                font-weight: 700;
            }

            .expo-badge svg {
                width: 16px;
                height: 16px;
                stroke: #FF7400;
                fill: none;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
            }

            .catalogue-badge {
                display: inline-flex;
                align-items: center;
                gap: 7px;
                background: #EAF8EC;
                color: #239B45;
                border: 1px solid #CFEFD8;
                border-radius: 6px;
                font-size: 12px;
            }

            .catalogue-badge strong {
                font-weight: 700;
            }

            .catalogue-badge svg {
                width: 17px;
                height: 17px;
                stroke: #239B45;
                fill: none;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
            }

            /*  */
            .catalogue-title {
                font-size: 10px;
                font-weight: 600;
                color: #201e1e;
                line-height: 1;
            }