:root {
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --bg-color: #000000;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --border-color: #222222;
    --footer-border: #1a2a40; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Override Bootstrap's .container max-width to match original design */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

.btn-primary {
    background: var(--primary) !important;
    color: white !important;
    border: 1px solid var(--primary) !important;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

/* Shared nav-arrow styles (used by HomePage hero + SearchSection) */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-arrow {
    left: 32px;
}

.right-arrow {
    right: 32px;
}

.nav-arrow:hover {
    color: var(--primary);
}

/* Extra-small phones */
@media (max-width: 575.98px) {
    .container {
        padding: 0 16px;
    }
}

/* Utility to color SVG img tags on hover */
.hover-primary-icon {
    transition: opacity 0.3s ease;
    cursor: pointer;
}

a:hover > .hover-primary-icon,
button:hover > .hover-primary-icon,
.btn:hover > .hover-primary-icon,
.nav-arrow:hover > .hover-primary-icon,
.search-btn:hover > .hover-primary-icon,
.social-icons a:hover > .hover-primary-icon,
.offcanvas-social-icons a:hover > .hover-primary-icon {
    opacity: 0.6;
}

.navbar-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

.navbar-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: radial-gradient(ellipse at center, #3B82F685 0%, transparent 70%);
    z-index: 1;
}

.navbar-header .navbar {
    padding: 18px 0;
    background: transparent !important;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .navbar-header .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    
    .navbar-header .offcanvas {
        display: contents !important;
    }

    .navbar-header .offcanvas-header {
        display: none !important;
    }

    .navbar-header .offcanvas-body {
        display: contents !important;
    }

    .navbar-header .offcanvas-bottom {
        display: none !important;
    }

    .navbar-header .nav-links {
        display: flex !important;
        gap: 32px;
        justify-content: center;
        align-items: center;
        transform: translateY(6px);
        flex-direction: row;
    }

    .navbar-header .nav-action {
        display: flex;
        justify-content: flex-end;
    }

    .nav-item.nav-item-dropdown {
        position: relative;
    }

    .nav-item.nav-item-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 20px;
        background: transparent;
        display: none;
        z-index: 999;
    }

    .nav-item.nav-item-dropdown:hover::after {
        display: block;
    }

    /* Desktop dropdown positioning */
    .nav-item.nav-item-dropdown:hover .nav-dropdown {
        visibility: visible;
    }

    .nav-link .has-dropdown:hover {

    }

    .navbar-header .nav-dropdown {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
        display: flex;
        flex-direction: column;
        z-index: 1000;
        background: #000000;
        border: 1.5px solid var(--primary);
        border-radius: 10px;
        overflow: hidden;
        visibility: hidden;
    }

    .navbar-header .dropdown-item-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 12px 20px;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        background: transparent;
        transition: background 0.25s ease;
        white-space: nowrap;
        text-decoration: none;
    }

    .navbar-header .dropdown-item-link + .dropdown-item-link {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-header .dropdown-item-link:hover {
        background: rgba(255, 255, 255, 0.07);
    }

    .navbar-header .dropdown-item-link img {
        opacity: 0.7;
        flex-shrink: 0;
    }

    .navbar-header .chevron-open {
        transform: rotate(180deg);
    }

    .navbar-header .nav-chevron {
        transition: transform 0.25s ease;
    }
}



.navbar-header .navbar-brand {
    transform: translateY(6px);
    padding: 0;
    margin: 0;
}

.navbar-header .navbar-brand img,
.logo img {
    height: 34px;
    object-fit: contain;
}

.navbar-header .nav-links .nav-link {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main) !important;
    padding: 0;
}

.navbar-header .nav-links .nav-link:hover,
.navbar-header .nav-links .nav-link.active {
    color: var(--text-main) !important;
    opacity: 0.8;
}

.nav-location-icon {
    height: 16px;
    vertical-align: -3px;
    margin: 0 1px;
}

.has-dropdown {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

.nav-chevron {
    opacity: 0.7;
}

.nav-action {
    display: flex;
    justify-content: flex-end;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 42px;
    padding-left: 16px;
    text-align: center;
    padding-right: 22px;
    font-size: 16px;
    font-weight: 600;
}

.btn-location-icon {
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mobile-nav-cta {
    display: none;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(59, 130, 246, 0.5) !important;
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 4px 0;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-toggler {
        padding: 4px 8px;
    }
}

@media (max-width: 991.98px) {
    .navbar-header .nav-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .navbar-header .navbar-brand {
        transform: none;
        margin-right: auto;
    }

    .navbar-header .navbar-brand img {
        height: 24px;
    }

    .mobile-nav-cta {
        display: inline-flex !important;
        order: 2;
        height: 36px;
        padding: 0 24px;
        font-size: 13px;
        font-weight: 600;
        margin-right: 12px;
        white-space: nowrap;
        align-items: center;
    }

    .navbar-toggler {
        order: 3;
    }

    .navbar-header .offcanvas {
        background: #0a0a0a !important;
        border-left: none !important;
        box-shadow: none;
        width: 80% !important;
        max-width: 320px;
    }

    .navbar-header .offcanvas-header {
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-header .offcanvas-header .btn-close {
        opacity: 1;
        filter: brightness(0) invert(1);
    }

    .navbar-header .offcanvas-brand img {
        height: 32px;
        object-fit: contain;
    }

    .navbar-header .offcanvas-body {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .navbar-header .nav-links {
        gap: 0;
        text-align: left;
        flex-direction: column;
    }

    .navbar-header .nav-links .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-header .nav-links .nav-item:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-header .nav-links .nav-link {
        padding: 16px 24px !important;
        font-size: 15px;
        font-weight: 600;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-header .nav-links .nav-chevron {
        display: none;
    }

    /* Show chevron instead of › for dropdown items */
    .navbar-header .nav-links .has-dropdown .nav-chevron {
        display: inline-block;
        margin-left: auto;
    }

    .navbar-header .nav-links .has-dropdown::after {
        display: none;
    }

    .navbar-header .nav-links .nav-link::after {
        content: '›';
        font-size: 28px;
        font-weight: 300;
        color: #ffffff;
        margin-left: auto;
        line-height: 1;
    }

    /* Mobile submenu */
    .navbar-header .nav-dropdown {
        position: static;
        transform: none;
        min-width: 0;
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.04);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .navbar-header .nav-dropdown .dropdown-item-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 24px 14px 40px;
        border: none;
        border-radius: 0;
        background: transparent;
        font-size: 14px;
        font-weight: 600;
        color: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        text-decoration: none;
    }

    .navbar-header .nav-dropdown .dropdown-item-link + .dropdown-item-link {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-header .nav-dropdown .dropdown-item-link:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .navbar-header .nav-dropdown .dropdown-item-link img {
        opacity: 0.8;
    }

    .offcanvas-cta {
        padding: 24px;
    }

    .offcanvas-cta .nav-btn {
        width: 100%;
        justify-content: center;
        border-radius: 6px;
        height: 48px;
        font-size: 14px;
    }

    .offcanvas-bottom {
        margin-top: auto;
        padding: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .offcanvas-bottom span {
        font-size: 13px;
        color: var(--text-muted);
    }

    .offcanvas-social-icons {
        display: flex;
        gap: 16px;
    }

    .offcanvas-social-icons a {
        color: #fff;
        display: flex;
        align-items: center;
        transition: color 0.3s;
    }

    .offcanvas-social-icons a:hover {
        color: var(--primary);
    }
}

/* promo hero */
.promo-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
}

.promo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.promo-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.promo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 30%),
        linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0) 45%),
        linear-gradient(to right, rgba(0,40,100,0.85) 0%, rgba(0,0,0,0) 25%),
        linear-gradient(to left, rgba(0,40,100,0.85) 0%, rgba(0,0,0,0) 25%);
}

.promo-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promo-hero-brand-img {
    height: 20px;
    object-fit: contain;
    display: block;
    margin: 0 auto 4px;
}

.promo-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}

.promo-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin: 0;
}

/* promo list section */
.promo-list-section {
    position: relative;
    z-index: 3;
    margin-top: -100px;
    padding: 0 0 40px;
    background: transparent;
}

.promo-card {
    margin-bottom: 48px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.promo-card-image-wrapper {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.5);
    overflow: hidden;
    background: #000;
}

.promo-card-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.promo-card-image-wrapper:hover .promo-card-image {
    transform: scale(1.03);
}

/* gradient overlay on images */
.promo-card-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at bottom left, #2B80FF40 0%, transparent 35%),
        linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.promo-card-text-col {
    padding-left: 40px;
}

.promo-card-title {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.promo-card-desc {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 420px;
}

.promo-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.promo-card-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 991.98px) {
    .promo-hero-title {
        font-size: 48px;
        font-weight: 600;
    }

    .promo-hero {
        padding-top: 100px;
        min-height: 320px;
    }
}

@media (max-width: 767.98px) {
    .promo-hero {
        padding-top: 90px;
        padding-bottom: 40px;
        min-height: 260px;
    }

    .promo-hero-title {
        font-size: 38px;
        font-weight: 600;
    }

    .promo-hero-subtitle {
        font-size: 16px;
    }

    .promo-hero-brand-img {
        margin-top: 18px;
        height: 18px;
        margin-bottom: 12px;
    }

    .promo-card-text-col {
        padding-left: 12px;
        padding-top: 24px;
    }

    .promo-card-title {
        font-size: 28px;
    }

    .promo-card-image {
        height: 220px;
    }

    .promo-list-section {
        margin-top: 0px;
        padding: 0 0 20px;
    }
}

@media (max-width: 575.98px) {
    .promo-hero-title {
        font-size: 38px;
        font-weight: 600;
    }

    .promo-card-title {
        font-size: 24px;
    }
}

.promo-detail-hero {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.promo-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.promo-detail-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.promo-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 20%),
        linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0) 60%),
        linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
}

.promo-detail-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
    padding-top: 120px;
}

.promo-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    transition: color 0.3s;
}

.promo-back-link:hover {
    color: var(--primary);
}

.promo-detail-header {
    max-width: 600px;
}

.promo-detail-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.promo-detail-label-text {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.promo-detail-label-divider {
    color: rgba(59, 130, 246, 1);
    font-size: 18px;
    font-weight: 300;
}

.promo-detail-brand-img {
    height: 12px;
    object-fit: contain;
}

.promo-detail-title {
    font-size: 52px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

.promo-detail-subtitle {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    margin: 0;
    max-width: 520px;
}

/* content body */
.promo-detail-content-section {
    background: #000;
    padding: 20px 0 80px;
}

.promo-detail-body {
    max-width: 780px;
}

.promo-detail-body p {
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 28px;
}

.promo-detail-body p:last-child {
    margin-bottom: 0;
}

/* druge promocije section */
.other-promos-section {
    background: #000;
    padding: 60px 0 80px;
    overflow-x: hidden;
}

.other-promos-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: 1px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    white-space: nowrap;
}

.other-promos-title::before,
.other-promos-title::after {
    content: "";
    flex: 0 0 45vw;
    height: 3px;
    background: radial-gradient(ellipse at center, #3B82F685 0%, transparent 70%);
}

.other-promo-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.other-promo-card:hover {
    transform: translateY(-5px);
    color: inherit;
}

.other-promo-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: #000;
}

.other-promo-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.other-promo-card:hover .other-promo-image {
    transform: scale(1.05);
}

.other-promo-card-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
}

.other-promo-card-desc {
    font-size: 18px;
    color: white;
    margin-bottom: 16px;
    line-height: 1.5;
}

.promo-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.promo-card-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 767.98px) {
    .promo-detail-title {
        padding-top: 8px;
        font-size: 32px;
    }

    .promo-detail-subtitle {
        display: none;
    }

    .promo-detail-hero-content {
        padding-bottom: 8px;
        padding-top: 100px;
    }

    .promo-back-link {
        margin-bottom: 140px;
    }

    .promo-detail-content-section {
        padding: 0 0 60px;
    }

    .other-promos-section {
        padding: 40px 0 60px;
    }

    .other-promos-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .other-promo-image {
        height: 200px;
    }

    .other-promos-section .row {
        --bs-gutter-y: 3rem;
    }
}

@media (max-width: 575.98px) {
    .promo-detail-title {
        font-size: 28px;
    }

    .promo-detail-body p {
        font-size: 15px;
    }

    .other-promo-card-desc {
        font-size: 16px;
    }
}

.navbar-spacer {
    height: 120px;
}

@media (max-width: 767.98px) {
    .navbar-spacer {
        height: 70px;
    }
}

.location-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    min-height: 0;
}

.location-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.location-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.location-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 25%),
        linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0) 55%),
        linear-gradient(to right, rgba(0,40,100,0.85) 0%, rgba(0,0,0,0) 30%),
        linear-gradient(to left, rgba(0,40,100,0.85) 0%, rgba(0,0,0,0) 30%);
}

.location-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 40px;
}

/* Back link */
.location-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    transition: color 0.3s;
}

.location-back-link:hover {
    color: var(--primary);
}

/* Info column */
.location-brand-logo {
    height: 24px;
    object-fit: contain;
    margin-bottom: 4px;
    margin-top: 32px;
}

.location-name {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
    list-style: none;
    margin-bottom: 28px;
}

.location-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}

.location-details img {
    flex-shrink: 0;
}

.detail-badge {
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.4);
    padding: 2px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

/* Google maps button */
.location-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.location-maps-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Map column */
.location-map-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.location-map-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.5);
    margin-left: auto;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Promotions */
.location-promos-section {
    background: #000;
    padding: 60px 0 40px;
    overflow-x: hidden;
}

.location-promos-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
}

.location-promos-title::before,
.location-promos-title::after {
    content: "";
    flex: 0 0 45vw;
    height: 3px;
    background: radial-gradient(ellipse at center, #3B82F685 0%, transparent 70%);
}

.location-promos-grid {
    max-width: 780px;
}

/* Promo card */
.location-promo-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.location-promo-card:hover {
    transform: translateY(-5px);
    color: inherit;
}

.location-promo-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: #000;
}

.location-promo-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.location-promo-card:hover .location-promo-image {
    transform: scale(1.05);
}

.location-promo-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin-bottom: 4px;
}

.location-promo-desc {
    font-size: 16px;
    color: white;
    margin-bottom: 4px;
    line-height: 1.5;
}

.location-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.location-promo-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* responsive */
@media (max-width: 991.98px) {
    .location-name {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .location-hero {
        background: #000;
    }

    .location-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 340px;
    }

    .location-hero-content {
        padding-top: 100px;
        padding-bottom: 24px;
    }

    .location-back-link {
        margin-bottom: 120px;
    }

    .location-name {
        font-size: 28px;
    }

    .location-subtitle {
        font-size: 16px;
        color: #ccc;
        margin-top: -12px;
        margin-bottom: 20px;
    }

    .location-hero-bg img {
        object-position: center 30%;
    }

    .location-map-wrapper {
        max-width: 100%;
        height: 240px;
        margin-top: 12px;
        margin-left: 0;
    }

    .location-maps-btn-mobile-col {
        margin-top: 20px;
    }

    .location-maps-btn-mobile-col .location-maps-btn {
        width: 100%;
        justify-content: center;
    }

    .location-promos-title {
        font-size: 22px;
    }

    .location-promos-title::before,
    .location-promos-title::after {
        flex: 0 0 20vw;
    }

    .location-promo-image {
        height: 200px;
    }

    .location-promos-grid {
        --bs-gutter-y: 2.5rem;
    }

    .location-promos-section {
        padding: 40px 0 20px;
    }
}

@media (max-width: 575.98px) {
    .location-name {
        font-size: 24px;
    }

    .location-brand-logo {
        height: 16px;
    }

    .location-promo-desc {
        font-size: 14px;
    }
}

/* hero section */
.hero-wrapper {
    position: relative;
    display: grid;
    width: 100%;
}

.hero-slide {
    grid-area: 1 / 1;
    position: relative;
    padding-top: 240px;
    padding-bottom: 70px;
    display: none;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
    display: flex;
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 25%),
        linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 20%),
        linear-gradient(to right, rgba(0,40,100,0.9) 0%, rgba(0,0,0,0) 20%),
        linear-gradient(to left, rgba(0,40,100,0.9) 0%, rgba(0,0,0,0) 20%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 0px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
}

.hero-cta {
    padding: 10px 36px;
    font-size: 14px;
}

@media (min-width: 992px) {
    .hero-cta {
        padding: 12px 48px;
        font-size: 16px;
    }
}

/* desktop: position hero arrows outside the container */
@media (min-width: 992px) {
    .hero-wrapper > .left-arrow {
        left: max(16px, calc(50% - 720px - 48px));
    }

    .hero-wrapper > .right-arrow {
        right: max(16px, calc(50% - 720px - 48px));
    }
}

.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    padding: 0 24px;
    z-index: 2;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.diamond-dot {
    width: 10px;
    height: 10px;
    background-color: #9c9c9c;
    transform: rotate(45deg);
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.diamond-dot.active {
    background-color: #7AAFFF;
}

/* news section */
.news-section {
    padding: 40px 0 60px;
    background: #000000;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 0 0 45vw;
    height: 3px;
    background: radial-gradient(ellipse at center, #3B82F685 0%, transparent 70%);
}

/* experience cards */
.experience-card {
    position: relative;
    height: 240px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
    background: #000;
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 1);
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-bg {
    transform: scale(1.05);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at bottom left, #2B80FF65 0%, transparent 30%),
        radial-gradient(circle at top right, #2B80FF65 0%, transparent 30%),
        linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 50%),
        linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    z-index: 2;
}

.experience-content {
    position: relative;
    z-index: 3;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.experience-content.stacked {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.experience-text h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.experience-text p {
    font-size: 18px;
    color: #ddd;
    margin: 0;
}

.experience-arrow {
    color: #fff;
    width: 32px;
    height: 32px;
    margin-bottom: 36px;
}

.experience-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border: 1px solid white;
    background: transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.experience-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* responsive */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-slide {
        padding-top: 180px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }

    .hero-pagination {
        bottom: 20px;
        justify-content: center;
    }

    .hero-wrapper > .nav-arrow {
        top: auto;
        bottom: 14px;
        transform: none;
    }

    .hero-wrapper > .nav-arrow img {
        width: 20px;
        height: 32px;
    }

    .hero-wrapper > .left-arrow {
        left: 12px;
    }

    .hero-wrapper > .right-arrow {
        right: 12px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-title::before,
    .section-title::after {
        flex: 0 0 20vw;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .experience-text h3 {
        font-size: 22px;
    }
}

.search-section-grid {
    position: relative;
    padding: 160px 0 40px;
    background: url('/assets/img/landing/bar-image.png') center -20px / 100% auto no-repeat;
    background-color: #000;
    overflow: hidden;
}

.search-section-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, #000000 0%, transparent 30%),
        linear-gradient(to top, #000000 0%, transparent 30%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
}

.search-header, .search-grid-wrapper {
    position: relative;
    z-index: 2;
}

.search-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
}

.search-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

.search-location-icon {
    height: 64px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-box input {
    width: 100%;
    padding: 20px 32px;
    padding-right: 50px;
    background: #78AEFF70;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    font-family: inherit;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    background: #333;
    box-shadow: 0 0 0 1px #3B82F6;
}

.search-box input::placeholder {
    color: white;
}

.search-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #3B82F6;
}

/* Grid layout */
.search-grid-wrapper {
    position: relative;
    z-index: 2;
}

/* Location card */
.location-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    border: 1px solid #2B80FF90;
    border-radius: 12px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.location-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(160px 60px at bottom left, #2B80FF75, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.location-info, .location-arrow {
    position: relative;
    z-index: 2;
}

.location-card:hover {
    border-color: #3B82F6;
}

.location-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: white;
}

.location-info p {
    font-size: 14px;
    color: white;
    margin: 0;
}

@media (max-width: 767.98px) {
    .search-section-grid {
        padding-top: 110px;
        background-size: auto 320px;
    }

    .search-section-grid::before {
        background:
            linear-gradient(to bottom, #000000 0%, transparent 15%),
            linear-gradient(to top, #000000 0%, transparent 15%);
    }

    .search-title {
        font-size: 20px;
    }

    .search-header {
        margin-bottom: 16px;
    }

    .search-box input {
        padding: 16px 24px;
        padding-right: 46px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .search-location-icon {
        height: 48px;
    }
}

.search-section {
    position: relative;
    padding: 40px 0 40px;
    background: url('/assets/img/landing/bar-image.png') center 110% / cover no-repeat;
    overflow: hidden;
}

.search-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, #000000 0%, transparent 30%),
        linear-gradient(to top, #000000 0%, transparent 30%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
}

.search-header, .search-carousel-wrapper {
    position: relative;
    z-index: 2;
}

.search-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
}

.search-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

.search-location-icon {
    height: 64px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-box input {
    width: 100%;
    padding: 20px 32px;
    padding-right: 50px;
    background: #78AEFF70;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    font-family: inherit;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    background: #333;
    box-shadow: 0 0 0 1px #3B82F6;
}

.search-box input::placeholder {
    color: white;
}

.search-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #3B82F6;
}

/* carousel */
.search-carousel-wrapper {
    position: relative;
    width: 100%;
}

@media (min-width: 992px) {
    .search-carousel-wrapper > .left-arrow {
        left: max(16px, calc(50% - 720px - 48px));
    }

    .search-carousel-wrapper > .right-arrow {
        right: max(16px, calc(50% - 720px - 48px));
    }
}

.search-carousel-wrapper::before,
.search-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: max(180px, calc((100vw - 1440px) / 2 + 80px));
    z-index: 3;
    pointer-events: none;
}

.search-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.search-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
    width: max(260px, calc((100vw - 1440px) / 2 + 140px));
}

.locations-carousel {
    display: flex;
    gap: 20px;
    padding-left: calc(max(0px, (100vw - 1440px) / 2) + 16px);
    padding-right: calc(max(0px, (100vw - 1440px) / 2) + 16px);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.locations-carousel::-webkit-scrollbar {
    display: none;
}

/* Location card */
.location-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    border: 1px solid #2B80FF90;
    border-radius: 12px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.locations-carousel .location-card {
    flex: 0 0 320px;
}

.location-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(160px 60px at bottom left, #2B80FF75, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.location-info, .location-arrow {
    position: relative;
    z-index: 2;
}

.location-card:hover {
    border-color: #3B82F6;
}

.location-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: white;
}

.location-info p {
    font-size: 14px;
    color: white;
    margin: 0;
}

@media (max-width: 767.98px) {
    .search-title {
        font-size: 30px;
        text-align: center;
        font-weight: 600;
    }

    .search-box input {
        padding: 16px 24px;
        padding-right: 46px;
        font-size: 14px;
    }

    .locations-carousel .location-card {
        flex: 0 0 260px;
    }

    .locations-carousel {
        padding-left: 16px;
        padding-right: 16px;
    }

    .search-carousel-wrapper::before,
    .search-carousel-wrapper::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .search-location-icon {
        height: 48px;
    }
}

.diamond {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    transform: rotate(45deg);
    display: inline-block;
}

.footer {
    position: relative;
    padding-top: 60px;
    background: #000000;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: radial-gradient(ellipse at center, #3B82F6 0%, transparent 70%);
}

.footer-top {
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .footer-top {
        padding-left: 36px;
        padding-right: 36px;
    }
}

.footer-top .row {
    --bs-gutter-x: 40px;
}

.footer-logo img {
    height: 26px;
    object-fit: contain;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.right-logo img {
    height: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 0;
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 14px;
}

.contact-info img {
    flex-shrink: 0;
}
.center-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.center-col::before,
.center-col::after {
    content: "";
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: radial-gradient(ellipse at center, #3B82F6 0%, transparent 70%);
}

.center-col::before {
    left: 0;
}

.center-col::after {
    right: 0;
}

.center-col h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: var(--text-main);
    background: transparent;
    border: 2px solid var(--text-main);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.social-icons a[aria-label="Facebook"],
.social-icons a[aria-label="Instagram"],
.social-icons a[aria-label="LinkedIn"],
.social-icons a[aria-label="WhatsApp"] {
    border: none;
    background: transparent;
    width: auto;
    height: auto;
}

.social-icons a[aria-label="Facebook"] img {
    width: 42px;
    height: 42px;
}

.social-icons a[aria-label="Instagram"] img,
.social-icons a[aria-label="LinkedIn"] img,
.social-icons a[aria-label="WhatsApp"] img {
    width: 36px;
    height: 36px;
}

.social-icons a[aria-label="Facebook"]:hover,
.social-icons a[aria-label="Instagram"]:hover,
.social-icons a[aria-label="LinkedIn"]:hover,
.social-icons a[aria-label="WhatsApp"]:hover {
    background: transparent;
}

.right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.working-hours-note {
    margin-bottom: 12px;
}

.working-hours-note p {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 4px;
}

.working-hours-note img {
}
.locations-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.yellow-link {
    color: var(--primary);
    font-weight: 600;
}

.yellow-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    position: relative;
    padding: 24px 0;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: radial-gradient(ellipse at center, #3B82F6 0%, transparent 70%);
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 12px;
}

.bottom-links {
    display: flex;
    gap: 24px;
}

.bottom-links a {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bottom-links a:hover {
    color: var(--text-main);
}

/* Tablet */
@media (max-width: 991.98px) {

    .center-col::before,
    .center-col::after {
        display: none;
    }
    
    .center-col {
        border: none;
        border-top: 1px solid rgba(59, 130, 246, 0.2);
        padding: 28px 0 0;
        margin-top: 24px;
    }

    .footer-top .row {
        --bs-gutter-x: 0;
    }

    .footer-top .footer-col.order-1 {
        padding-right: 16px;
    }

    .footer-top .footer-col.order-2 {
        padding-left: 16px;
        border-left: 1px solid rgba(59, 130, 246, 0.15);
    }

    .footer-top {
        margin-bottom: 40px;
    }

    .footer-top .row > .footer-col:first-child {
        padding-left: 0;
    }

    .footer-col .contact-info {
        gap: 10px;
    }

    .footer-col .contact-info li {
        font-size: 11px;
        gap: 8px;
    }

    .footer-col .contact-info img {
        width: 12px;
        height: 12px;
        min-width: 12px;
    }
    .footer-logo img {
        height: 22px;
        margin-bottom: 12px;
    }

    .right-logo img {
        height: 24px;
    }

    .working-hours-note p {
        font-size: 11px;
    }

    .locations-link {
        font-size: 11px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .bottom-container {
        flex-direction: column-reverse;
        gap: 16px;
        text-align: center;
    }
    
    .bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Phone */
@media (max-width: 767.98px) {
    .footer {
        padding-top: 40px;
    }

    .footer-top {
        margin-bottom: 30px;
    }
}

.feature-section {
    position: relative;
    padding: 40px 0 100px;
    background: #000;
    overflow: hidden;
}

.feature-section::before,
.feature-section::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.feature-section::before {
    left: 0;
    background: radial-gradient(ellipse at left center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.feature-section::after {
    right: 0;
    background: radial-gradient(ellipse at right center, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

.feature-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.5);
    overflow: hidden;
}

.feature-image-wrapper img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.feature-btn {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: transparent;
    border: 2px solid white;
    color: #fff;
    padding: 8px 65px;
    padding-left: 75px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.feature-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* phone sm break */
@media (max-width: 767.98px) {
    .feature-section {
        padding: 24px 0 60px;
    }

    .feature-image-wrapper img {
        height: 220px;
    }

    .feature-btn {
        bottom: 16px;
        right: 16px;
        font-size: 12px;
        padding-right: 12px;
        padding-left: 20px;
    }
}