body {
    font-family: 'Inter', sans-serif;
    background: #f6fbfb;
    color: #111827;
}

/* HERO */

.hero-section {
    padding: 90px 0 60px;
    background: linear-gradient(180deg,
            #eef9f8 0%,
            #f6fbfb 100%);
}

.hero-content {
    max-width: 800px;
    margin: auto;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: #D3D3D3;
    font-size: 18px;
    margin-bottom: 35px;
}

.text-primary {
    color: #30c6d7 !important;
}

.btn-custom-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #1F606D;
    --bs-btn-border-color: #1F606D;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #1F606D;
    --bs-btn-hover-border-color: #1F606D;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1F606D;
    --bs-btn-active-border-color: #1F606D;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #1F606D;
    --bs-btn-disabled-border-color: #1F606D;
}

.btn-custom-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #30c6d7;
    --bs-btn-border-color: #30c6d7;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #30c6d7;
    --bs-btn-hover-border-color: #30c6d7;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #30c6d7;
    --bs-btn-active-border-color: #30c6d7;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #30c6d7;
    --bs-btn-disabled-border-color: #30c6d7;
}


.hero-search {
    max-width: 650px;
    margin: auto;
}

.hero-search .input-group {
    background: #fff;
    border-radius: 60px;
    padding: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.hero-search input {
    height: 55px;
    border: none;
    box-shadow: none !important;
}

.hero-search button {
    border-radius: 50px !important;
}

/* FILTERS */


.filters-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
}



.filter-pill {
    white-space: nowrap;
    padding: 12px 20px;
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
    color: #111827;
    border: 1px solid #e5e7eb;
    font-weight: 500;
}

.filter-pill.active {
    background: #1F606D;
    color: #fff;
}

/* EVENTS */

.events-section {
    padding: 20px 0 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
}

.event-card {
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 22px;
}

.event-card-body {
    padding: 20px;
}

.event-badge {
    display: inline-block;
    padding: 8px 14px;
    background: #eafafc;
    color: #30c6d7;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.event-meta {
    color: #6b7280;
    margin-bottom: 10px;
}

/* CTA */


.cta-card {
    background: linear-gradient(135deg,
            #072c2f 0%,
            #103d40 100%);

    border-radius: 30px;
    padding: 70px;
    color: #fff;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.store-btn {
    padding: 14px 24px;
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
    color: #111827;
    font-weight: 600;
}

/* DETAILS */

.event-details-hero {
    height: 450px;
}

.details-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details-section {
    padding: 60px 0;
}

.details-card,
.booking-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.details-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
}

.details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
    color: #6b7280;
}

.details-description {
    line-height: 1.9;
}

.booking-card {
    position: sticky;
    top: 100px;
}

/* FOOTER */

.footer-section {
    border-top: 1px solid #e5e7eb;
    padding: 25px 0;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: #6b7280;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero-title {
        font-size: 42px;
    }

    .cta-card {
        padding: 40px;
    }

    .cta-title {
        font-size: 36px;
    }

    .details-title {
        font-size: 32px;
    }

    .text-primary {
        color: #30c6d7 !important;
    }


}

@media(max-width:768px) {

    .hero-section {
        padding-top: 60px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .event-image {
        height: 200px;
    }

    .cta-card {
        padding: 30px;
    }

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

    .event-details-hero {
        height: 250px;
    }

    .details-card,
    .booking-card {
        padding: 25px;
    }

    .text-primary {
        color: #30c6d7 !important;
    }





}

.btn-outline-custom-primary {
    --bs-btn-color: #3E6067;
    --bs-btn-border-color: #3E6067;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #3E6067;
    --bs-btn-hover-border-color: #3E6067;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #3E6067;
    --bs-btn-active-border-color: #3E6067;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #3E6067;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-bg: #fff;
    --bs-btn-disabled-border-color: #3E6067;
    --bs-gradient: none;
}

.pagination {
    gap: 10px;
    --bs-pagination-active-bg: #3E6067;
}

.page-link {
    border: none;
    border-radius: 12px !important;
    padding: 10px 16px;
    color: #111827;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-item.active .page-link {
    background: ##3E6067;
    border-color: ##3E6067;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
}

.logo-text span {
    color: #30c6d7;
}



/* CTA SECTION */


.cta-card {

    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg,
            #072c2f 0%,
            #0d4448 100%);

    border-radius: 36px;

    padding: 70px;

    color: #fff;
}

.cta-card::before {

    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(255, 255, 255, 0.05);

    border-radius: 50%;

    top: -180px;
    right: -140px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {

    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;

    margin-bottom: 24px;
}

.cta-title span {
    color: #30c6d7;
}

.cta-text {

    font-size: 18px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.72);

    max-width: 520px;
}

/* STORE BUTTONS */

.store-btn {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 24px;

    background: #fff;

    border-radius: 50px;

    text-decoration: none;

    color: #111827;

    font-weight: 600;

    transition: 0.3s ease;
}

.store-btn:hover {

    transform: translateY(-2px);

    color: #111827;
}

/* RIGHT SIDE VISUAL */

.cta-image-wrapper {

    position: relative;

    height: 100%;

    min-height: 350px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* GLASS CARD */

.floating-card {

    position: absolute;

    width: 340px;
    height: 240px;

    background: rgb(77 131 126 / 52%);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);



    transform: rotate(+2deg);

    z-index: 1;
}

/* MOBILE IMAGE */

.cta-mobile-image {

    width: 260px;

    position: relative;

    z-index: 2;

    border-radius: 30px;

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .cta-card {
        padding: 45px 30px;
    }

    .cta-title {
        font-size: 38px;
    }

    .cta-image-wrapper {
        margin-top: 50px;
        min-height: 250px;
    }

    .floating-card {
        width: 260px;
        height: 180px;
    }

    .cta-mobile-image {
        width: 210px;
    }
}

@media(max-width:576px) {

    .cta-title {
        font-size: 30px;
    }

    .cta-text {
        font-size: 15px;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

    .floating-card {
        width: 220px;
        height: 150px;
    }

    .cta-mobile-image {
        width: 180px;
    }
}


.share-card {
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
    margin-bottom: 24px;
}

.share-title {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.share-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.2s ease;
    font-size: 16px;
    cursor: pointer;
}

.share-icon-btn:hover {
    transform: translateY(-2px);
    border-color: #30c6d7;
    color: #30c6d7;
}

.whatsapp-btn:hover {
    border-color: #25D366;
    color: #25D366;
}

.telegram-btn:hover {
    border-color: #229ED9;
    color: #229ED9;
}

.facebook-btn:hover {
    border-color: #1877F2;
    color: #1877F2;
}

.twitter-btn:hover {
    border-color: #111827;
    color: #111827;
}

.goloca-google-play-button {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 46px;
    height: auto;
    z-index: 9999;
}

.goloca-app-store-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 46px;
    height: auto;
    z-index: 9999;
}

/* .lifetime-access {
    position: fixed;
    top: 80px;
    right: -6px;
} */

.discover-events {
    position: fixed;
    top: -124px;
    left: -182px;
    width: 500px;
    height: auto;
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.goloca-google-play-button {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 46px;
    height: auto;
}

.goloca-app-store-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 46px;
    height: auto;
}

.goloca-floating-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    right: 10px;
    bottom: 70px;
    transform: translateY(-50%);
    z-index: 20;
}

.goloca-btn {
    width: 270px;
    min-height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
    transition: .3s;
}

.goloca-btn:hover {
    transform: translateX(-5px);
    text-decoration: none;
}

.events-btn {
    background: #2B7A86;
    color: #fff;
}

.deal-btn {
    background: #E4AA18;
    color: #111;
}

.goloca-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .18);
    font-size: 18px;
}

.goloca-text strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
}

.goloca-text span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    opacity: .95;
}

.goloca-download-buttons {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    transition: .3s;
}

.download-circle:hover {
    transform: translateY(-4px);
}

.apple-btn {
    background: #2B7A86;
}

.android-btn {
    background: #E4AA18;
}

.download-circle img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.goloca-text {
    font-size: 15px;
}


.discover-events {
    position: fixed;
    top: -124px;
    left: -182px;
    width: 500px;
    height: auto;
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.goloca-google-play-button {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 46px;
    height: auto;
}

.goloca-app-store-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 46px;
    height: auto;
}

/* .goloca-floating-cta {
    position: fixed;
    right: 30px;
    top: 52%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 14px;
} */

.goloca-btn {
    width: 270px;
    min-height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
    transition: .3s;
}

.goloca-btn:hover {
    transform: translateX(-5px);
    text-decoration: none;
}

.events-btn {
    background: #2B7A86;
    color: #fff;
}

.deal-btn {
    background: #E4AA18;
    color: #111;
}

.goloca-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .18);
    font-size: 18px;
}

.goloca-text strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
}

.goloca-text span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    opacity: .95;
}

.goloca-download-buttons {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    transition: .3s;
}

.download-circle:hover {
    transform: translateY(-4px);
}

.apple-btn {
    background: #2B7A86;
}

.android-btn {
    background: #E4AA18;
}

.download-circle img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.goloca-text {
    font-size: 15px;
}

@media screen and (min-width : 992px) and (max-width: 1368px) {
    .lifetime-access {
        top: 180px;
    }
}


@media screen and (max-width:991px) {
    /* .goloca-floating-cta {
        position: fixed;
        right: 12px;
        top: auto;
        bottom: 120px;
        transform: none;
    } */

    .goloca-btn {
        width: 220px;
        min-height: 60px;
        padding: 12px;
    }

    .goloca-text span {
        font-size: 11px;
    }

    .goloca-download-buttons {
        position: fixed;
        right: 12px;
        bottom: 15px;
    }

    .download-circle {
        width: 50px;
        height: 50px;
    }

    .download-circle img {
        width: 22px;
        height: 22px;
    }
}


.z-index-1000 {
    z-index: 1000;
}

@media screen and (max-width : 1366px) {


    /* .goloca-floating-cta {
        top: 39%;
    } */
}



@media screen and (max-width:991px) {

    .goloca-btn {
        width: 220px;
        min-height: 60px;
        padding: 12px;
    }

    .goloca-text span {
        font-size: 11px;
    }

    .goloca-download-buttons {
        position: fixed;
        right: 12px;
        bottom: 15px;
    }

    .download-circle {
        width: 50px;
        height: 50px;
    }

    .download-circle img {
        width: 22px;
        height: 22px;
    }
}


@media screen and (max-width : 992px) {
    .lifetime-access {
        top: 57%;
        right: 20px;
    }

    .goloca-btn {
        border-radius: 8px;
    }
}


@media screen and (max-width : 767px) {
    .lifetime-access {
        top: 66% !important;
    }

    /* .goloca-floating-cta {
        top: 48%;
        right: 20px;
    } */
}

@media screen and (max-width : 540px) {

    .goloca-app-store-button,
    .goloca-google-play-button {
        width: 30px !important;
    }

    .goloca-app-store-button {
        bottom: 85px;
    }

    .goloca-text strong {
        font-size: 12px;
    }

    .goloca-btn {
        width: 210px;
        min-height: 30px;
        padding: 6px;
    }

    .goloca-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }

    .lifetime-access {
        top: 65%;
        right: 14px;
    }

    /* .goloca-floating-cta {
        top: 50%;
        right: 10px;
    } */
}




@media screen and (max-width : 420px) {
    /* .goloca-floating-cta {
        top: 54% !important;
    } */

    .hidden-on-mobile {
        display: none !important;
    }

    .goloca-btn {
        width: auto;
    }

    .lifetime-access {
        top: 75% !important;
        right: 14px;
    }

    /* .goloca-floating-cta {
        top: 69% !important;
    } */

}

.goloca-live-locations {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.live-row,
.coming-row {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 999px;
    padding: 8px 14px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, .15);
    transition: all .25s ease;
}

.live-row {
    background: #0F6674;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-row:hover {
    transform: translateX(3px);
}

.coming-row {
    background: rgba(15, 102, 116, .75);
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
}

.coming-row:hover {
    background: rgba(15, 102, 116, .95);
    transform: translateX(3px);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff84;
    animation: golocaPulse 2s infinite;
}

@keyframes golocaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 132, .7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(0, 255, 132, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 132, 0);
    }
}

@media (max-width: 1024px) {
    .goloca-live-locations {
        display: none !important;
    }
}