/* Blog 2 styles */
.booking-contact-card.blog2-contact-card {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: linear-gradient(180deg, #23225d 0%, #15143a 100%);
    clear: both;
    padding: 24px;
    display: block;
}

.blog2-contact-card .contact-card-value {
    margin-bottom: 0px;
    font-size: 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.booking-contact-card.blog2-contact-card .blog2-person-row {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
}

.booking-contact-card.blog2-contact-card a.blog2-person-link:hover .blog2-person-row,
.booking-contact-card.blog2-contact-card .blog2-person-row:hover {
    background: rgba(255,255,255,0.08) !important;
}

.booking-contact-card.blog2-contact-card .blog2-person-img-wrapper {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.booking-contact-card.blog2-contact-card .blog2-person-img {
    object-fit: cover;
}

.booking-contact-card.blog2-contact-card .blog2-person-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.booking-contact-card.blog2-contact-card .blog2-person-summary {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.3;
}

.booking-contact-card.blog2-contact-card .blog2-person-link {
    text-decoration: none;
    display: block;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/v3/AvenirNextLTPro-Medium.eot');
    src: url('../fonts/v3/AvenirNextLTPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/v3/AvenirNextLTPro-Medium.woff2') format('woff2'),
        url('../fonts/v3/AvenirNextLTPro-Medium.woff') format('woff'),
        url('../fonts/v3/AvenirNextLTPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/v3/AvenirNextLTPro-Regular.eot');
    src: url('../fonts/v3/AvenirNextLTPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/v3/AvenirNextLTPro-Regular.woff2') format('woff2'),
        url('../fonts/v3/AvenirNextLTPro-Regular.woff') format('woff'),
        url('../fonts/v3/AvenirNextLTPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/v3/AvenirNextLTPro-Bold.eot');
    src: url('../fonts/v3/AvenirNextLTPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/v3/AvenirNextLTPro-Bold.woff2') format('woff2'),
        url('../fonts/v3/AvenirNextLTPro-Bold.woff') format('woff'),
        url('../fonts/v3/AvenirNextLTPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?c7301e929fe13301ec3d4c58cd4386c9');
    src: url('../fonts/icomoon.eot?c7301e929fe13301ec3d4c58cd4386c9?#iefixrarl3t') format("embedded-opentype"), url('../fonts/icomoon.woff?d179be69901e40b8a9f0e301aec319a3') format("woff"), url('../fonts/icomoon.ttf?2fcbce3d6dfd9947789d7a1bac1f5042') format("truetype"), url('../fonts/icomoon.svg?657b22f9e5c40e6857c9639cc7a7ab9e#icomoon') format("svg");
    font-weight: normal;
    font-style: normal;
}


/* Root Variables */
:root {
    --primary-dark: #23225d;
    --secondary-dark: #17164d;
    --text-light: #9d9cb7;
    --gold: #d5a22a;
    --gold-dark: #9e6a00;
    --gray: #6a6a6a;
    --gray-dark: #2b2b2b;
    --blue: #0d93c8;
    --blue-dark: #0b5876;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Avenir Next LT Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
}

body.home-page {
    background-color: transparent;
    color: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul,
ul li {
    list-style: none;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-dark);
    padding: 8px 0;
}

.top-bar .small-text {
    font-size: 14px;
    color: var(--text-light);
}

.top-bar i {
    color: var(--text-light);
    font-size: 14px;
}

/* Main Navigation */
.main-nav {
    background-color: var(--primary-dark);
    padding: 0.8rem 0;
    box-shadow: none !important;
    z-index: 1000;
}

.main-nav .logo {
    height: 82px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-nav .logo:hover {
    transform: scale(1.05);
}

.main-nav .nav-link {
    color: #fff !important;
    font-size: 18px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 80%;
}

.main-nav .nav-link:hover {
    color: var(--gold) !important;
}

.main-nav .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.btn-booking {
    background: linear-gradient(270deg, var(--gold) 0%, #e8bc4a 100%);
    /* background: linear-gradient(deg, var(--fw-primary) 0%, #e8bc4a 100%); */
    /* border: 3px solid rgba(219, 201, 39, 0.671); */
    border-radius: 40px;
    color: #fff;
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0.5);
    transition: all 0.3s ease;
}

.btn-booking:hover {
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 0 25px rgba(213, 162, 42, 0.8), 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
    /* border-color: rgba(243, 220, 15, 0.925); */
}

/* Hero Section - Restructured */
.hero-v3-section {
    position: relative;
    background-color: var(--primary-dark);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0 100px 0px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(35, 34, 93, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.brand-logo-header {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-logo-header:hover {
    transform: scale(1.1);
}

.booking-category-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.booking-category-card:hover {
    transform: translateY(-10px);
}

.category-image-collage img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.booking-bands-logo {
    height: 100px;
    width: auto;
}

.btn-hero {
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 700;
    /* border: 1px solid rgba(255, 255, 255, 0.15); */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    color: #fff;
    transition: all 0.3s ease;
    min-width: 170px;
    border: 0px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-gold {
    background: linear-gradient(270deg, var(--gold) 0%, var(--gold-dark) 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 8px 25px rgba(255, 185, 0, 0.35), 0 0 40px rgba(255, 185, 0, 0.25);
}

.btn-gold:hover {
    background: linear-gradient(270deg, var(--gold-dark) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 35px rgba(255, 185, 0, 0.5), 0 0 55px rgba(255, 185, 0, 0.4);
}

.btn-gray {
    background: linear-gradient(270deg, var(--gray) 0%, var(--gray-dark) 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 8px 25px rgba(120, 130, 255, 0.25), 0 0 40px rgba(120, 130, 255, 0.18);
}

.btn-gray:hover {
    background: linear-gradient(270deg, var(--gray-dark) 0%, var(--gray) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 35px rgba(120, 130, 255, 0.4), 0 0 55px rgba(120, 130, 255, 0.3);
}

.btn-blue {
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 8px 25px rgba(0, 200, 255, 0.35), 0 0 40px rgba(0, 200, 255, 0.25);
}

.btn-blue:hover {
    background: linear-gradient(270deg, var(--blue-dark) 0%, var(--blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 35px rgba(0, 200, 255, 0.5), 0 0 55px rgba(0, 200, 255, 0.4);
}

.btn-lite-blue {
    background: #3e3f66;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-lite-blue:hover {
    background: #2f3054;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Client Logos Section */
.client-logos {
    /* background: #000000; */
    padding: 20px 0;
    margin-top: -30px;
    /* border-radius: 30px 30px 0px 0px; */
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #23225d 0%, #23225d 45%, #15143a 75%, #0c0c1f 100%);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.client-text {
    color: #fff;
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: 500;
}

.client-logo {
    /*    height: 34px;*/
    width: auto;
    /*    opacity: 0.8;*/
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Nopac Brands Section */
.nopac-brands-section {
    background-color: #ffffff;
    position: relative;
}

.section-title,
.section-title2 {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    letter-spacing: -1.35px;
}

.section-title2 {
    font-size: 34px;
    color: #ffffff;
}

.brand-text {
    color: #000;
    font-size: 18px;
    line-height: 1.6;
    max-width: 885px;
    margin: 0 auto 20px;
}

.sub-title {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
}

/* Talent Cards */
.talent-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    background: linear-gradient(180deg, #23225d 0%, #23225d 45%, #15143a 75%, #0c0c1f 100%);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.talent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.talent-brand-logo {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

.talent-card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.talent-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.talent-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.talent-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.talent-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.talent-item span {
    color: #fff;
    font-size: 20px;
    flex: 1;
    text-align: left;
}

/* News Section */
.news-section {
    background-color: #1B1B1B;
    border-radius: 30px 30px 0px 0px;
    padding-bottom: 80px !important;
}

.news-card {
    background-color: #fff;
    border-radius: 23px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    margin-bottom: 10px;
}

.news-title {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.news-description {
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    line-height: 1.5;
}

/* Primary CTA Section */
.primary-cta-section {
    background: rgb(212, 184, 041);
    border-radius: 30px 30px 0px 0px;
    margin-top: -30px;
    padding: 30px 0 60px;
    width: 100%;
    clear: both;
}

.cta-heading {
    color: #fff;
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 30px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.btn-primary-cta {
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    color: #000;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #23225d 0%, #23225d 45%, #15143a 75%, #0c0c1f 100%);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    margin-bottom: 10px;
}

.services-list a {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.services-list a:hover {
    color: var(--gold);
    transform: translateX(5px);
    display: inline-block;
    transition: all 0.3s ease;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 36px;
}

.testimonials-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: #f7e6c9;
    color: #b8781e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.testimonials-title {
    color: #000;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 12px 0 10px;
}

.testimonials-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0;
}

.testimonials-shell {
    display: flex;
    gap: 24px;
    align-items: stretch;
    padding: 26px;
    border-radius: 26px;
    background: linear-gradient(180deg, #23225d 0%, #23225d 45%, #15143a 75%, #0c0c1f 100%);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.testimonials-main {
    flex: 1 1 70%;
    display: grid;
    flex-direction: column;
    min-width: 0;
}

.testimonials-main .swiper {
    width: 100%;
}

.testimonial-panel {
    padding: 6px 6px 0;
}

.testimonial-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #e5c17b;
    margin-bottom: 14px;
}

.testimonial-quote {
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 22px;
}

.testimonial-quote a {
    text-decoration: underline;
    padding-left: 5px;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.testimonial-author-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.testimonial-author-name a {
    color: #fff;
    text-decoration: none;
}

.testimonial-author-name a:hover {
    color: #f2d7a6;
}

.testimonial-author-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 4px 0 0;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.testimonials-nav .swiper-button-next,
.testimonials-nav .swiper-button-prev {
    position: static;
    width: 36px;
    height: 36px;
    margin-top: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.testimonials-nav .swiper-button-next:hover,
.testimonials-nav .swiper-button-prev:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.testimonials-nav .swiper-button-next::after,
.testimonials-nav .swiper-button-prev::after {
    font-size: 14px;
    color: #fff;
}

.testimonials-nav .swiper-pagination {
    position: static;
    width: 130px !important;
}

.testimonials-nav .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 1;
    margin: 0 4px !important;
    transition: transform 0.2s ease, background 0.2s ease;
    left: 0px !important;
}

.testimonials-nav .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

.testimonials-next {
    flex: 0 0 300px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonials-next-title {
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.testimonials-next-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 12px;
    color: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease;
    width: 100%;
    text-align: left;
}

.testimonials-next-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.25);
}

.testimonials-next-card.is-active {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.next-card-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 6px;
}

.next-card-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
}

/* Complete Footer Redesign */
.main-footer {
    position: relative;
    background-color: #000;
    overflow: hidden;
    margin-top: -30px;
    border-radius: 30px 30px 0px 0px;
    width: 100%;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.footer-bg,
.footer-bg-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.footer-bg-mobile {
    display: none;
}

.footer-bg {
    bottom: 0;
}

.footer-bg-2 {
    top: 0;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.footer-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.contact-item-footer i {
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.contact-item-footer a:hover {
    color: var(--gold);
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-subscribe-form .input-group {
    display: flex;
    gap: 8px;
}

.footer-subscribe-form .form-control {
    border-radius: 50px !important;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 1);
    color: #949494;
}

.footer-subscribe-form .form-control::placeholder {
    color: #949494;
}

.footer-subscribe-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(213, 162, 42, 0.25);
    color: #fff;
}

.btn-footer-subscribe {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(153, 153, 153, 0.09) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px !important;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-footer-subscribe:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(153, 153, 153, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.footer-disclaimer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 10px 0 0;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 0;
}

.footer-bottom {
    padding-top: 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-v3-section {
        min-height: 600px;
        padding: 40px 0;
    }

    .section-title {
        font-size: 35px;
    }

    .sub-title {
        font-size: 28px;
    }

    .cta-heading {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .testimonials-title {
        font-size: 34px;
    }

    .navbar-collapse {
        background-color: rgba(35, 34, 93, 0.95);
        padding: 20px;
        margin-top: 15px;
        border-radius: 15px;
    }

    .footer-legal-links {
        justify-content: center;
        margin-top: 20px;
    }

    .testimonials-shell {
        flex-direction: column;
    }

    .testimonials-next {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-left: 0;
        padding-top: 16px;
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .hero-v3-section {
        min-height: auto;
        padding: 30px 0;
    }

    .hero-brands-top .row {
        justify-content: center !important;
    }

    .booking-category-card {
        margin-bottom: 20px;
    }

    .category-image-collage img {
        max-width: 100%;
    }

    .booking-bands-logo {
        height: 45px;
    }

    .btn-hero {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .hero-cta-buttons .row {
        margin: 0;
    }

    .client-logos {
        padding: 15px 0;
    }

    .client-logos .row {
        flex-direction: column;
        gap: 15px;
    }

    .client-text {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .client-logo {
        height: 35px;
        margin: 5px;
    }

    .nopac-brands-section {
        padding: 35px 0 !important;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 20px !important;
    }

    .brand-text {
        font-size: 15px;
        padding: 0 15px;
    }

    .talent-card {
        margin-bottom: 20px;
    }

    .talent-brand-logo {
        height: 50px;
    }

    .talent-card-title {
        font-size: 18px;
    }

    .news-card {
        margin-bottom: 20px;
    }

    .cta-heading {
        font-size: 25px;
        text-align: center;
        margin-bottom: 15px;
    }

    .btn-primary-cta {
        width: 100%;
        font-size: 18px;
        padding: 15px 30px;
    }

    .services-section {
        padding: 10px 0 !important;
    }

    .services-list {
        margin-bottom: 30px;
    }

    .services-list li {
        text-align: center;
    }

    .section-title2 {
        font-size: 24px;
        text-align: center;
        padding-top: 20px;
    }

    .speakers-logo {
        width: 100%;
        text-align: center;
        margin-top: 1rem !important;
    }

    .testimonials-section {
        padding: 40px 0 !important;
    }

    .testimonials-title {
        font-size: 26px;
        margin-bottom: 18px !important;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .testimonials-shell {
        padding: 18px;
    }

    .testimonials-nav {
        justify-content: flex-center;
    }

    .testimonials-nav .swiper-pagination {
        display: none;
    }

    .footer-top {
        padding: 40px 0 !important;
        text-align: center;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-logo {
        height: 60px;
        margin-bottom: 15px;
    }

    .footer-heading {
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding: 20px 0 !important;
    }

    .footer-copyright {
        font-size: 13px;
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-legal-links {
        justify-content: center;
        gap: 15px;
    }

    .footer-legal-links a {
        font-size: 13px;
    }
}

@media (max-width: 576px) {

    .container,
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .px-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .top-bar {
        padding: 6px 0;
    }

    .top-bar .small-text {
        font-size: 12px;
    }

    .top-bar .row>div {
        text-align: center;
        padding: 5px 10px;
    }

    /* .top-bar .row > div:last-child {
        margin-top: 8px;
    } */

    .top-bar .d-flex {
        gap: 5px !important;
        justify-content: space-between;
    }

    .main-nav {
        padding: 0.75rem 0;
    }

    .main-nav .container-fluid {
        padding: 0 15px !important;
    }

    .main-nav .logo {
        height: 60px;
    }

    .navbar-toggler {
        padding: 0.5rem;
        font-size: 1.1rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(153, 153, 153, 0.15) 100%);
        border: 0px;
        border-radius: 30px;
    }

    .nav-link {
        font-size: 16px !important;
        padding: 0.75rem 0 !important;
    }

    .btn-booking {
        width: 100%;
        /* margin-top: 15px; */
    }

    .hero-v3-section {
        padding: 20px 0;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-brands-top {
        margin-bottom: 20px !important;
    }

    .brand-logo-header {
        height: auto;
        margin-bottom: 15px;
    }

    .booking-bands-logo {
        height: 80px;
    }

    .btn-hero {
        font-size: 16px;
        padding: 10px 20px;
    }

    .client-logos {
        padding: 12px 0;
    }

    .client-text {
        font-size: 14px;
    }

    .client-logo {
        height: 34px;
    }

    .section-title {
        font-size: 22px;
    }

    .sub-title {
        text-align: center;
    }

    .brand-text {
        font-size: 14px;
    }

    .talent-brand-logo {
        height: 45px;
    }

    .talent-card-title {
        font-size: 16px;
    }

    .talent-item span {
        font-size: 16px;
    }

    .talent-avatar {
        width: 40px;
        height: 40px;
    }

    .news-image {
        height: 180px;
    }

    .news-title {
        font-size: 17px;
    }

    .news-description {
        font-size: 14px;
    }

    .cta-heading {
        font-size: 26px;
    }

    .btn-primary-cta {
        font-size: 16px;
        padding: 12px 25px;
    }

    .services-list a {
        text-align: center;
    }

    .testimonials-title {
        font-size: 22px;
    }

    .testimonial-quote {
        font-size: 14px;
    }

    .testimonials-badge {
        font-size: 11px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonials-next {
        gap: 10px;
    }

    .footer-logo {
        height: 55px;
    }


    .footer-newsletter-text {
        font-size: 13px;
    }

    .footer-subscribe-form .form-control {
        font-size: 14px;
        padding: 10px 18px;
        width: auto;
    }

    .btn-footer-subscribe {
        width: 100%;
        font-size: 14px;
        padding: 10px 20px;
    }

    .footer-disclaimer-text {
        font-size: 12px;
    }

    .footer-subscribe-form .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-legal-links a {
        font-size: 12px;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-bg-mobile {
        display: block;
    }
}

/* Extra small mobile devices */
@media (max-width: 400px) {
    .section-title {
        font-size: 20px;
    }

    .sub-title {
        font-size: 18px;
    }

    .brand-text {
        font-size: 13px;
    }

    .btn-hero {
        font-size: 15px;
        padding: 9px 18px;
    }

    .talent-card {
        padding: 20px;
    }

    .cta-heading {
        font-size: 22px;
        line-height: 30px !important;
    }

    .btn-primary-cta {
        font-size: 15px;
    }

    .testimonials-title {
        font-size: 20px;
    }

    .footer-contact-info {
        align-items: center;
    }
}

.g-6,
.gx-6 {
    --bs-gutter-x: 5rem;
}

.testimonial-section {
    padding-top: 82px;
    padding-bottom: 72px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 52px;
    height: 52px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(153, 153, 153, 0.15) 100%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

.home-blogimg img {
    /* margin-top: 25px; */
    border-radius: 3%
}

.navbar-expand-lg .navbar-collapse {
    justify-content: end;
}

.navbar-expand-lg .navbar-nav {
    gap: 15px
}

.btn-booking {
    margin-left: 15px
}

.talent-item a {
    display: flex;
    align-items: center;
}

.talent-item a span {
    padding-left: 10px;
}



.right-col ul {
    padding-left: 0px
}

.right-col .error,
.form-steps .fields-group .error {
    color: #F95454
}

.banner-list-buttons {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#testimonials.testimonials-section .swiper {
    position: inherit;
}

.testimonial-arrowsblocks {
    width: 170px;
    float: right;
    position: relative;
    margin-top: 50px;
}

/* #testimonials.testimonials-section .swiper-button-next,
#testimonials.testimonials-section .swiper-button-prev { top: 17%; left: inherit; }
#testimonials.testimonials-section .swiper-button-prev { right: 19.5% }
#testimonials.testimonials-section .swiper-button-next { right: 16% } */

.btn-booking.top-btn-booking {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(153, 153, 153, 0.19) 100%);
    padding: 2px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.top-bar .btn-call-direct .small-text {
    color: #17164D;
}

.btn-call-direct {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.85) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    color: #fff;
    padding: 2px 16px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.btn-call-direct:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.85) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    color: #17164D;
}

.btn-booking.top-btn-booking .small-text {
    color: #fff;
}

.client-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.client-text {
    white-space: nowrap;
    color: #fff;
    font-weight: 600;
}

.client-logo-swiper {
    flex: 1;
    min-width: 0;
}

.client-logo {
    max-height: 45px;
    width: auto;
}

.talent-brand-logo.bb-talent-brand-logo {
    height: 80px;
    margin-top: -15px;
    margin-bottom: 10px !important;
}

.booking-category-card {
    transition: 0.4s ease;
}

.booking-categories:has(.booking-category-card-sba:hover)+.hero-cta-buttons .col-lg-4:first-child a {
    background: linear-gradient(270deg, var(--gold-dark) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 35px rgba(255, 185, 0, 0.5), 0 0 55px rgba(255, 185, 0, 0.4);
}

.booking-categories:has(.booking-category-card-bb:hover)+.hero-cta-buttons .col-lg-4:nth-child(2) a {
    background: linear-gradient(270deg, var(--gray-dark) 0%, var(--gray) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 35px rgba(120, 130, 255, 0.4), 0 0 55px rgba(120, 130, 255, 0.3);
}

.booking-categories:has(.booking-category-card-as:hover)+.hero-cta-buttons .col-lg-4:nth-child(3) a {
    background: linear-gradient(270deg, var(--blue-dark) 0%, var(--blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 35px rgba(0, 200, 255, 0.5), 0 0 55px rgba(0, 200, 255, 0.4);
}

#testimonials .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    transform: inherit;
}

#testimonials .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
#testimonials .swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
#testimonials .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
#testimonials .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
#testimonials .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(1);
}

.sticky-top.sticky-logo .logo {
    height: 60px;
}

#testimonials .testimonials-nav .swiper-pagination-bullet-active {
    transform: scale(1.2);
}

@media (min-width: 1025px) {
    .flex-center {
        display: flex;
        justify-content: center;
    }

    .flex-end {
        display: flex;
        justify-content: end;
    }
}

#bookings .align-items-center.speakers-logo {
    justify-content: center;
    margin-bottom: 3rem !important;
}

#bookings .align-items-center .col-auto {
    padding-left: 3rem;
    padding-right: 3rem;
}


/* Floating Button Container */
.fw-btn-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fw-btn-container.hidden {
    display: none;
}

/* Tooltip */
.fw-tooltip {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    margin-bottom: 15px;
    margin-right: -10px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    animation: fw-bounce 2s infinite ease-in-out;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.fw-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 35px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1a1a1a;
}

@keyframes fw-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Close button for Floating Widget */
.fw-close-btn {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #444;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #222;
    cursor: pointer;
    z-index: 10000;
    padding: 0;
    transition: all 0.2s;
}

.fw-close-btn:hover {
    background: #666;
    transform: scale(1.1);
}

.fw-close-btn svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
}

/* Floating Button */
.fw-floating-btn {
    position: relative;
    background: linear-gradient(270deg, var(--fw-primary) 0%, #e8bc4a 100%);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    padding: 12px 24px;
    color: var(--fw-text-light);
    font-weight: 700;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(213, 162, 42, 0.5);
    transition: all 0.3s ease;
    animation: fw-pulse 2s infinite;
}

.fw-floating-btn:hover {
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 0 25px rgba(213, 162, 42, 0.8), 0 6px 20px rgba(0, 0, 0, 0.3);
}

.fw-floating-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Mini Popup */
.fw-mini-popup {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 320px;
    background: var(--fw-gray);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    font-family: inherit;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 24px;
}

.fw-mini-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fw-mini-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.fw-mini-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fw-mini-icon {
    width: 45px;
    height: 45px;
    background: var(--fw-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.fw-mini-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.fw-mini-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--fw-text-dark);
    margin: 0;
    line-height: 1.2;
}

.fw-mini-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.fw-mini-close {
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    padding: 0;
}

.fw-mini-close:hover {
    color: #000;
}

.fw-mini-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.fw-mini-body {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
}

.fw-btn-primary {
    width: 100%;
    background: var(--fw-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    transition: background 0.2s;
}

.fw-btn-primary:hover {
    background: var(--fw-primary-hover);
}

.fw-btn-secondary {
    width: 100%;
    background: #ffc107;
    color: #333;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.fw-btn-secondary:hover {
    opacity: 0.9;
}

.fw-btn-secondary a {
    color: #333;
    text-decoration: none;
}

.fw-mini-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #666;
}

.fw-status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
}

/* Modal */
.fw-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: inherit;
}

.fw-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.fw-modal-content {
    background: var(--fw-text-light);
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.fw-modal-overlay.active .fw-modal-content {
    transform: scale(1);
}

.fw-modal-header {
    background: var(--fw-secondary);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: white;
}

.fw-modal-header-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fw-modal-header-left svg {
    margin-top: 3px;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.fw-modal-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.fw-modal-subtitle {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.fw-modal-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.2s;
}

.fw-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.fw-modal-close svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.fw-modal-body {
    padding: 24px;
    overflow-y: auto;
}

.fw-form-message {
    display: none;
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.fw-form-message.success {
    color: #1f6a35;
    background: #e8f7ec;
    border: 1px solid #a8dfb8;
}

.fw-form-message.error {
    color: #95212c;
    background: #fdeced;
    border: 1px solid #f5b5bb;
}

.fw-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.fw-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fw-form-group label {
    color: var(--fw-text-dark);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.fw-form-group input,
.fw-form-group select,
.fw-form-group textarea {
    background: var(--fw-text-light);
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    color: var(--fw-text-dark);
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.fw-form-group input:focus,
.fw-form-group select:focus,
.fw-form-group textarea:focus {
    outline: none;
    border-color: var(--fw-primary);
}

.fw-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.fw-modal-footer {
    display: flex;
    justify-content: center;
    padding: 0 24px 24px;
}

.fw-submit-btn {
    background: linear-gradient(180deg, #4a4a8a 0%, #2a2a5a 100%);
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
}

.fw-submit-btn:hover {
    background: linear-gradient(180deg, #4a4a8a 0%, #2a2a5a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.fw-modal-bottom {
    background: var(--fw-text-light);
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: #eee;
}

.fw-modal-bottom a {
    color: var(--fw-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fw-modal-bottom a svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

@media (max-width: 600px) {
    .fw-form-row {
        flex-direction: column;
        gap: 16px;
    }

    .fw-modal-content {
        margin: 16px;
        width: auto;
    }

    #fwQuickRequestForm {
        overflow-y: scroll
    }
}

/* Page-Specific Client Logos Card Override */
.recentbookings-logos-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 25px !important;
    margin-bottom: 35px !important;
    overflow: hidden !important;
}

.recentbookings-logos-card .client-text {
    color: #202260 !important;
    font-weight: 700 !important;
}

.recentbookings-logos-card .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recentbookings-logos-card .client-logo {
    max-width: 100% !important;
    height: 55px !important;
    max-height: 55px !important;
    width: auto !important;
    object-fit: contain;
}

@media (min-width: 768px) {
    .recentbookings-logos-card .client-logo {
        height: 75px !important;
        max-height: 75px !important;
    }
}

/* ===== Booking Contact Section ===== */
.booking-contact-section {
    position: relative;
    background-color: var(--primary-dark);
    padding: 20px 0 60px;
    overflow: hidden;
    margin-top: 0;
    min-height: 47vh;
}

.booking-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    /* background: url('/images/new-theme/mask-group.png') center/cover no-repeat; */
    background: transparent;
    opacity: 0.4;
    z-index: 0;
}

.booking-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

/* Full-width content on contactus page */
.page.contactus .content {
    width: 100%;
    float: none;
}

.booking-contact-section .container {
    position: relative;
    z-index: 2;
}

.booking-contact-left {
    padding-right: 40px;
}

.booking-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-contact-badge i {
    font-size: 14px;
}

.booking-contact-heading {
    color: #fff;
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.booking-contact-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}

.booking-contact-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-booking-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.btn-booking-call:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-booking-message {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d9534f;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-booking-message:hover {
    background: #c9302c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 83, 79, 0.35);
}

.btn-booking-request {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 8px;
    transition: all 0.3s ease;
}

.btn-booking-request:hover {
    color: #fff;
    transform: translateX(4px);
}

.btn-booking-request i {
    transition: transform 0.3s ease;
}

.btn-booking-request:hover i {
    transform: translateX(4px);
}

/* Contact Info Card */
.booking-contact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}



.contact-card-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-card-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.contact-card-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-card-value:hover {
    color: #fce7b2;
}

.contact-card-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Responsive */
@media (max-width: 991px) {
    .booking-contact-section {
        padding: 50px 0;
    }

    .booking-contact-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .booking-contact-heading {
        font-size: 32px;
    }

    .booking-contact-actions {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .booking-contact-heading {
        font-size: 26px;
    }

    .booking-contact-description {
        font-size: 15px;
    }

    .booking-contact-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-contact-card {
        padding: 24px 20px;
    }

    .contact-card-value {
        font-size: 16px;
    }
}

/* ===== Contact Form Section ===== */
.contact-form-section {
    background: #fff;
    padding: 70px 0 80px;
}

.contact-form-wrapper {
    padding-right: 20px;
}

.contact-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(213, 162, 42, 0.1);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

/* Sidebar Card */
.sidebar-card {
    background: linear-gradient(180deg, #23225d 0%, #15143a 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    margin-top: 20px;
}

.sidebar-card .title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-top: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 15px !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    font-family: 'Avenir Next LT Pro', sans-serif !important;
    text-align: center;
    letter-spacing: 0.5px;
}

.sidebar-card ul {
    margin: 0;
    padding: 0;
}

.sidebar-card ul li {
    padding: 12px 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
    transition: background 0.3s ease;
}

.sidebar-card ul li:last-child {
    margin-bottom: 0 !important;
}

.sidebar-card ul li:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.sidebar-card ul li a .info .name {
    color: #ffffff !important;
}

.sidebar-card ul li a .info .summary {
    color: rgba(255, 255, 255, 0.6) !important;
}

.sidebar-card select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8.825L.375 3.2l.85-.85L6 7.125 10.775 2.35l.85.85z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sidebar-card select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.sidebar-card select option {
    background: #23225d;
    color: #ffffff;
}

/* Select2 overrides for Sidebar Cards */
.sidebar-card .select2-container {
    width: 100% !important;
}

.sidebar-card .select2-container .select2-selection {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    height: 44px !important;
    display: flex;
    align-items: center;
    padding: 0 16px;
    transition: border-color 0.3s ease;
}

.sidebar-card .select2-container--open .select2-selection {
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.sidebar-card .select2-container .select2-selection__rendered {
    color: #ffffff !important;
    padding: 0 !important;
    font-size: 15px;
    font-family: 'Avenir Next LT Pro', sans-serif;
}

.sidebar-card .select2-container .select2-selection__arrow {
    right: 16px !important;
    height: 100% !important;
    display: flex;
    align-items: center;
}

.sidebar-card .select2-container .select2-selection__arrow b {
    display: none !important;
    /* Hide default arrow */
}

/* Custom dropdown arrow for Select2 */
.sidebar-card .select2-container .select2-selection::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8.825L.375 3.2l.85-.85L6 7.125 10.775 2.35l.85.85z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.contact-form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-form-heading {
    font-family: 'Avenir Next LT Pro', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 8px;
}

.contact-form-subtext {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 340px;
}

.contact-form-quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.quick-link-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-link-item:hover {
    color: var(--gold-dark);
}

.quick-link-item i {
    color: var(--gold-dark);
    font-size: 14px;
}

.contact-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.contact-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Avenir Next LT Pro', sans-serif;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form-input:focus {
    border-color: #202266;
    box-shadow: 0 0 8px rgba(32, 34, 102, 0.5);
}

.contact-form-input::placeholder {
    color: #aaa;
}

.contact-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8.825L.375 3.2l.85-.85L6 7.125 10.775 2.35l.85.85z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #202266;
    color: #fff;
    border: none;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-phone-btn:hover {
    background: #151744;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-form-submit {
    background: #202266;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Avenir Next LT Pro', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-submit:hover {
    background: #151744;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Office Image */
.contact-office-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
}

.office-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.office-map {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

.office-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    padding: 30px;
}

.contact-office-image {
    background: linear-gradient(135deg, #1a1a2e 0%, #23225d 50%, #2a2a5a 100%);
}


.office-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    color: #fff;
}

.office-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.office-city {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
}

.office-address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive - Contact Form */
@media (max-width: 991px) {
    .contact-form-section {
        padding: 50px 0 60px;
    }

    .contact-form-wrapper {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .contact-form-header {
        flex-direction: column;
    }

    .contact-office-image {
        min-height: 350px;
    }
}

.testimonial-panel .testimonial-quote {
    color: #ffffff !important;
}

/* Make the author name link white */
.testimonial-panel .testimonial-author-name {
    color: #ffffff !important;
    text-decoration: none;
}

/* Optional: Add a subtle hover effect for the link */
.testimonial-panel .testimonial-author-name a:hover {
    opacity: 0.8;
}

/* Make the author title a light gray so it's visible but secondary to the name */
.testimonial-panel .testimonial-author-title {
    color: #ced4da !important;
}

@media (max-width: 576px) {
    .contact-form-heading {
        font-size: 26px;
    }

    .contact-office-image {
        min-height: 280px;
    }
}

@media (max-width: 1199px) {
    .primary-cta-section .row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

/ *   S t a t i c   F e a t u r e d   S p e a k e r   C a r d s   B u t t o n s   U p d a t e   * /     . s t a t i c - f e a t u r e d   . s p e a k e r - c o n t a i n e r   . b u t t o n s    {
                 b a c k g r o u n d :    t r a n s p a r e n t    ! i m p o r t a n t ;
                 h e i g h t :    a u t o    ! i m p o r t a n t ;
                 d i s p l a y :    f l e x ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 a l i g n - i t e m s :    c e n t e r ;
                 g a p :    1 0 p x ;
                 p a d d i n g :    1 5 p x   1 0 p x ;
                 f l o a t :    n o n e    ! i m p o r t a n t ;
                 w i d t h :    1 0 0 % ;
                 b o x - s i z i n g :    b o r d e r - b o x ;
         
}

         . s t a t i c - f e a t u r e d   . s p e a k e r - c o n t a i n e r   . b u t t o n s   . b i o - l i n k ,
     . s t a t i c - f e a t u r e d   . s p e a k e r - c o n t a i n e r   . b u t t o n s   . b o o k i n g - l i n k   b u t t o n    {
                 d i s p l a y :    i n l i n e - b l o c k ;
                 b a c k g r o u n d :    # 2 0 2 2 6 6    ! i m p o r t a n t ;
                 c o l o r :    # f f f    ! i m p o r t a n t ;
                 b o r d e r :    n o n e    ! i m p o r t a n t ;
                 b o r d e r - r a d i u s :    5 0 p x    ! i m p o r t a n t ;
                 p a d d i n g :    1 0 p x   2 0 p x    ! i m p o r t a n t ;
                 f o n t - s i z e :    1 4 p x    ! i m p o r t a n t ;
                 f o n t - w e i g h t :    5 0 0    ! i m p o r t a n t ;
                 f o n t - f a m i l y :    ' A v e n i r   N e x t   L T   P r o '  ,    s a n s - s e r i f    ! i m p o r t a n t ;
                 c u r s o r :    p o i n t e r ;
                 t r a n s i t i o n :    a l l   0 . 3 s   e a s e    ! i m p o r t a n t ;
                 t e x t - a l i g n :    c e n t e r ;
                 t e x t - d e c o r a t i o n :    n o n e    ! i m p o r t a n t ;
                 h e i g h t :    a u t o    ! i m p o r t a n t ;
                 w i d t h :    a u t o    ! i m p o r t a n t ;
                 b o x - s h a d o w :    0   4 p x   1 5 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 0 5 )    ! i m p o r t a n t ;
                 b o x - s i z i n g :    b o r d e r - b o x ;
                 f l o a t :    n o n e    ! i m p o r t a n t ;
         
}

         . s t a t i c - f e a t u r e d   . s p e a k e r - c o n t a i n e r   . b u t t o n s   . b i o - l i n k : h o v e r ,
     . s t a t i c - f e a t u r e d   . s p e a k e r - c o n t a i n e r   . b u t t o n s   . b o o k i n g - l i n k   b u t t o n : h o v e r    {
                 b a c k g r o u n d :    # 1 5 1 7 4 4    ! i m p o r t a n t ;
                 t r a n s f o r m :    t r a n s l a t e Y ( - 2 p x ) ;
                 b o x - s h a d o w :    0   6 p x   2 0 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 1 5 )    ! i m p o r t a n t ;
         
}

         . s t a t i c - f e a t u r e d   . s p e a k e r - c o n t a i n e r   . b u t t o n s   . b o o k i n g - l i n k    {
                 m a r g i n :    0 ;
                 p a d d i n g :    0 ;
                 d i s p l a y :    i n l i n e - b l o c k ;
                 f l o a t :    n o n e    ! i m p o r t a n t ;
         
}

     