/* Wake Up Call View Hotel - Premium Mobile Experience */
:root {
    --primary: #9e6f41;
    --primary-dark: #5c3f2f;
    --secondary: #DDB186;
    --accent: #DDB186;
    --dark: #1a1a1a;
    --dark-brown: #5c3f2f;
    --light: #FFFFFF;
    --light-cream: #FDF8F3;
    --white: #FFFFFF;
    --gray: #666666;
    --border: #e0e0e0;
    --success: #9e6f41;
    --gradient: linear-gradient(135deg, #DDB186 0%, #9e6f41 100%);
    --gradient-dark: linear-gradient(135deg, #9e6f41 0%, #5c3f2f 100%);
    --black: #1a1a1a;
    --dark-section: #0f0f0f
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    padding-bottom: 120px
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent
}

input {
    font-family: inherit;
    border: none;
    outline: none
}

a {
    text-decoration: none;
    color: inherit
}

.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05)
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    min-height: 50px
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    background: var(--light-cream);
    padding: 8px 12px;
    border-radius: 50px;
    border: 1px solid var(--secondary);
    transition: all 0.3s ease;
}

.header-phone:active {
    transform: scale(0.95);
    background: var(--secondary);
    color: var(--white);
}

.header-phone svg {
    width: 16px;
    height: 16px;
}

.logo-img {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 280px;
    margin-top: 74px;
    overflow: hidden
}

.heroSwiper {
    width: 100%;
    height: 100%
}

.heroSwiper .swiper-slide {
    width: 100%;
    height: 100%
}

.heroSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-pagination .swiper-pagination-bullet {
    background-color: var(--white) !important;
    opacity: 0.5;
    width: 8px;
    height: 8px;
    margin: 0 !important;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%) !important;
    box-shadow: 0 2px 8px rgba(221, 177, 134, 0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .3) 100%);
    z-index: 5;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    pointer-events: none
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent)
}

.stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--dark);
    padding: 16px;
    border-bottom: none;
}

.stat-item {
    text-align: center
}

.stat-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px
}

.stat-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2)
}

.main-content {
    padding: 0 0 20px
}

.offer-badge-side {
    position: fixed;
    right: 0;
    top: 35%;
    transform: translateY(-50%);
    z-index: 90;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 8px 6px;
    border-radius: 10px 0 0 10px;
    box-shadow: -3px 0 12px rgba(255, 165, 0, .4);
    cursor: pointer;
    transition: all .3s ease;
    animation: pulse 2s infinite
}

.offer-badge-side:hover {
    padding-right: 10px;
    box-shadow: -4px 0 16px rgba(255, 165, 0, .5)
}

.offer-badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px
}

.offer-badge-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center
}

.offer-badge-icon svg {
    width: 14px;
    height: 14px;
    color: #5c3f2f
}

.offer-badge-discount {
    font-size: 22px;
    font-weight: 900;
    color: #5c3f2f;
    line-height: 1
}

.offer-badge-discount span {
    font-size: 14px
}

.offer-badge-text {
    font-size: 9px;
    font-weight: 800;
    color: #5c3f2f;
    letter-spacing: .8px
}

.offer-badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
    animation: shine 3s infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1)
    }

    50% {
        transform: translateY(-50%) scale(1.05)
    }
}

@keyframes shine {
    0% {
        left: -100%
    }

    100% {
        left: 200%
    }
}

.offer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn .3s
}

.offer-modal.active {
    display: flex
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.offer-modal-content {
    background: linear-gradient(135deg, #9e6f41 0%, #DDB186 100%);
    border-radius: 16px;
    width: 85%;
    max-width: 320px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp .3s
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.offer-modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #5c3f2f;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s
}

.offer-modal-close:hover {
    background: rgba(255, 255, 255, .3);
    transform: rotate(90deg)
}

.offer-modal-close svg {
    width: 16px;
    height: 16px;
    color: #fff
}

.offer-modal-header {
    padding: 16px 14px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.offer-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, .2);
    padding: 6px 10px;
    border-radius: 16px;
    margin-bottom: 10px
}

.offer-modal-badge svg {
    width: 12px;
    height: 12px;
    color: #FFD700
}

.offer-modal-badge span {
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .8px
}

.offer-modal-discount {
    margin: 10px 0
}

.discount-big {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 3px 15px rgba(0, 0, 0, .3)
}

.discount-big span {
    font-size: 32px
}

.discount-label {
    font-size: 18px;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
    margin-top: 4px
}

.offer-modal-body {
    padding: 14px
}

.offer-modal-body h3 {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    text-align: center
}

.offer-modal-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px
}

.offer-modal-location svg {
    width: 14px;
    height: 14px;
    color: #FFD700
}

.offer-modal-location span {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9)
}

.offer-modal-body p {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .95);
    text-align: center;
    margin-bottom: 14px
}

.offer-modal-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .15);
    padding: 10px;
    border-radius: 10px
}

.modal-feature svg {
    width: 16px;
    height: 16px;
    color: #FFD700
}

.modal-feature span {
    font-size: 12px;
    font-weight: 700;
    color: #fff
}

.offer-modal-cta {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(255, 165, 0, .4);
    cursor: pointer;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.offer-modal-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
    animation: shine-modal 2s infinite
}

.offer-modal-cta:active {
    transform: translateY(2px);
    box-shadow: 0 2px 10px rgba(255, 165, 0, .3)
}

.offer-modal-cta span {
    font-size: 14px;
    font-weight: 900;
    color: #1B4332;
    letter-spacing: 1.2px
}

.offer-modal-cta svg {
    width: 18px;
    height: 18px;
    color: #1B4332;
    stroke-width: 3
}

@keyframes shine-modal {
    0% {
        left: -100%
    }

    100% {
        left: 200%
    }
}

.title-section {
    padding: 20px 16px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border)
}

.property-name {
    font-size: 26px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 6px
}

.property-tagline {
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 12px
}

.property-meta {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    font-weight: 500
}

.meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary)
}

.booking-card {
    background-color: var(--white);
    padding: 20px 16px;
    margin: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.price-info {
    flex: 1
}

.price-label {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: block;
    margin-bottom: 4px
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 4px
}

.currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary)
}

.amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1
}

.period {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600
}

.check-availability-btn {
    background-color: var(--light);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all .2s ease
}

.check-availability-btn:active {
    background-color: var(--border);
    transform: scale(.98)
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.input-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .5px
}

.input-group input {
    background-color: var(--light);
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
    border: 2px solid transparent;
    transition: all .2s ease
}

.input-group input:focus {
    border-color: var(--primary);
    background-color: var(--white)
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s ease;
    box-shadow: 0 4px 12px rgba(158, 111, 65, .2)
}

.btn-primary:active {
    transform: scale(.98);
    box-shadow: 0 2px 6px rgba(158, 111, 65, .15)
}

.btn-primary svg {
    width: 20px;
    height: 20px
}

.btn-large {
    padding: 18px 24px;
    font-size: 17px
}

.btn-secondary {
    background-color: var(--light);
    color: var(--primary);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all .2s ease;
    width: 100%
}

.btn-secondary:active {
    background-color: var(--border);
    transform: scale(.98)
}

.comparison-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 24px 12px;
    margin: 12px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    position: relative;
    overflow: hidden
}

.comparison-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231B4332' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .4
}

.comparison-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -.5px;
    position: relative;
    z-index: 2
}

.comparison-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    margin: 12px auto 0;
    border-radius: 2px
}

.comparison-table {
    background-color: transparent;
    position: relative;
    z-index: 2
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
    padding: 0 4px
}

.header-col {
    text-align: center;
    padding: 12px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
}

.header-col.benefits {
    text-align: left;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white)
}

.header-col.ota {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    color: var(--white)
}

.header-col.direct {
    background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
    color: var(--white);
    position: relative;
    overflow: hidden
}

.header-col.direct:before {
    content: '⭐';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 12px
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
    padding: 0 4px
}

.comparison-row>div {
    background: var(--white);
    padding: 14px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: all .3s
}

.comparison-row:hover>div {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1)
}

.benefit-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px
}

.benefit-name:before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0
}

.ota-value,
.direct-value {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 48px
}

.icon-cross {
    width: 28px;
    height: 28px;
    color: #E53935;
    stroke-width: 3;
    filter: drop-shadow(0 2px 4px rgba(229, 57, 53, .3))
}

.icon-check {
    width: 28px;
    height: 28px;
    color: #7CB342;
    stroke-width: 3;
    filter: drop-shadow(0 2px 4px rgba(124, 179, 66, .3))
}

.extra,
.included,
.offer {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 3px 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .05)
}

.extra {
    color: #E53935
}

.included {
    color: #7CB342
}

.offer {
    color: #7CB342;
    font-size: 10px;
    background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
    color: var(--white)
}

.comparison-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 18px;
    background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
    color: var(--white);
    border-radius: 16px;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 24px rgba(124, 179, 66, .4);
    transition: all .3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 2
}

.comparison-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transition: left .6s
}

.comparison-cta:hover:before {
    left: 200%
}

.comparison-cta:active {
    transform: translateY(3px);
    box-shadow: 0 4px 16px rgba(124, 179, 66, .3)
}

.comparison-cta svg {
    width: 22px;
    height: 22px;
    stroke-width: 3
}

.gallery-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 24px 0;
    margin: 12px 0;
    position: relative;
    overflow: hidden
}

.gallery-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: .6
}

.gallery-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -.5px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .2)
}

.gallery-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2
}

.gallery-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 12px 20px;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 2
}

.gallery-scroll::-webkit-scrollbar {
    display: none
}

.gallery-item {
    position: relative;
    min-width: 280px;
    max-width: 280px;
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--dark);
    scroll-snap-align: start;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .3)
}

.gallery-item:active {
    transform: scale(.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2)
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.gallery-item:active img {
    transform: scale(1.15) rotate(2deg)
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(100%);
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.gallery-item:active .gallery-overlay {
    transform: translateY(0)
}

.gallery-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--white);
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4))
}

.gallery-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    color: var(--white);
    z-index: 3
}

.gallery-large {
    min-width: 340px;
    max-width: 340px
}

.gallery-view-all {
    margin: 0 12px;
    padding: 14px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .3s;
    cursor: pointer;
    position: relative;
    z-index: 2
}

.gallery-view-all:active {
    background: rgba(255, 255, 255, .3);
    transform: scale(.98)
}

.gallery-view-all svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5
}

.content-section {
    background-color: var(--white);
    padding: 24px 16px;
    margin: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -.3px
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.view-all-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700
}

.swipe-hint {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
    font-style: italic
}

.section-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 12px
}

.section-content p:last-child {
    margin-bottom: 0
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.highlight-item {
    background-color: var(--light);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all .2s ease
}

.highlight-item:active {
    background-color: var(--border);
    transform: scale(.98)
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary)
}

.highlight-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3
}

.activities-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.activity-modern-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 18px 12px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    border-radius: 16px;
    transition: all .3s ease;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
}

.activity-modern-item:active {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(158, 111, 65, .15);
    border-color: var(--primary)
}

.activity-icon-bg {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(158, 111, 65, .2);
    transition: all .3s ease
}

.activity-modern-item:active .activity-icon-bg {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(158, 111, 65, .3)
}

.activity-icon-bg svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke-width: 2.5
}

.activity-modern-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3
}

.rooms-section {
    overflow: hidden
}

.roomsSwiper {
    width: 100%;
    padding-bottom: 40px
}

.roomsSwiper .swiper-slide {
    height: auto
}

.rooms-pagination {
    bottom: 0 !important
}

.rooms-pagination .swiper-pagination-bullet {
    background-color: var(--primary) !important;
    opacity: .3;
    width: 8px;
    height: 8px
}

.rooms-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 24px;
    border-radius: 4px
}

.room-card {
    background-color: var(--light);
    border-radius: 16px;
    overflow: hidden;
    transition: all .2s ease;
    height: 100%;
    border: 1px solid var(--secondary);
}

.room-card:active {
    transform: scale(.98)
}

.room-card.featured {
    border: 2px solid var(--accent)
}

.room-image {
    position: relative;
    height: 180px;
    overflow: hidden
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.room-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.room-tag.popular {
    background-color: var(--accent);
    color: var(--white)
}

.room-tag.luxury {
    background-color: var(--primary);
    color: var(--white)
}

.room-tag.exclusive {
    background-color: var(--dark);
    color: var(--white)
}

.room-info {
    padding: 16px
}

.room-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3
}

.room-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px
}

.room-desc {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.4
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px
}

.feature {
    background-color: var(--white);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid var(--border)
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 12px 8px;
    background-color: var(--light);
    border-radius: 12px;
    transition: all .2s ease
}

.amenity-item:active {
    background-color: var(--border);
    transform: scale(.98)
}

.amenity-item svg {
    width: 28px;
    height: 28px;
    color: var(--primary)
}

.amenity-item span {
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2
}

.section-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}

.amenity-item-full {
    background-color: var(--light);
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border-left: 3px solid var(--primary);
    transition: all .2s ease
}

.amenity-item-full:active {
    background-color: var(--border);
    transform: translateX(4px)
}

.dining-card {
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--light)
}

.dining-logo-container {
    width: 100%;
    padding: 30px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center
}

.dining-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain
}

.dining-content {
    padding: 20px
}

.dining-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px
}

.dining-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 14px
}

.dining-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.tag {
    background-color: var(--white);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid var(--border)
}

.location-card {
    background-color: var(--light);
    border-radius: 16px;
    overflow: hidden
}

.map-container {
    width: 100%;
    margin-bottom: 20px
}

.map-container iframe {
    width: 100%;
    border-radius: 16px
}

.location-info {
    padding: 20px
}

.location-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px
}

.location-detail svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px
}

.location-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px
}

.location-address {
    font-size: 14px;
    color: var(--gray)
}

.amenities-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.amenity-modern-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 16px 12px;
    background-color: var(--light);
    border-radius: 12px;
    transition: all .2s ease
}

.amenity-modern-item:active {
    background-color: var(--border);
    transform: scale(.98)
}

.amenity-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(158, 111, 65, .1)
}

.amenity-icon-circle svg {
    width: 24px;
    height: 24px;
    color: var(--primary)
}

.amenity-modern-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.wellness-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    background-color: var(--light);
    padding: 20px 16px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    transition: all .2s ease
}

.wellness-item:active {
    background-color: var(--border);
    transform: scale(.98)
}

.wellness-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary)
}

.wellness-item span {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--accent);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800
}

.rating-badge svg {
    width: 16px;
    height: 16px
}

.reviewsSwiper {
    width: 100%;
    padding-bottom: 40px
}

.swiper-slide {
    height: auto
}

.review-card {
    background-color: var(--white);
    padding: 18px;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
}

.swiper-pagination {
    bottom: 0 !important
}

.swiper-pagination-bullet {
    background-color: var(--primary) !important;
    opacity: .3;
    width: 8px;
    height: 8px
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 24px;
    border-radius: 4px
}

.review-header {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border)
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 17px;
    flex-shrink: 0
}

.reviewer-info {
    flex: 1
}

.reviewer-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px
}

.review-stars {
    color: var(--accent);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 4px
}

.review-platform {
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 12px;
    flex: 1
}

.review-date {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    display: flex;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .05)
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: transparent;
    color: var(--gray);
    transition: all .2s ease;
    position: relative
}

.nav-item:active {
    background-color: var(--light)
}

.nav-item.active {
    color: var(--primary)
}

.nav-item svg {
    width: 24px;
    height: 24px
}

.nav-item span {
    font-size: 11px;
    font-weight: 700
}

.nav-item.book-now-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 12px;
    margin: 0 8px;
    position: relative;
    overflow: hidden
}

.nav-item.book-now-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    animation: shine-nav 3s infinite
}

@keyframes shine-nav {
    0% {
        left: -100%
    }

    100% {
        left: 200%
    }
}

.nav-item.book-now-btn .offer-tag {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #5c3f2f;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 165, 0, .4);
    z-index: 2;
    animation: pulse-tag 2s infinite
}

@keyframes pulse-tag {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

.nav-item.book-now-btn .offer-tag:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent);
    animation: shine-tag 2s infinite
}

@keyframes shine-tag {
    0% {
        left: -100%
    }

    100% {
        left: 200%
    }
}



.booking-engine-wrapper {
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    padding: 0;
    margin: 12px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden
}

.booking-engine-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%)
}

.booking-engine-wrapper #bookingForm {
    padding: 16px 12px
}

.booking-engine-wrapper #bookingForm .booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px
}

.booking-engine-wrapper #bookingForm .booking-form>div {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0
}

.booking-engine-wrapper #bookingForm .form-group {
    position: relative
}

.booking-engine-wrapper #bookingForm .form-group label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px
}

.booking-engine-wrapper #bookingForm .form-group label:before {
    content: '';
    width: 2px;
    height: 12px;
    background: var(--accent);
    border-radius: 2px
}

.booking-engine-wrapper #bookingForm .select-block select,
.booking-engine-wrapper #bookingForm .adult-wrapper select,
.booking-engine-wrapper #bookingForm .child-wrapper select {
    width: 100%;
    padding: 12px 14px;
    height: 46px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background-color: var(--white);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12'%3E%3Cpath fill='%231B4332' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 40px;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05)
}

.booking-engine-wrapper #bookingForm .select-block select:focus,
.booking-engine-wrapper #bookingForm .adult-wrapper select:focus,
.booking-engine-wrapper #bookingForm .child-wrapper select:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(158, 111, 65, .15);
    outline: none
}

.booking-engine-wrapper #bookingForm input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    height: 46px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background-color: var(--white);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05)
}

.booking-engine-wrapper #bookingForm input[type="text"]:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(158, 111, 65, .15);
    outline: none
}

.booking-engine-wrapper #bookingForm .btn-wrapper {
    margin-top: 8px;
    grid-column: 1/-1
}

.booking-engine-wrapper #bookingForm button[type="submit"] {
    width: 100%;
    padding: 14px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 900;
    border: none;
    cursor: pointer;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 6px 20px rgba(158, 111, 65, .25);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden
}

.booking-engine-wrapper #bookingForm button[type="submit"]:active {
    transform: translateY(2px);
    box-shadow: 0 3px 10px rgba(158, 111, 65, .2)
}

.booking-engine-wrapper #bookingForm button[type="submit"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transition: left .6s
}

.booking-engine-wrapper #bookingForm button[type="submit"]:hover:before {
    left: 200%
}

.booking-engine-wrapper #bookingForm button[type="submit"]:after {
    content: '→';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    transition: all .3s
}

.booking-engine-wrapper #bookingForm button[type="submit"]:active:after {
    right: 14px
}

.booking-engine-wrapper .ui-datepicker-trigger {
    display: none
}

/* Fix for giant icons in booking form */
.booking-engine-wrapper svg,
.booking-engine-wrapper i {
    width: 20px;
    height: 20px;
    max-width: 20px;
}

.promo-block input {
    width: 100%;
    padding: 14px 16px;
    height: 48px;
    border-radius: 10px;
    border: 2px solid var(--border);
    background-color: var(--light);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    transition: all .2s ease
}

/* Amenities Swiper (Mobile First) */
.amenitiesSwiper {
    width: 100%;
    height: 280px;
    padding-bottom: 40px;
}

.amenitiesSwiper .swiper-slide {
    height: calc((100% - 30px) / 2) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.amenitiesSwiper .swiper-slide:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(158, 111, 65, 0.1);
}

.amenities-pagination {
    bottom: 0 !important;
}

.amenities-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border);
    opacity: 1;
}

.amenities-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 20px;
    border-radius: 4px;
}

.booking-engine-wrapper #bookingForm .promo-block input:focus {
    border-color: var(--primary);
    background-color: var(--white);
    outline: none
}

.booking-engine-wrapper #bookingForm .btn-wrapper .btn-full-width {
    width: 100%;
    height: 52px;
    padding: 0 24px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 4px 12px rgba(158, 111, 65, .2)
}

.booking-engine-wrapper #bookingForm .btn-wrapper .btn-full-width:active {
    transform: scale(.98);
    box-shadow: 0 2px 6px rgba(158, 111, 65, .15)
}

.hidden {
    display: none !important
}

.select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    height: 48px;
    border: 2px solid var(--border) !important;
    border-radius: 10px !important;
    background-color: var(--light) !important;
    padding: 0 16px !important
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px !important;
    padding: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--dark) !important
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    top: 0 !important;
    right: 16px !important
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--primary) transparent transparent !important;
    border-width: 6px 5px 0 !important
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--primary) !important;
    border-width: 0 5px 6px !important
}

.select2-dropdown {
    border: 2px solid var(--primary) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1) !important
}

.select2-results__option {
    padding: 12px 16px !important;
    font-size: 15px !important;
    font-weight: 600 !important
}

.select2-results__option--highlighted {
    background-color: var(--primary) !important;
    color: var(--white) !important
}

.select2-container {
    width: 100% !important
}

@media (min-width:640px) {
    .app-header {
        padding: 16px 0
    }

    .header-container {
        min-height: 60px;
        padding: 0 20px
    }

    .logo-img {
        max-height: 60px
    }

    .hero-slider {
        margin-top: 92px
    }

    .main-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .bottom-nav {
        max-width: 600px;
        left: 50%;
        transform: translateX(-50%);
    }

    .fab {
        right: calc(50% - 300px + 16px);
    }

    .booking-engine-wrapper #bookingForm .booking-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .booking-engine-wrapper #bookingForm .btn-wrapper {
        grid-column: 1/-1;
    }
}

@media (min-width:768px) {
    .app-header {
        padding: 20px 0;
    }

    .header-container {
        gap: 30px;
        min-height: 70px
    }

    .logo-img {
        max-height: 70px;
        max-width: 160px
    }

    .hero-slider {
        margin-top: 110px
    }

    @media (min-width: 768px) {

        /* Desktop Override: If Swiper is active, we might want different styles or disable it */
        .amenitiesSwiper {
            height: auto;
            padding-bottom: 0;
        }
    }

    .booking-engine-wrapper #bookingForm .booking-form {
        grid-template-columns: repeat(3, 1fr)
    }

    .booking-engine-wrapper #bookingForm .select-block {
        grid-column: span 1
    }

    .booking-engine-wrapper #bookingForm .btn-wrapper {
        grid-column: span 1
    }
}

/* Why Choose Section */
.section-subtitle {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-top: 20px;
    margin-bottom: 12px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background-color: var(--light);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border-left: 3px solid var(--primary);
}

.why-choose-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .why-choose-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Booking Services Section */
.booking-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.booking-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 18px 12px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.booking-service-item:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 111, 65, 0.15);
    border-color: var(--primary);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(158, 111, 65, 0.2);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    stroke-width: 2;
}

.booking-service-item span {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

/* Booking Services Swiper Slider */
.booking-services-section {
    overflow: hidden;
}

.bookingServicesSwiper {
    padding-bottom: 35px;
}

.booking-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(158, 111, 65, 0.08);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.booking-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(158, 111, 65, 0.15);
}

.booking-service-card .service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(221, 177, 134, 0.2) 0%, rgba(158, 111, 65, 0.15) 100%);
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-service-card .service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.booking-service-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.booking-services-pagination {
    position: relative;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.booking-services-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border);
    opacity: 1;
    transition: all 0.3s ease;
}

.booking-services-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: var(--gradient);
}

/* ============================================
   BOOKING MODAL FORM STYLES
   ============================================ */

/* ============================================
   MODAL CONTAINER STYLES
   ============================================ */

.offer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offer-modal.active {
    opacity: 1;
    visibility: visible;
}

.offer-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #5c3f2f;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    transition: all 0.3s ease;
    z-index: 10;
}

.offer-modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.offer-modal-close svg {
    width: 18px;
    height: 18px;
}

.booking-modal {
    max-height: 90vh;
    overflow-y: auto;
    width: 600px;
    max-width: 95%;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.booking-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-top: -5px;
    margin-bottom: 25px;
    text-align: center;
}

.offer-modal-body h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--dark);
}

.booking-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 11px;
    font-weight: 700;
    color: #b58d60;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.field-icon {
    width: 14px;
    height: 14px;
    color: #b58d60;
}

.premium-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0dfdc;
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark);
    background: #fdfaf7;
    outline: none;
    transition: all 0.3s ease;
}

.premium-input:focus {
    border-color: #b58d60;
    box-shadow: 0 0 0 3px rgba(181, 141, 96, 0.1);
    background: #fff;
}

.premium-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b58d60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}

.premium-book-btn {
    width: 100%;
    margin-top: 10px;
    background: linear-gradient(135deg, #b08d65 0%, #d4a76d 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(176, 141, 101, 0.3);
    transition: all 0.3s ease;
}

.premium-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(176, 141, 101, 0.4);
}

.premium-book-btn svg {
    width: 18px;
    height: 18px;
}

/* Datepicker Fix */
input[type="date"] {
    font-family: inherit;
    color: var(--dark);
}

/* Modal Responsive */
@media (max-width: 600px) {
    .offer-modal {
        align-items: flex-end;
    }

    .booking-modal {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        margin: 0;
        padding: 24px 20px 40px;
        max-height: 85vh;
        animation: slideUp 0.3s ease-out;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.room-option-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.room-option input[type="radio"]:checked+.room-option-card {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(158, 111, 65, 0.05) 0%, rgba(221, 177, 134, 0.08) 100%);
    box-shadow: 0 4px 12px rgba(158, 111, 65, 0.1);
}

.room-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.room-option-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.room-option-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.room-option-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.room-option-price {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

.room-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.room-check svg {
    width: 14px;
    height: 14px;
    color: var(--white);
    opacity: 0;
    transition: all 0.3s ease;
}

.room-option input[type="radio"]:checked+.room-option-card .room-check {
    background: var(--primary);
    border-color: var(--primary);
}

.room-option input[type="radio"]:checked+.room-option-card .room-check svg {
    opacity: 1;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* Fix Offer Modal CTA as button */
button.offer-modal-cta {
    width: 100%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-brown);
    font-weight: 800;
    font-size: 16px;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
}

button.offer-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

button.offer-modal-cta svg {
    width: 20px;
    height: 20px;
}

/* Room Check Styling - Filled Circle */
.room-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.room-option input[type="radio"]:checked+.room-option-card .room-check {
    background: #a17a4e;
    /* Darker Gold/Brown check background */
    border-color: #a17a4e;
}

.room-option input[type="radio"]:checked+.room-option-card .room-check svg {
    color: white;
    width: 16px;
    height: 16px;
}

/* Modal Responsive Fixes */
@media (max-width: 480px) {
    .offer-modal-content {
        width: 95%;
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .offer-modal-header {
        margin-bottom: 20px;
    }

    .discount-big {
        font-size: 42px;
    }
}

/* ============================================
   HERO PAGINATION FIX - Better visibility
   ============================================ */

.hero-pagination {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 20 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 10px 16px !important;
    border-radius: 25px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.hero-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.9) !important;
    opacity: 0.5 !important;
    width: 10px !important;
    height: 10px !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 28px !important;
    border-radius: 5px !important;
    background: linear-gradient(135deg, #DDB186 0%, #9e6f41 100%) !important;
    box-shadow: 0 2px 10px rgba(221, 177, 134, 0.5) !important;
}

/* ============================================
   NEW BOOKING ENGINE SECTION
   ============================================ */

.booking-engine-section {
    padding: 20px 16px;
    background: linear-gradient(135deg, #FDF8F3 0%, #f5ebe0 100%);
}

.booking-engine-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 8px 30px rgba(158, 111, 65, 0.1);
    border: 1px solid rgba(158, 111, 65, 0.08);
}

.booking-engine-header {
    text-align: center;
    margin-bottom: 24px;
}

.booking-engine-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 4px 0;
}

.booking-engine-header p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.booking-engine-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .booking-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.booking-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form-field label svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.booking-form-field input,
.booking-form-field select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--dark);
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.booking-form-field input:focus,
.booking-form-field select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(158, 111, 65, 0.1);
}

.booking-form-field input::placeholder {
    color: var(--gray);
}

.booking-form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236C757D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.booking-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(158, 111, 65, 0.25);
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(158, 111, 65, 0.35);
}

.booking-submit-btn:active {
    transform: translateY(0);
}

.booking-submit-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   ENHANCED DROPDOWN & DATE PICKER STYLES
   ============================================ */

/* Room Type Dropdown - Enhanced */
.booking-form-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239e6f41' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 48px;
    font-weight: 500;
}

.booking-form-field select:hover {
    border-color: var(--primary);
    background-color: var(--white);
}

.booking-form-field select option {
    padding: 14px;
    font-size: 15px;
    background: var(--white);
    color: var(--dark);
}

.booking-form-field select option:checked {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

/* Date Picker - Enhanced */
.date-field input[type="date"] {
    cursor: pointer;
    position: relative;
    background-color: var(--light);
    font-weight: 500;
}

.date-field input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.date-field {
    position: relative;
}

.date-field::after {
    content: '';
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239e6f41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.date-field input[type="date"]:hover {
    border-color: var(--primary);
    background-color: var(--white);
}

/* Focus states for dropdown and date */
.booking-form-field select:focus,
.date-field input[type="date"]:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(158, 111, 65, 0.15);
}

/* ============================================
   DARK SECTION STYLES
   ============================================ */

.dark-section {
    background: var(--dark);
    padding: 24px 16px;
}

.dark-section .section-title {
    color: var(--white);
}

.dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Dark Theme */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 24px 16px;
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .rating-badge {
    background: var(--secondary);
    color: var(--dark);
}

.testimonials-section .review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-section .reviewer-name {
    color: var(--white);
}

.testimonials-section .review-platform {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-section .review-text {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-section .review-stars {
    color: var(--secondary);
}

.testimonials-section .review-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.testimonials-section .reviewer-avatar {
    background: var(--gradient);
    color: var(--white);
}

/* Footer Dark */
.footer-section {
    background: var(--dark);
    color: var(--white);
}

.footer-section a {
    color: var(--secondary);
}


/* ============================================
   GALLERY SWIPER STYLES
   ============================================ */

.gallerySwiper {
    padding-bottom: 40px;
}

.gallerySwiper .gallery-item {
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallerySwiper .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallerySwiper .gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border);
    opacity: 1;
}

.gallery-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--primary);
    border-radius: 4px;
}

.nestedRoomSwiper .swiper-slide {
    height: 100%;
}

.nestedRoomSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-tag {
    z-index: 10;
}

.nested-room-pagination {
    bottom: 12px !important;
}

.nested-room-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1;
    width: 6px;
    height: 6px;
    margin: 0 3px !important;
    transition: all 0.3s ease;
}

.nested-room-pagination .swiper-pagination-bullet-active {
    background: #fff !important;
    width: 18px;
    border-radius: 4px;
}

.nested-swiper-button-next,
.nested-swiper-button-prev {
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    /* Always visible for mobile */
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.nested-swiper-button-next {
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    /* Always visible for mobile */
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

/* Button Loading State */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading span,
.btn-loading svg {
    opacity: 0;
    /* Hide original text/icon */
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.nested-swiper-button-next:hover,
.nested-swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
}

.nested-swiper-button-next {
    right: 10px;
}

.nested-swiper-button-prev {
    left: 10px;
}

.nested-swiper-button-next::after,
.nested-swiper-button-prev::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    display: block;
}

.nested-swiper-button-next::after {
    transform: rotate(45deg);
    margin-left: -2px;
}

.nested-swiper-button-prev::after {
    transform: rotate(-135deg);
    margin-right: -2px;
}