.apartmani-container {
    padding: 160px 10% 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.apt-row {
    display: flex;
    gap: 80px;
    align-items: center;
}

.apt-gallery-side {
    flex: 1.3;
    height: 500px;
    min-width: 0;
}

.swiper {
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apt-info-side {
    flex: 1;
}

.label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #c5a47e;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.apt-info-side h2 {
    font-family: 'Playfair Display',serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
}

.apt-info-side p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.amenities-mini {
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book {
    display: inline-block;
    padding: 18px 45px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-book:hover {
    background: #c5a47e;
    transform: translateY(-2px);
}

.btn-more {
    padding: 12px 25px !important;
    background: #1a1a1a;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 12px !important;
    letter-spacing: 1px;
    font-weight: 600 !important;
    transition: 0.3s ease;
    background-color: #1a1a1a !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 1px solid #1a1a1a;
    min-width: 140px;
    height: auto;
}

.btn-more:hover {
    background: #c5a47e;
    transform: translateY(-2px);
    background-color: #c5a47e !important;
    border-color: #c5a47e !important;
    color: #fff !important;
}

.swiper-button-next,.swiper-button-prev {
    color: #ddd !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
}

@media (max-width:1024px) {
    .apt-row {
        flex-direction: column;
        gap: 40px;
    }

    .apt-gallery-side {
        width: 100%;
        height: 350px;
    }

    .apartmani-container {
        padding: 120px 5% 60px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    border-radius: 4px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
    text-align: left;
}

.booking-form select,.booking-form input {
    padding: 12px;
    border: 1px solid #ddd;
    font-family: 'Montserrat',sans-serif;
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.result-box {
    background: #f9f9f9;
    padding: 20px;
    padding-bottom: 10px;
    border-left: 4px solid #c5a47e;
    margin-top: 15px;
}

.send-btn {
    width: 100%;
    padding: 15px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}

.send-options {
    margin-top: 15px;
    padding-bottom: 10px;
}

.send-btn.wa {
    background: #25D366;
    color: white;
}

.send-btn.mail {
    background: #1a1a1a;
    color: white;
}

.apt-checkbox-grid {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.apt-check {
    flex: 1;
    cursor: pointer;
}

.apt-check input {
    display: none;
}

.box-label {
    display: block;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;
    transition: 0.3s;
}

.apt-check input:checked+.box-label {
    background: #c5a47e;
    color: white;
    border-color: #c5a47e;
}

.section-label {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.guest-info-fields .input-group {
    margin-bottom: 10px;
}

.nav-cta-btn {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    padding: 12px 25px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: 0.3s ease;
    border: 1px solid #1a1a1a;
    min-width: 140px;
    height: auto;
}

.nav-cta-btn:hover {
    background-color: #c5a47e !important;
    border-color: #c5a47e !important;
    color: #fff !important;
}

@media (max-width:1024px) {
    .nav-cta-btn {
        margin-top: 10px;
        width: 100%;
    }
}

.apt-gallery-col {
    animation: heroFadeLeft 0.9s cubic-bezier(0.22,1,0.36,1) both;
}

.apt-info-col {
    animation: heroFadeRight 0.9s 0.2s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes heroFadeLeft {
        from{opacity:0;transform:translateX(-28px)}to{opacity:1;transform:translateX(0)}
}

@keyframes heroFadeRight {
        from{opacity:0;transform:translateX(28px)}to{opacity:1;transform:translateX(0)}
}

@media (max-width:1024px) {
    .apt-gallery-col {
        animation: heroFadeUp 0.85s cubic-bezier(0.22,1,0.36,1) both;
    }

    .apt-info-col {
        animation: heroFadeUp 0.85s 0.15s cubic-bezier(0.22,1,0.36,1) both;
    }
}

@keyframes heroFadeUp {
        from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),transform 0.65s cubic-bezier(0.22,1,0.36,1);
    will-change: opacity,transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 {
    transition-delay: 0.08s;
}

.reveal.delay-2 {
    transition-delay: 0.16s;
}

.reveal.delay-3 {
    transition-delay: 0.24s;
}

.reveal.delay-4 {
    transition-delay: 0.32s;
}

.reveal.delay-5 {
    transition-delay: 0.40s;
}

.amenity-item {
    transition: transform 0.22s ease,color 0.22s ease;
    padding: 5px 6px;
    margin: -5px -6px;
    border-radius: 3px;
}

.amenity-item:hover {
    transform: translateX(6px);
    color: #1a1a1a;
}

.amenity-icon {
    transition: background 0.22s ease;
}

.amenity-item:hover .amenity-icon {
    background: #f0ebe4;
}

.review-card {
    transition: transform 0.3s ease,box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.09);
}

.other-apt-card {
    transition: background 0.3s ease,transform 0.3s ease,box-shadow 0.3s ease;
}

.other-apt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(197,164,126,0.18);
}

.apt-stat {
    transition: transform 0.25s ease,box-shadow 0.25s ease,border-bottom-color 0.25s ease;
}

.apt-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    border-bottom-color: #b8935d;
}

@keyframes priceBorderPulse {
        0%,100%{border-left-color:#c5a47e}50%{border-left-color:#dfc09d}
}

.apt-price-box {
    animation: priceBorderPulse 3.5s ease-in-out infinite;
    transition: box-shadow 0.3s ease;
}

.apt-price-box:hover {
    box-shadow: 0 4px 22px rgba(197,164,126,0.13);
}

.distances-list li {
    transition: background 0.2s ease,padding-left 0.2s ease;
    border-radius: 3px;
    padding-left: 4px;
    padding-right: 4px;
}

.distances-list li:hover {
    background: #f9f9f9;
    padding-left: 10px;
}

.distances-list li:hover span:last-child {
    color: #b8935d;
}

.rules-list li {
    transition: background 0.2s ease;
    border-radius: 3px;
    padding-left: 4px;
    padding-right: 4px;
    margin-left: -4px;
    margin-right: -4px;
}

.rules-list li:hover {
    background: #f9f9f9;
}

@media (max-width:768px) {
    .apt-main-swiper,.swiper.mySwiper1,.swiper.mySwiper2,.swiper.mySwiper3 {
        height: 280px !important;
        width: 100% !important;
        overflow: hidden;
    }

    .apt-main-swiper .swiper-slide img,.mySwiper1 .swiper-slide img,.mySwiper2 .swiper-slide img,.mySwiper3 .swiper-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
    }

    .n1,.p1,.n2,.p2,.n3,.p3,.apt-main-swiper .swiper-button-next,.apt-main-swiper .swiper-button-prev {
        display: none !important;
    }

    .apt-thumb-swiper {
        display: none !important;
    }
}
