/* ========== VARIABLES ========== */
:root {
    --header-height: 76px;
    --top-bar-height: 40px;
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #ff6b6b;
    --accent-soft: #ffb6b6;
    --text-dark: #f8f4fb;
    --text-light: #d0c7e8;
    --white: #ffffff;
    --shadow-sm: 0 2px 25px rgba(0,0,0,0.35);
    --shadow-md: 0 10px 35px rgba(0,0,0,0.45);
    --transition: all 0.3s ease;
}

.top-info-bar {
    background: linear-gradient(120deg, #fce1ec, #f9c5d1, #f6b5c9);
    background-size: 180% 180%;
    color: #4b2335;
    padding: 0;
    font-size: 0.88rem;
    position: relative;
    z-index: 1030;
    box-shadow: none;
    overflow: hidden;
    animation: topBarFlow 16s ease-in-out infinite alternate;
}

.top-info-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.32), transparent);
    opacity: 0.55;
    mix-blend-mode: screen;
    transform: translateX(-100%);
    animation: topBarShimmer 14s linear infinite;
    pointer-events: none;
}

.top-info-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--top-bar-height);
    gap: 24px;
}

.top-marquee {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.top-marquee-track {
    display: inline-flex;
    gap: 26px;
    white-space: nowrap;
    animation: topMarqueeScroll 22s linear infinite;
}

.top-marquee-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    color: #4b2335;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(255,182,182,0.55);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-action-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255,255,255,0.18);
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.75);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.top-action-phone {
    background: radial-gradient(circle at 0 0, #ffd5d5, #f08ba3);
}

.top-action-whatsapp {
    background: radial-gradient(circle at 0 0, #b8ffdd, #25d366);
}

.top-action-instagram {
    background: radial-gradient(circle at 0 0, #ffb6e1, #ff6b6b);
}

.top-action-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 30px rgba(0,0,0,0.55);
}

.top-action-icon i {
    font-size: 0.9rem;
}

@keyframes topMarqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes topBarShimmer {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

@keyframes topBarFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.top-info-bar a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.top-info-bar a:hover {
    color: var(--accent-color);
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 14px;
    background: #0e3d82;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(14,61,130,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.info-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

.info-item a {
    color: #ffffff;
    font-weight: 600;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14,61,130,0.22);
    background: #0b3168;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a4b90;
    border-radius: 50%;
    transition: var(--transition);
    margin-right: 8px;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* ========== MAIN NAVBAR ========== */
.navbar-main {
    background: radial-gradient(circle at top left, rgba(8,4,16,0.96), rgba(3,2,6,1));
    padding: 6px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: var(--transition);
    height: var(--header-height);
    display: flex;
    align-items: center;
    animation: slideDown 0.8s ease forwards;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 184, 214, 0.4);
}

.navbar-main.scrolled {
    background: radial-gradient(circle at top, rgba(5,3,10,0.98), rgba(0,0,0,1));
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 184, 214, 0.5);
}

.nav-pill-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 8px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 184, 214, 0.55);
    background: rgba(8,4,16,0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.85);
}

.navbar-main.scrolled .nav-pill-shell {
    background: rgba(5,3,10,0.94);
    border-color: rgba(255, 196, 224, 0.9);
}

.navbar-main.scrolled .brand-logo-shell {
    transform: scale(0.94);
    box-shadow:
        0 0 22px rgba(255, 126, 176, 1),
        0 14px 30px rgba(0, 0, 0, 0.95);
}

.navbar-main.scrolled .nav-link {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.navbar-main::before {
    display: none;
}

.navbar-main .container {
    position: relative;
}

.nav-glow-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background-image: linear-gradient(90deg, var(--accent-color), var(--accent-soft));
    box-shadow: 0 0 22px rgba(255,107,107,0.9);
    opacity: 0;
    transform: translateX(0);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), width 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    pointer-events: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.brand-logo-shell {
    width: 220px;
    height: 72px;
    border-radius: 18px;
    padding: 2px;
    background: radial-gradient(circle at 0 0, #ffe5f3, #ff6b9c, #3a061d);
    border: 1.5px solid rgba(255, 145, 185, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 14px rgba(255, 126, 176, 0.9),
        0 8px 22px rgba(0, 0, 0, 0.8);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-logo-inner {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 0, rgba(255,255,255,0.18), rgba(5,3,8,0.96));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo-inner img {
    width: 88%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff6b6b, #ffb6b6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 0 18px rgba(255,107,107,0.95);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-primary {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: #ffffff;
    font-family: "Playfair Display", "Cormorant Garamond", serif;
}

.logo-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ffb6b6;
}

.header-actions {
    gap: 18px;
}

.btn-nav-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 26px;
    border-radius: 999px;
    background-image: linear-gradient(120deg, #ffb6b6, #ff6b6b);
    color: #050308;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-position 0.35s ease;
    background-size: 160% 160%;
}

.btn-nav-book span {
    position: relative;
    z-index: 2;
}

.btn-nav-book::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(255,255,255,0.5), transparent 60%);
    opacity: 0.45;
    mix-blend-mode: screen;
}

.btn-nav-book::after {
    content: "";
    position: absolute;
    left: -40%;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.65), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.btn-nav-book:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 36px rgba(0,0,0,0.85), 0 0 28px rgba(255,182,182,1);
    background-position: 100% 0;
}

.btn-nav-book:hover::after {
    transform: translateX(250%);
}

@keyframes bookNowPulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 10px 28px rgba(0,0,0,0.75), 0 0 18px rgba(255,182,182,0.85);
    }
    50% {
        transform: translateY(-1px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.95), 0 0 26px rgba(255,182,182,1);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 10px 28px rgba(0,0,0,0.75), 0 0 18px rgba(255,182,182,0.85);
    }
}
.nav-hamburger {
    border: none;
    padding: 4px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 0% 0%, rgba(255,182,182,0.1), transparent 60%);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 10px 28px rgba(0,0,0,0.65);
}

.nav-hamburger:focus {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.3), 0 0 0 4px rgba(255,182,182,0.25);
}

.hamburger-box {
    position: relative;
    width: 22px;
    height: 16px;
}

.hamburger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background-image: linear-gradient(90deg, var(--accent-color), var(--accent-soft));
    box-shadow: 0 0 10px rgba(255,107,107,0.85);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, top 0.35s cubic-bezier(0.4,0,0.2,1);
}

.hamburger-line.line-1 {
    top: 0;
}

.hamburger-line.line-2 {
    top: 7px;
}

.hamburger-line.line-3 {
    top: 14px;
}

.nav-hamburger.is-open .hamburger-line.line-1 {
    top: 7px;
    transform: rotate(45deg);
}

.nav-hamburger.is-open .hamburger-line.line-2 {
    opacity: 0;
}

.nav-hamburger.is-open .hamburger-line.line-3 {
    top: 7px;
    transform: rotate(-45deg);
}

/* ========== NAVIGATION LINKS ========== */
.navbar-nav {
    gap: 20px;
    position: relative;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 6px 0 !important;
    font-size: 0.92rem;
    position: relative;
    transition: var(--transition);
    border-radius: 999px;
    border: none;
    text-decoration: none !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-link::before {
    content: none;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-soft), var(--accent-color));
    box-shadow: 0 0 10px rgba(255,107,107,0.9);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff !important;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 22px rgba(0,0,0,0.9);
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nav-link span {
    position: relative;
    z-index: 1;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 10px;
    margin-top: 15px;
    animation: slideUp 0.3s ease forwards;
    display: block;
    /* opacity: 0; removed */
    visibility: hidden;
    transform: translateY(10px);
    background: rgba(8, 4, 16, 0.96);
}

.header-call {
    margin-left: 30px;
}

.header-call-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle, #ff6b6b, #ffb6b6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    box-shadow: 0 0 20px rgba(255,107,107,0.95);
    margin-right: 10px;
}

.header-call-icon i {
    font-size: 1rem;
}

.header-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-call-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #ffb6b6;
}

.header-call-number {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.header-call-number:hover {
    color: #ffb6b6;
}

.nav-item.dropdown:hover .dropdown-menu {
    /* opacity: 1; removed */
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #f5eefc;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(255,255,255,0.05);
    color: #ffffff;
    padding-left: 20px;
}

@keyframes slideUp {
    from { transform: translateY(10px); }
    to { transform: translateY(0); }
}

/* ========== ACTION BUTTONS ========== */
.btn-enquiry, .btn-booking {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(14,61,130,0.15);
}

.btn-enquiry {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
}

.btn-enquiry:hover {
    background: var(--primary-color);
    color: white;
}

.btn-booking {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    margin-left: 10px;
}

.btn-booking:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

/* ========== MOBILE SIDEBAR ========== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #050308;
    z-index: 1050;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 12px 0 35px rgba(0,0,0,0.85);
    overflow-y: auto;
    visibility: hidden; /* Prevent FOUC */
}

.mobile-sidebar.active {
    left: 0;
    visibility: visible;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1040;
    display: none;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, #050308, #12040c);
    color: #ffffff;
}

.mobile-logo-shell {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 3px;
    background: radial-gradient(circle at 0 0, #ffe5f3, #ff6b9c, #3a061d);
    border: 1px solid rgba(255, 145, 185, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 12px rgba(255, 126, 176, 0.9),
        0 6px 18px rgba(0, 0, 0, 0.9);
}

.mobile-logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 0, rgba(255,255,255,0.14), rgba(5,3,8,0.96));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mobile-logo-inner img {
    width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.6));
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-menu:hover {
    background: #f8f9fa;
    color: var(--danger);
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav-item {
    margin-bottom: 5px;
    border-bottom: 1px solid #f8f9fa;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #f8f4fb;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    justify-content: space-between;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    background: rgba(255,255,255,0.04);
    color: #ffffff;
}

.mobile-nav-link i {
    width: 25px;
    color: var(--accent-soft);
}

.mobile-submenu {
    padding-left: 40px;
    display: none;
    background: #fcfcfc;
    border-radius: 8px;
    margin-bottom: 10px;
}

.mobile-submenu.show {
    display: block;
}

.mobile-submenu .mobile-nav-link {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.mobile-submenu .mobile-nav-link:hover {
    color: var(--primary-color);
    background: none;
    padding-left: 5px;
}

/* Mobile Action Buttons Styling */
.btn-mobile-enquiry {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    margin-bottom: 10px;
    justify-content: center;
}

.btn-mobile-enquiry:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-mobile-enquiry i {
    color: inherit;
}

.btn-mobile-booking {
    background-color: var(--primary-color);
    color: var(--white);
    justify-content: center;
}

.btn-mobile-booking:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-mobile-booking i {
    color: inherit;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .navbar-main {
        height: 70px;
    }
    
    .navbar-brand img {
        height: 50px;
        width: auto;
    }

    .navbar-collapse {
        display: none;
    }
    
    .top-info-bar {
        display: block;
        padding: 8px 0;
    }

    .top-info-bar .col-md-6 {
        text-align: center !important;
        margin-bottom: 5px;
    }
    
    .info-item {
        justify-content: center;
        margin-right: 10px;
        font-size: 0.85rem;
    }
    
    .social-icon {
        display: none !important;
    }

    .top-buttons {
        display: flex;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .btn-enquiry, .btn-booking {
        padding: 6px 14px;
        font-size: 0.8rem;
        border-radius: 999px;
        box-shadow: 0 4px 10px rgba(14,61,130,0.15);
    }

    body {
        padding-bottom: 72px;
    }
    
    .brand-logo-shell {
        width: auto;
        height: auto;
        border-radius: 14px;
        padding: 2px;
        margin-top: -4px;
        display: inline-flex;
        box-shadow:
            0 0 10px rgba(255, 126, 176, 0.85),
            0 6px 18px rgba(0, 0, 0, 0.8);
    }

    .brand-logo-inner {
        width: auto;
        height: auto;
        border-radius: 12px;
    }

    .brand-logo-inner img {
        width: auto;
        height: 46px;
        filter: drop-shadow(0 3px 9px rgba(0,0,0,0.5));
    }
}

.mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    display: none;
    padding: 10px 8px; /* Reduced side padding for 4 items */
    gap: 6px; /* Reduced gap */
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(14,61,130,0.15);
    flex: 1; /* Distribute space equally */
    padding: 0; /* Remove padding, center content */
    font-size: 0.85rem; /* Slightly smaller text */
}

.cta-btn i {
    margin-right: 4px !important;
    font-size: 0.95rem;
}

.cta-call {
    background: linear-gradient(135deg, #1ebe5b 0%, #25D366 100%);
    color: #ffffff;
}

.cta-mail {
    background: linear-gradient(135deg, #dd4b39 0%, #c23321 100%);
    color: #ffffff;
}

.cta-enquiry {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.cta-booking {
    background: linear-gradient(135deg, #0b3168 0%, #0e3d82 100%);
    color: #ffffff;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(14,61,130,0.24);
}

.cta-btn::after {
    content: "";
    position: absolute;
    left: -30%;
    top: 0;
    width: 30%;
    height: 100%;
    background: rgba(255,255,255,0.35);
    transform: skewX(-20deg);
    transition: transform 0.5s ease;
}

.cta-btn:hover::after {
    transform: translateX(260%) skewX(-20deg);
}

@media (max-width: 991px) {
    .mobile-cta-bar {
        display: flex;
    }
}
