.site-notice {
    max-width: 1200px;
    margin: 20px auto;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

.site-notice--success {
    background: #e8f7ed;
    border: 1px solid #a5d6a7;
    color: #1f4d23;
}

.site-notice--error {
    background: #fdecea;
    border: 1px solid #f5c6cb;
    color: #842029;
}

.deluxe__area-item {
    transition: all 0.3s ease;
}

.deluxe__area-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.deluxe__area-item-image {
    transition: all 0.3s ease;
    overflow: hidden;
}

.deluxe__area-item-image img {
    transition: all 0.3s ease;
}

.deluxe__area-item:hover .deluxe__area-item-image img {
    transform: scale(1.1);
}

.deluxe__area-item-content h4 a {
    transition: all 0.3s ease;
}

.deluxe__area-item:hover .deluxe__area-item-content h4 a {
    color: #ff6b35;
}

.facilities__icons-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.facilities__icons-row {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(200% + 20px);
}

.facilities__area-item {
    flex: 0 0 auto;
    width: 120px;
    text-align: center;
    padding: 20px 10px;
    transition: all 0.3s ease;
    margin-right: 20px;
}

.facilities__area-item:hover {
    transform: translateY(-5px);
}

.facilities__area-item-icon {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.facilities__area-item-icon i {
    font-size: 40px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.facilities__area-item:hover .facilities__area-item-icon i {
    transform: scale(1.2);
    color: #333 !important;
}

.facilities__area-item-content h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: all 0.3s ease;
}

.facilities__area-item:hover .facilities__area-item-content h6 {
    color: #ff6b35;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.nearby__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

.nearby__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.nearby__card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.nearby__card-content {
    padding: 18px 16px 16px;
}

.nearby__card-content h5 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #222;
}

.nearby__card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px;
    color: #555;
    font-weight: 500;
}

.nearby__card-content ul li i {
    color: #ff6b35;
    margin-right: 6px;
}

.who-we-are__area {
    background-color: #f8f9fa;
}

.nearby__area {
    background-color: #f8f9fa;
}

.who-we-are__area-left-title h2 {
    color: #333;
    margin-bottom: 20px;
}

.who-we-are__area-left-title p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.who-we-are__area-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
}

.who-we-are__area .feature-item i {
    color: #ff6b35;
    margin-right: 10px;
}

.who-we-are__area-map {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.who-we-are__area-map iframe {
    border: 0;
    border-radius: 12px;
    width: 100%;
    height: 400px;
}

.banner__area-title {
    animation: heroFadeIn .9s ease-out both;
}

.banner__area-title h1 {
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    position: relative;
    display: inline-block;
}

.banner__area-title h1 span {
    display: block;
    background: linear-gradient(90deg, #ff8a4c 0%, #ffd166 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.banner__area-title h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 46%;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(90deg, #ff6b35 0%, rgba(255, 255, 255, 0) 100%);
    animation: heroUnderline 3.2s ease-in-out infinite;
}

@keyframes heroUnderline {
    0% {
        width: 30%;
        opacity: .9;
    }

    50% {
        width: 60%;
        opacity: 1;
    }

    100% {
        width: 30%;
        opacity: .9;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575px) {
    .banner__area-title h1 {
        line-height: 1.1;
    }

    .banner__area-title h1::after {
        height: 4px;
        bottom: -10px;
        width: 50%;
    }
}

.accommodations__area-right {
    display: flex;
    justify-content: flex-end;
}

.accommodations__area-right-image {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    width: 100%;
    max-width: 640px;
    margin-left: auto;
}

.accommodations__area-right-image > img {
    width: 60%;
    border-radius: 12px;
    display: block;
}

.accommodations__area-right-image-two img {
    width: 65%;
    margin-top: -12%;
    border-radius: 12px;
    display: block;
}

@media (max-width: 991px) {
    .accommodations__area-right-image {
        max-width: 560px;
        gap: 14px;
    }

    .accommodations__area-right-image > img {
        width: 62%;
    }

    .accommodations__area-right-image-two img {
        width: 70%;
        margin-left: 164px;
    }
}

@media (max-width: 575px) {
    .accommodations__area-right-image {
        max-width: 440px;
        gap: 12px;
    }

    .accommodations__area-right-image > img {
        width: 66%;
    }

    .accommodations__area-right-image-two img {
        width: 34%;
    }
}

.banner__area {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 991px) {
    .banner__area {
        min-height: 80vh;
    }
}

.stats__strip {
    background: linear-gradient(135deg, #C9A84C 0%, #F0D080 40%, #C9A84C 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.stats__strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.08) 0%, transparent 50%, rgba(0,0,0,0.08) 100%);
}

.stats__item {
    text-align: center;
    position: relative;
    padding: 10px 20px;
}

.stats__item + .stats__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(0,0,0,0.15);
}

.stats__number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #0C0D0F;
    line-height: 1;
    display: block;
}

.stats__suffix {
    font-family: 'Playfair Display', serif;
    font-size: 0.55em;
    vertical-align: super;
    font-weight: 700;
}

.stats__label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    margin-top: 6px;
    display: block;
}

.booking-platforms__area {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-platforms__area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,107,53,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.booking-platforms__area-title p,
.booking-platforms__area-description {
    color: #666;
    font-size: 1.1em;
    margin-top: 15px;
}

.booking-platforms__row {
    row-gap: 30px;
}

.booking-platform-card {
    display: block;
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 110%;
    border: 2px solid transparent;
}

.booking-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.booking-platform-card:hover::before {
    left: 100%;
}

.booking-platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

#tripadvisor-card:hover {
    border-color: #00af87;
}

#agoda-card:hover {
    border-color: #fa5c5c;
}

#airbnb-card:hover {
    border-color: #ff5a5f;
}

#booking-card:hover {
    border-color: #003580;
}

.platform-icon-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.reviews__area .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #4a90e2;
    opacity: .35;
}

.reviews__area .swiper-pagination-bullet-active {
    opacity: 1;
}

.review-modal .booking-modal-content {
    max-width: 720px;
}

.form-group--wide {
    grid-column: span 2;
}

.review-note {
    margin-top: 10px;
    color: #6c757d;
    font-size: .92em;
}

.booking-platforms__area {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-platforms__area-title p {
    color: #666;
    font-size: 1.1em;
    margin-top: 15px;
}

.booking-platforms__row {
    row-gap: 30px;
}

.events__area {
    background: #fff;
}

.events__area .row.gap-row {
    row-gap: 30px;
}

.events__area .text-right {
    text-align: right;
}

.nearby__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
}

.nearby__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.nearby__card-content h5 {
    margin-bottom: 6px;
}

.nearby__card-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.events__cta-row {
    margin-top: 18px;
}

.booking-modal {
    z-index: 2000;
    display: none;
}

.booking-modal.open {
    display: flex;
}

.booking-modal-content {
    max-width: 720px;
}

.form-group--wide {
    grid-column: span 2;
}

.who-we-are__area-map iframe {
    border: 0;
    border-radius: 12px;
    width: 100%;
    height: 400px;
}

.feature-item i {
    color: #ff6b35;
    margin-right: 10px;
}

.cta__final {
    background: linear-gradient(135deg, #0C0D0F 0%, #1A1508 60%, #0C0D0F 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__final::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta__final-inner {
    max-width: 680px;
    margin: 0 auto;
}

.cta__final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 52px);
    color: #FAF7F2;
    line-height: 1.2;
    margin-bottom: 14px;
}

.cta__final h2 span {
    background: linear-gradient(90deg, #C9A84C 0%, #F0D080 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta__final p {
    color: rgba(240,208,128,0.6);
    font-size: 16px;
    margin-bottom: 36px;
    font-family: 'Inter', sans-serif;
}

.cta__final .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__final .cta-btn-primary,
.cta__final .cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 17px 40px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.cta__final .cta-btn-primary {
    background: linear-gradient(135deg, #C9A84C 0%, #F0D080 100%);
    color: #0C0D0F;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(201,168,76,0.4);
    padding: 18px 42px;
}

.cta__final .cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(201,168,76,0.6);
    color: #0C0D0F;
}

.cta__final .cta-btn-outline {
    border: 1.5px solid rgba(201,168,76,0.5);
    color: rgba(201,168,76,0.9);
    font-weight: 700;
}

.cta__final .cta-btn-outline:hover {
    background: rgba(201,168,76,0.1);
    border-color: #C9A84C;
    color: #F0D080;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .accommodations__area-right-image {
        max-width: 560px;
        gap: 14px;
    }
}

.booking-platforms__area {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-platforms__area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,107,53,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.booking-platform-card {
    display: block;
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 110%;
    border: 2px solid transparent;
}

.booking-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.booking-platform-card:hover::before {
    left: 100%;
}

.booking-platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

#tripadvisor-card:hover {
    border-color: #00af87;
}

#agoda-card:hover {
    border-color: #fa5c5c;
}

#airbnb-card:hover {
    border-color: #ff5a5f;
}

#booking-card:hover {
    border-color: #003580;
}

.platform-icon-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.platform-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 3px solid;
    opacity: 0;
    transition: all 0.3s ease;
}

.booking-platform-card:hover .platform-icon::after {
    opacity: 0.3;
    inset: -10px;
}

.tripadvisor-icon {
    background: linear-gradient(135deg, #00af87 0%, #00d4a3 100%);
    box-shadow: 0 8px 25px rgba(0, 175, 135, 0.3);
}

.tripadvisor-icon-img {
    width: 2.5em;
    height: 2.5em;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
}

.tripadvisor-icon::after {
    border-color: #00af87;
}

.agoda-icon {
    background: linear-gradient(135deg, #fa5c5c 0%, #ff7a7a 100%);
    box-shadow: 0 8px 25px rgba(250, 92, 92, 0.3);
}

.agoda-icon::after {
    border-color: #fa5c5c;
}

.airbnb-icon {
    background: linear-gradient(135deg, #ff5a5f 0%, #ff7e82 100%);
    box-shadow: 0 8px 25px rgba(255, 90, 95, 0.3);
}

.airbnb-icon::after {
    border-color: #ff5a5f;
}

.agoda-logo-text,
.booking-logo-text {
    font-size: 2.2em;
    font-weight: 900;
    font-family: Arial, sans-serif;
}

.booking-icon {
    background: linear-gradient(135deg, #003580 0%, #006ce4 100%);
    box-shadow: 0 8px 25px rgba(0, 53, 128, 0.3);
}

.booking-icon::after {
    border-color: #003580;
}

.booking-platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
}

.platform-content {
    text-align: center;
}

.platform-content h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: #232323;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.booking-platform-card:hover .platform-content h3 {
    color: #ff6b35;
}

#tripadvisor-card:hover .platform-content h3 {
    color: #00af87;
}

#agoda-card:hover .platform-content h3 {
    color: #fa5c5c;
}

#airbnb-card:hover .platform-content h3 {
    color: #ff5a5f;
}

#booking-card:hover .platform-content h3 {
    color: #003580;
}

.platform-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1em;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 25px;
    font-size: 0.9em;
    color: #666;
    font-weight: 600;
    transition: all 0.3s;
}

.booking-platform-card:hover .platform-badge {
    background: #ff6b35;
    color: #fff;
    transform: scale(1.05);
}

#tripadvisor-card:hover .platform-badge {
    background: #00af87;
}

#agoda-card:hover .platform-badge {
    background: #fa5c5c;
}

#airbnb-card:hover .platform-badge {
    background: #ff5a5f;
}

#booking-card:hover .platform-badge {
    background: #003580;
}

.platform-badge i {
    font-size: 0.9em;
}

.platform-arrow {
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #666;
    transition: all 0.3s;
}

.booking-platform-card:hover .platform-arrow {
    background: #ff6b35;
    color: #fff;
    transform: translateX(5px);
}

#tripadvisor-card:hover .platform-arrow {
    background: #00af87;
}

#agoda-card:hover .platform-arrow {
    background: #fa5c5c;
}

#airbnb-card:hover .platform-arrow {
    background: #ff5a5f;
}

#booking-card:hover .platform-arrow {
    background: #003580;
}

.reviews__area {
    background: #fff;
}

.review-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    padding: 18px;
    max-width: 760px;
    margin: 0 auto;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd166;
}

.review-author {
    font-weight: 700;
    color: #222;
}

.review-loc {
    color: #6c757d;
    font-size: .95em;
}

.review-stars {
    color: #fbb034;
    margin-left: auto;
    white-space: nowrap;
}

.review-text {
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-top: 8px;
}

.swiper-reviews {
    padding: 10px 10px 24px;
}

.reviews__area .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #4a90e2;
    opacity: .35;
}

.reviews__area .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 991px) {
    .booking-platform-card {
        padding: 30px 25px;
    }

    .platform-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2em;
    }

    .platform-content h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 575px) {
    .booking-platform-card {
        padding: 25px 20px;
    }

    .platform-icon {
        width: 60px;
        height: 60px;
        font-size: 2em;
    }

    .platform-content h3 {
        font-size: 1.4em;
    }
}
