@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
    --button-color: #5d8f8f;
    --button-color-rgb: 93, 143, 143;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F3EEDC;
}

.warp-home {
    background-color: #F3EEDC;
}

p {
    margin: 0px !important;
}

.uppercase {
    text-transform: uppercase;
}

.phiyen-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    height: 85px;
    z-index: 50;
    transition: all 0.3s;
}

.phiyen-header.scrolled {
    background-color: var(--c1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    height: 70px;
}

.phiyen-header.scrolled .phiyen-nav a {
    color: white;
}

.phiyen-header.scrolled .phiyen-lang-text {
    color: white;
}

.phiyen-header.scrolled .phiyen-lang-dropdown i {
    color: white;
}



.phiyen-header-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.phiyen-logo {
    position: absolute;
    left: 90px;
    top: 5px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.phiyen-header.scrolled .phiyen-logo {
    width: 60px;
    height: 60px;
}

.phiyen-logo:hover {
    transform: scale(1.05);
}

.phiyen-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phiyen-nav {
    position: absolute;
    left: 190px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 980px;
    gap: 2rem;
}

.phiyen-nav a {
    font-weight: 600;
    font-size: 16px;
    color: var(--c1);
    text-decoration: none;
    letter-spacing: 0.1px;
    position: relative;
    transition: transform 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.phiyen-nav a:hover {
    transform: translateY(-2px);
}

.phiyen-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #66BCB0;
    transition: width 0.3s;
}

.phiyen-booking-btn {
    background-color: var(--button-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--button-color);
}

.phiyen-booking-btn:hover {
    background-color: transparent;
    color: var(--button-color);
    transform: translateY(-2px);
}

.phiyen-nav a:hover::after {
    width: 100%;
}

/* Dropdown menu styles */
.phiyen-nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.phiyen-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--c1);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 0.25rem;
}

.phiyen-nav-item-dropdown:hover .phiyen-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.phiyen-nav-item-dropdown.active .phiyen-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.phiyen-dropdown-menu li {
    padding: 0;
    margin: 0;
}

.phiyen-dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    font-weight: normal;
}

.phiyen-dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.has-child {
    display: flex;
    align-items: center;
}

.phiyen-lang {
    position: absolute;
    left: 1190px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    z-index: 100;
}

.phiyen-lang-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

.phiyen-lang-current:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.phiyen-lang-flag {
    width: 36px;
    height: 24px;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.phiyen-lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.125rem;
}

.phiyen-lang-text {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--c1);
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.phiyen-lang-dropdown {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phiyen-lang-dropdown i {
    color: var(--c1);
    font-size: 14px;
}

.phiyen-lang.open .phiyen-lang-dropdown {
    transform: rotate(180deg);
}

.phiyen-lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    overflow: hidden;
}

/* Mobile menu dropdown styles */
.phiyen-mobile-dropdown {
    position: relative;
}

.phiyen-mobile-dropdown-content {
    display: none;
    background-color: #f1f1f1;
    padding: 10px 0;
    border-radius: 0.25rem;
    margin-top: 5px;
}

.phiyen-mobile-dropdown-content a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.phiyen-mobile-dropdown-content a:hover {
    background-color: #ddd;
}

.phiyen-mobile-dropdown.active .phiyen-mobile-dropdown-content {
    display: block;
}

/* Mobile menu button - hidden by default on desktop */
.phiyen-mobile-menu-btn {
    display: none;
}

/* Ensure mobile navigation overlay is hidden on desktop */
.phiyen-mobile-nav-overlay {
    display: none !important;
}

.phiyen-lang.open .phiyen-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.phiyen-lang-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #000;
    transition: background-color 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.phiyen-lang-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.phiyen-lang-item.active {
    background-color: rgba(122, 143, 92, 0.1);
    font-weight: 600;
}

.phiyen-lang-item .phiyen-lang-flag {
    width: 28px;
    height: 20px;
}

.phiyen-lang-item span {
    font-size: 1rem;
    letter-spacing: 0.1px;
}

.phiyen-hero {
    position: relative;
    background-color: #66BCB0;
    height: 944px;
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
}

.phiyen-hero-bg {
    position: absolute;
    height: 960px;
    width: 100%;
    transition: transform 0.3s ease-out;
}

.phiyen-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.phiyen-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.phiyen-hero-text {
    position: absolute;
    left: 125px;
    top: 400px;
    z-index: 10;
    opacity: 0;
    animation: fade-in 0.5s ease-out 0.5s forwards;
}

.phiyen-hero-text h1 {
    font-weight: 500;
    font-size: 3rem;
    line-height: 52px;
    color: white;
    letter-spacing: 0.1px;
    width: 578px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.phiyen-hero-subtitle {
    position: absolute;
    left: 125px;
    top: 520px;
    z-index: 10;
    opacity: 0;
    animation: fade-in 0.5s ease-out 0.7s forwards;
}

.phiyen-hero-subtitle p {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 36px;
    color: white;
    letter-spacing: 0.1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px !important;
}

.phiyen-booking-form {
    position: absolute;
    background-color: rgba(62, 72, 42, 0.9);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    right: 122px;
    padding: 1.5rem;
    border-radius: 0.5rem;
    top: 289px;
    width: 345px;
    max-width: 345px;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.8s;
    opacity: 0;
    transform: translateX(50px);
}

.phiyen-booking-form.visible {
    opacity: 1;
    transform: translateX(0);
}

.phiyen-booking-form:hover {
    transform: scale(1.02);
}

.phiyen-booking-form h2 {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 36px;
    color: #F7F5EF;
    letter-spacing: 0.1px;
    width: 100%;
}

.phiyen-booking-form p {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 22px;
    color: #F7F5EF;
    width: 100%;
}

.phiyen-booking-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 192px;
    width: 100%;
}

.phiyen-booking-field {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 1rem;
    width: 100%;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0;
    transform: translateY(20px);
}

.phiyen-booking-field.visible {
    opacity: 1;
    transform: translateY(0);
}

.phiyen-booking-field:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.phiyen-booking-field-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    align-items: flex-start;
    color: #2D2920;
    letter-spacing: 0.1px;
}

.phiyen-booking-field-label {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 22px;
}

.phiyen-booking-field-value {
    font-weight: 500;
    font-size: 1rem;
    line-height: 24px;
}

.phiyen-booking-field-icon {
    width: 32px;
    height: 32px;
    position: relative;
}

.phiyen-booking-field-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.phiyen-booking-promo {
    border: 3px solid var(--button-color);
    height: 56px;
    width: 100%;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 1rem;
}

.phiyen-booking-promo:hover {
    border-color: var(--button-color);
    opacity: 0.8;
    transform: scale(1.02);
}

.phiyen-booking-promo p {
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--button-color);
    text-align: center;
    letter-spacing: 0.1px;
    width: 100%;
}

.phiyen-booking-button {
    background-color: var(--button-color);
    display: flex;
    height: 56px;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.phiyen-booking-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.phiyen-booking-button:active {
    transform: scale(0.95);
}

.phiyen-booking-button p {
    font-weight: 500;
    font-size: 1.5rem;
    color: #F7F5EF;
    text-align: center;
    letter-spacing: 0.1px;
}

.phiyen-section {
    padding: 2.5rem 0;
    width: 100%;
}

.phiyen-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
}

.phiyen-intro {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

.phiyen-intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.1px;
}

.phiyen-intro-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    /*align-items: flex-start;*/
    line-height: 40px;
    font-size: 1.875rem;
    font-family: 'Cormorant Garamond', serif;
}

.phiyen-intro-title p:first-child {
    font-weight: 500;
    color: #2D2920;
}

.phiyen-intro-title p:last-child {
    font-weight: 700;
    color: #66BCB0;
}

.phiyen-intro-desc {
    font-weight: 400;
    line-height: 24px;
    color: #2D2920;
    font-size: 1rem;
    max-width: 453px;
}

.phiyen-intro-btn {
    border: 2px solid var(--button-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    border-radius: 0.375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: transparent;
    margin-top: 1.5rem;
}

.phiyen-intro-btn:hover {
    background-color: var(--button-color);
    transform: scale(1.05);
}

.phiyen-intro-btn:hover p {
    color: #F7F5EF;
}

.phiyen-intro-btn p {
    font-weight: 500;
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.1px;
    color: var(--button-color);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 !important;
}

.phiyen-intro-image {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    height: 431px;
    overflow: hidden;
    width: 690px;
    flex-shrink: 0;
}

.phiyen-intro-image img {
    aspect-ratio: 2048/1366;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.7s;
}

.phiyen-intro-image:hover img {
    transform: scale(1.1);
}

.phiyen-nature {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.phiyen-nature-divider {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 40px;
    color: #2D2920;
    text-align: center;
    letter-spacing: 0.1px;
    width: 100%;
}

.phiyen-nature-content {
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 487px;
    width: 100%;
}

.phiyen-nature-image {
    height: 622px;
    margin-right: -487px;
    overflow: hidden;
    width: 996px;
    flex-shrink: 0;
    border-radius: 0.5rem;
}

.phiyen-nature-image img {
    position: absolute;
    height: 664px;
    width: 996px;
    transition: transform 0.5s;
}

.phiyen-nature-image:hover img {
    transform: scale(1.05);
}

.phiyen-nature-overlay {
    background-color: rgba(62, 72, 42);
    height: 578px;
    margin-right: -487px;
    overflow: hidden;
    width: 690px;
    flex-shrink: 0;
    position: relative;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    opacity: 0.85;
}

.phiyen-nature-overlay-title {
    position: absolute;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 40px;
    left: 50%;
    color: #F7F5EF;
    text-align: center;
    top: 73px;
    transform: translateX(-50%);
    width: 482px;
    letter-spacing: 0.1px;
    transition: all 0.5s;
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
    font-family: 'Cormorant Garamond', serif;
}

.phiyen-nature-overlay-title.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.phiyen-nature-overlay-subtitle {
    position: absolute;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 32px;
    left: 50%;
    color: #D8C8A8;
    text-align: center;
    top: 137px;
    transform: translateX(-50%);
    letter-spacing: 4px;
    transition: all 0.5s;
    opacity: 0;
    transform: translateX(-50%) translateX(-20px);
}

.phiyen-nature-overlay-subtitle.visible {
    opacity: 1;
    transform: translateX(-50%) translateX(0);
}

.phiyen-nature-overlay-text {
    position: absolute;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 32px;
    left: 50%;
    color: #F7F5EF;
    text-align: center;
    top: 235px;
    transform: translateX(-50%);
    width: 534px;
    letter-spacing: 0.1px;
    transition: all 0.5s;
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.phiyen-nature-overlay-text.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.phiyen-nature-overlay-footer {
    position: absolute;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 78px;
    top: 480px;
    width: 100%;
    transition: opacity 0.5s;
    opacity: 0;
}

.phiyen-nature-overlay-footer.visible {
    opacity: 1;
}

.phiyen-nature-overlay-footer p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 32px;
    color: #D8C8A8;
    text-align: center;
    letter-spacing: 0.1px;
}

.phiyen-nature-overlay-line {
    display: flex;
    align-items: stretch;
    flex: 1;
}

.phiyen-nature-overlay-line div {
    border-bottom: 2px solid #D8C8A8;
    height: 100%;
    transition: all 0.8s;
    width: 0;
}

.phiyen-nature-overlay-line div.visible {
    width: 294px;
}

.phiyen-rooms {
    position: relative;
    background-color: #7A8F5C;
    min-height: 809px;
    width: 100%;
    overflow: hidden;
    padding: 37px 0 80px;
}

.phiyen-rooms-title {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 40px;
    text-align: center;
    color: white;
    letter-spacing: 0.1px;
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
}

.phiyen-rooms-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    position: relative;
}

.phiyen-rooms-slider {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.phiyen-rooms-nav {
    width: 56px;
    height: 463px;
    background-color: transparent;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.phiyen-rooms-nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.phiyen-rooms-nav i {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.phiyen-rooms-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    flex: 1;
    height: 463px;
    max-width: 100%;
}

.phiyen-rooms-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    height: 100%;
    will-change: transform;
    transform: translateX(0);
    touch-action: pan-x;
    /* Cho phép vuốt ngang */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling trên iOS */
    user-select: none;
    /* Tránh select text khi vuốt */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
    /* Hiển thị cursor grab */
}

.phiyen-rooms-carousel-wrapper:active {
    cursor: grabbing;
    /* Hiển thị cursor grabbing khi đang vuốt */
}

.phiyen-room-card {
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 463px;
    will-change: transform, opacity, width;
    cursor: pointer;
}

/* Vị trí -2 và 2: xa nhất, nhỏ nhất - chỉ giảm width, giữ nguyên height - nằm làm nền của nút điều hướng */
.phiyen-room-card.pos-2,
.phiyen-room-card.pos2 {
    width: 170px;
    height: 463px;
    opacity: 0.7;
    z-index: 0;
    margin: 0;
}

/* Vị trí -1 và 1: gần hơn một chút */
.phiyen-room-card.pos-1,
.phiyen-room-card.pos1 {
    width: 200px;
    height: 463px;
    opacity: 0.8;
    z-index: 2;
    margin: 0;
}

/* Vị trí 0: center - lớn nhất */
.phiyen-room-card.center,
.phiyen-room-card.pos0 {
    width: 695px;
    height: 463px;
    opacity: 1;
    z-index: 3;
    margin: 0 0.5rem;
    pointer-events: auto;
}

/* Fallback cho các class cũ */
.phiyen-room-card.side {
    width: 200px;
    height: 463px;
    opacity: 0.4;
    z-index: 1;
    margin: 0;
}

.phiyen-room-image {
    height: 100%;
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phiyen-room-card.center .phiyen-room-image {
    border-color: rgba(255, 255, 255, 0.3);
}

.phiyen-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phiyen-room-label {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 3;
    font-family: sans-serif;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phiyen-room-card.side .phiyen-room-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.phiyen-rooms-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
    width: 100%;
    max-width: 695px;
    margin: 1.5rem auto 0;
}

.phiyen-rooms-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    color: white;
    letter-spacing: 0.1px;
    width: 100%;
}

.phiyen-rooms-name {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 36px;
    width: 100%;
    font-family: sans-serif;
}

.phiyen-rooms-desc {
    font-weight: 500;
    line-height: 24px;
    font-size: 1rem;
    max-width: 594px;
    margin: 0 auto;
}

.phiyen-rooms-buttons {
    display: flex;
    gap: 49px;
    align-items: center;
    padding: 0.5rem 0;
    width: 100%;
    max-width: 594px;
}

.phiyen-rooms-btn {
    flex: 1;
    /* border: 2px solid var(--button-color); */
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 0.375rem;
    background: transparent;
    transition: all 0.2s;
    cursor: pointer;
}

.phiyen-rooms-btn:hover {
    background-color: rgba(var(--button-color-rgb), 0.1);
}

.phiyen-rooms-btn.primary {
    background-color: var(--button-color);
    border-color: var(--button-color);
}

.phiyen-rooms-btn.primary:hover {
    background-color: transparent;
    color: var(--button-color) !important;
}

.phiyen-rooms-btn p {
    font-weight: 500;
    font-size: 1.25rem;
    color: white;
    text-align: center;
    letter-spacing: 0.1px;
    margin: 0;
    transition: color 0.2s;
}

.phiyen-rooms-btn.primary p {
    color: #F7F5EF;
}

.phiyen-rooms-btn.primary:hover p {
    color: var(--button-color);
}

.phiyen-rooms-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.phiyen-rooms-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
}

.phiyen-rooms-dot.active {
    background-color: white;
    width: 32px;
    border-radius: 5px;
}

.phiyen-tours {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.phiyen-tours-title {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 40px;
    color: #000;
    text-align: center;
    letter-spacing: 0.1px;
    width: 100%;
    font-family: 'Cormorant Garamond', serif;
}

/* Owl Carousel Navigation Buttons */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px);
    left: -60px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
}

/* Force show navigation even when disabled */
.owl-carousel .owl-nav.disabled {
    display: flex !important;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: rgba(93, 143, 143, 0.9) !important;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    transform: scale(1.1);
    /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); */
}

.owl-carousel .owl-nav button span {
    font-size: 24px;
    font-weight: bold;
}

.owl-carousel .owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Force enable buttons even when they have disabled class */
.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled {
    opacity: 1 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Style SVG icons */
.owl-carousel .owl-nav button svg {
    width: 80px;
    height: 60px;
    stroke: white;
}

/* For tours and promotions sections with max-width containers */
.phiyen-tours .owl-nav,
.phiyen-promotions .owl-nav {
    width: 100%;
    left: 0;
    padding: 0 20px;
}

.phiyen-tours .owl-nav button.owl-prev,
.phiyen-promotions .owl-nav button.owl-prev {
    margin-left: -20px;
}

.phiyen-tours .owl-nav button.owl-next,
.phiyen-promotions .owl-nav button.owl-next {
    margin-right: -20px;
}

.phiyen-tours-grid {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.phiyen-tour-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 384px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

/*.phiyen-tour-card:hover {
    transform: translateY(-8px);
}*/

.phiyen-tour-image {
    background-color: transparent;
    height: 312px;
    overflow: hidden;
    width: 100%;
    border-radius: 0;
    position: relative;
}

.phiyen-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s;
}

.phiyen-tour-image:hover img {
    transform: scale(1.1);
}

.phiyen-tour-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 1rem 1.5rem;
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.phiyen-tour-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    color: #2D2920;
    text-align: center;
    letter-spacing: 0.1px;
    width: 100%;
}

.phiyen-tour-title {
    font-weight: 700;
    font-size: 1.25rem;
    width: 100%;
}

.phiyen-tour-desc {
    font-weight: 500;
    line-height: 24px;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.phiyen-tour-btn {
    border: 2px solid var(--button-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    border-radius: 0.375rem;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--button-color);
}

.phiyen-tour-btn:hover {
    background-color: transparent;
    transform: translateY(-2px);
}

.phiyen-tour-btn:hover p {
    color: var(--button-color);
}

.phiyen-tour-btn.active {
    background-color: var(--button-color);
}

.phiyen-tour-btn p {
    font-weight: 500;
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.1px;
    color: #F7F5EF;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.phiyen-tour-btn.active p {
    color: #F7F5EF;
}

.phiyen-events {
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
    align-items: center;
    padding: 2.5rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.phiyen-events-title {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 40px;
    color: #2D2920;
    letter-spacing: 0.1px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

.phiyen-events-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.phiyen-events-header {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    width: 100%;
}

.phiyen-events-tabs {
    border-bottom: 3px solid var(--button-color);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    position: relative;
}

.phiyen-events-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
}



.phiyen-events-tab.active::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--button-color);
    border-radius: 0.375rem 0.375rem 0 0;
    transition: all 0.3s;
}

.phiyen-events-tab p {
    position: relative;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.1px;
    color: #4A463F;
}

.phiyen-events-tab.active p {
    color: #F7F5EF;
}

.phiyen-events-desc {
    font-weight: 500;
    line-height: 24px;
    color: #2D2920;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* width: 690px; */
    transition: opacity 0.3s;
}

.phiyen-events-slider {
    height: 600px;
    overflow: hidden;
    position: relative;
    width: 100%;
    /* border-radius: 0.5rem; */
}

.phiyen-events-slide {
    position: absolute;
    height: 860px;
    left: 0;
    top: -185px;
    width: 100%;
    transition: opacity 0.5s;
}

.phiyen-events-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.5s ease-in-out;
}

.phiyen-events-nav {
    position: absolute;
    height: 600px;
    left: 1160px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    background-color: transparent;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: none;
}

.phiyen-events-nav:hover {
    background-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.phiyen-events-nav.prev {
    left: 0;
}

.phiyen-events-nav i {
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.phiyen-events-dots {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 78px;
    margin-top: 10px;
}

.phiyen-events-dot {
    border-radius: 50%;
    transition: all 0.3s;
    width: 10px;
    height: 10px;
    border: 1px solid #2D2920;
    background: transparent;
    cursor: pointer;
}

.phiyen-events-dot.active {
    background-color: #2D2920;
}

.phiyen-experiences {
    position: relative;
    background-color: #F3EEDC;
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 575px;
    overflow: hidden;
}

.phiyen-experiences-bg {
    position: absolute;
    content: stretch;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    height: 587px;
    align-items: flex-start;
    left: 0;
    top: 0;
    width: 100%;
}

.phiyen-experiences-bg img {
    height: 1080px;
    position: relative;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.phiyen-experiences-overlay {
    position: absolute;
    background-color: rgba(247, 245, 239, 0.4);
    height: 682px;
    left: 50%;
    top: calc(50% + 7.5px);
    transform: translate(-50%, -50%);
    width: 100%;
}

.phiyen-experiences-content {
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    z-index: 10;
}

.phiyen-experiences-title {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 40px;
    color: #2D2920;
    text-align: center;
    letter-spacing: 0.1px;
    width: 100%;
    font-family: 'Cormorant Garamond', serif;
}

.phiyen-experiences-grid {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

.phiyen-experience-card {
    background-color: white;
    height: 373px;
    overflow: hidden;
    position: relative;
    /* border-radius: 1.5rem; */
    width: 282px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.phiyen-experience-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.phiyen-experience-image {
    position: absolute;
    height: 373px;
    left: -139px;
    top: 0;
    width: 560px;
    transition: transform 0.5s;
}

.phiyen-experience-card:hover .phiyen-experience-image {
    transform: scale(1.1);
}

.phiyen-experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.phiyen-experience-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    left: 129px;
    top: 58px;
    z-index: 10;
}

.phiyen-experience-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.phiyen-experience-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    height: 373px;
    left: 0;
    overflow: hidden;
    top: 0;
    width: 282px;
    /* border-radius: 1.5rem; */
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.phiyen-experience-card:hover .phiyen-experience-overlay {
    opacity: 1;
    pointer-events: auto;
}

.phiyen-experience-overlay-title {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 205px;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 26px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.1px;
    margin: 0;
}

.phiyen-experience-overlay p,
.phiyen-experience-overlay-desc {
    position: absolute;
    font-weight: 400;
    height: 119px;
    line-height: 24px;
    left: 50%;
    font-size: 0.95rem;
    text-align: center;
    color: white;
    top: 150px;
    transform: translateX(-50%);
    width: 205px;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    margin: 0px;
}

.phiyen-experience-card:hover .phiyen-experience-overlay p {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.phiyen-experience-gradient {
    position: absolute;
    background: linear-gradient(to top, rgba(62, 72, 42, 0.8), transparent);
    height: 142px;
    left: 0;
    top: 231px;
    width: 282px;
    /* border-radius: 0 0 1.5rem 1.5rem; */
}

.phiyen-experience-arrow {
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    transition: top 0.3s, transform 0.3s, opacity 0.3s;
    opacity: 1;
}

.phiyen-experience-arrow i {
    color: white;
    font-size: 20px;
    transition: transform 0.3s;
}

.phiyen-experience-card:hover .phiyen-experience-arrow {
    top: 50px;
}

.phiyen-experience-title {
    position: absolute;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 32px;
    color: white;
    top: 337px;
    letter-spacing: 0.1px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: opacity 0.3s, transform 0.3s;
    width: calc(100% - 20px);
    max-width: 260px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 1;
}

.phiyen-experience-card:hover .phiyen-experience-title {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
    pointer-events: none;
}

.phiyen-experience-btn {
    position: absolute;
    border: 1px solid var(--button-color);
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 0.5rem;
    border-radius: 0.375rem;
    top: 286px;
    width: 156px;
    background: var(--button-color);
    z-index: 10;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.phiyen-experience-card:hover .phiyen-experience-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(-10px);
}

.phiyen-experience-btn:hover {
    transform: translateX(-50%) translateY(-12px);
    background-color: transparent;
    box-shadow: 0 4px 12px rgba(var(--button-color-rgb), 0.3);
}

.phiyen-experience-btn:active {
    transform: translateX(-50%) translateY(-10px) scale(0.95);
}

.phiyen-experience-btn p {
    font-weight: 600;
    line-height: 24px;
    color: #F7F5EF;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.1px;
}

.phiyen-experience-btn:hover p {
    color: var(--button-color);
}

.phiyen-amenities {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2.5rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.phiyen-amenities-header {
    background-color: rgba(122, 143, 92, 0.8);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 30px 103px;
    color: #F7F5EF;
    text-align: center;
    letter-spacing: 0.1px;
    width: 100%;
    border-radius: 0.5rem;
}

.phiyen-amenities-title {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 40px;
    width: 482px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

.phiyen-amenities-desc {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 32px;
    width: 993px;
}

.phiyen-amenities-btn {
    border: 2px solid #F7F5EF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2.5rem;
    border-radius: 0.375rem;
    background: #F7F5EF;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
}

.phiyen-amenities-btn:hover {
    background-color: transparent;
    transform: translateY(-2px);
}

.phiyen-amenities-btn:hover p {
    color: #F7F5EF;
}

.phiyen-amenities-btn p {
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    letter-spacing: 0.1px;
    color: rgba(122, 143, 92, 1);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.phiyen-amenities-grid {
    display: flex;
    gap: 1.5rem;
    height: 900px;
    align-items: flex-end;
    position: relative;
    width: 100%;
}

.phiyen-amenity-item {
    position: absolute;
    background-color: white;
    overflow: hidden;
    opacity: 0;
    transition: transform 0.3s, opacity 0.5s;
    z-index: 1;
}

.phiyen-amenity-item.visible {
    opacity: 1;
    animation: fade-in 0.5s ease-out forwards;
}

.phiyen-amenity-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.phiyen-amenity-image {
    position: absolute;
    transition: transform 0.7s;
    width: 100%;
    height: 100%;
}

.phiyen-amenity-item:hover .phiyen-amenity-image {
    transform: scale(1.1);
}

.phiyen-amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.phiyen-promotions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 2.5rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.phiyen-promotions-title {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 40px;
    color: #2D2920;
    text-align: center;
    letter-spacing: 0.1px;
    width: 100%;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

.phiyen-promotions-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.phiyen-promotion-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    transition: transform 0.3s;
}

/*.phiyen-promotion-card:hover {
    transform: translateY(-8px);
}*/

.phiyen-promotion-image {
    background-color: transparent;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phiyen-promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
    display: block;
}

.phiyen-promotion-card:hover .phiyen-promotion-image img {
    transform: scale(1.1);
}

.phiyen-promotion-body {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
    width: 384px;
    border-radius: 0;
    box-shadow: none;
}

.phiyen-promotion-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    color: #2D2920;
    text-align: center;
    letter-spacing: 0.1px;
    width: 100%;
}

.phiyen-promotion-title {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 36px;
    width: 100%;
}

.phiyen-promotion-desc {
    font-weight: 500;
    line-height: 24px;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.phiyen-promotion-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    justify-content: center;
    letter-spacing: 0.1px;
    width: 100%;
}

.phiyen-promotion-date {
    font-weight: 400;
    line-height: 22px;
    color: #D9A441;
    font-size: 0.875rem;
    width: 100%;
}

.phiyen-promotion-link {
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--button-color);
    text-align: center;
    text-decoration: underline;
    transition: all 0.2s;
    cursor: pointer;
}

.phiyen-promotion-link:hover {
    transform: scale(1.1);
    color: var(--button-color);
    opacity: 0.8;
}

.phiyen-footer {
    background-color: var(--c1);
    height: 546px;
    color: white;
    letter-spacing: 0.1px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.phiyen-footer-title {
    position: absolute;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 40px;
    left: 123px;
    top: 94px;
    font-family: 'Cormorant Garamond', serif;
}

.phiyen-footer-contact {
    position: absolute;
    right: 123px;
    top: 74px;
}

.phiyen-footer-contact h4 {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 32px;
    margin-bottom: 1.5rem;
}

.phiyen-footer-contact p {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 28px;
    margin-bottom: 1rem;
    transition: transform 0.2s;
    cursor: pointer;
}

.phiyen-footer-contact p:hover {
    transform: translateX(4px);
}

.phiyen-footer-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #66BCB0;
    transition: all 1s;
    transform: scaleX(0);
    transform-origin: left;
}

.phiyen-footer-line.visible {
    transform: scaleX(1);
}

.phiyen-floating {
    position: fixed;
    background-color: white;
    height: 417px;
    right: 0;
    overflow: hidden;
    border-radius: 0 0 0 1rem;
    border-top-left-radius: 1rem;
    bottom: 0;
    width: 73px;
    z-index: 50;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-out;
}

.phiyen-floating.hidden {
    transform: translateX(73px);
}

.phiyen-floating-toggle {
    position: absolute;
    background-color: #000;
    height: 44px;
    left: 0;
    overflow: hidden;
    top: 0;
    width: 73px;
    cursor: pointer;
    transition: background-color 0.2s;
    border: none;
}

.phiyen-floating-toggle:hover {
    background-color: #333;
}

.phiyen-floating-toggle:active {
    transform: scale(0.95);
}

.phiyen-floating-toggle i {
    color: white;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.phiyen-floating-menu {
    position: absolute;
    background-color: #3E482A;
    left: 0;
    overflow: hidden;
    width: 73px;
    height: 73px;
    top: 44px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.phiyen-floating-menu:hover {
    background-color: rgba(62, 72, 42, 0.8);
    transform: scale(1.1);
}

.phiyen-floating-menu:active {
    transform: scale(0.95);
}

.phiyen-floating-menu i {
    color: white;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.phiyen-floating-booking {
    position: absolute;
    background-color: var(--button-color);
    height: 227px;
    left: 0;
    overflow: hidden;
    top: 117px;
    width: 73px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.phiyen-floating-booking:hover {
    background-color: var(--button-color);
    opacity: 0.8;
    transform: scale(1.05);
}

.phiyen-floating-booking:active {
    transform: scale(0.95);
}

.phiyen-floating-booking-text {
    position: absolute;
    display: flex;
    height: 188px;
    align-items: center;
    justify-content: center;
    left: 19px;
    top: 20px;
    width: 36px;
}

.phiyen-floating-booking-text p {
    flex: none;
    transform: rotate(90deg);
    font-weight: 700;
    font-size: 1.5rem;
    color: #2D2920;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.phiyen-floating-messenger {
    position: absolute;
    background-color: #0068ff;
    left: 0;
    overflow: hidden;
    width: 73px;
    height: 73px;
    top: 344px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}

.phiyen-floating-messenger:hover {
    background-color: #0080ff;
    transform: scale(1.1);
}

.phiyen-floating-messenger:active {
    transform: scale(0.95);
}

.phiyen-floating-messenger img {
    position: absolute;
    left: 0;
    width: 73px;
    height: 73px;
    top: 0;
    object-fit: cover;
    object-position: center;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fade-in 0.5s ease-out forwards;
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop screens (min-width: 1025px) - Ensure mobile elements are hidden */
@media (min-width: 1025px) {
    .phiyen-mobile-controls {
        display: none !important;
    }

    .phiyen-mobile-menu-btn {
        display: none !important;
    }

    .phiyen-mobile-nav-overlay {
        display: none !important;
    }
}

/* Tablet và màn hình nhỏ (max-width: 1024px) */
@media (max-width: 1024px) {
    .phiyen-header-content {
        padding: 0 2rem;
        justify-content: space-between;
    }

    .phiyen-logo {
        position: static;
        left: auto;
        top: auto;
        width: 60px;
        height: 60px;
    }

    .phiyen-nav {
        display: none;
    }

    .phiyen-lang {
        position: static;
        transform: none;
        left: auto;
        top: auto;
    }

    /* Hide language selector on mobile */
    .phiyen-lang {
        display: none;
    }

    /* Mobile controls container */
    .phiyen-mobile-controls {
        display: flex;
        align-items: center;
        gap: 12px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 70;
        pointer-events: auto;
    }

    /* Mobile language selector */
    .phiyen-mobile-lang {
        position: relative;
        z-index: 70;
        pointer-events: auto;
    }

    .phiyen-mobile-lang-current {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        padding: 6px 10px;
        border-radius: 6px;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .phiyen-mobile-lang-current:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

    .phiyen-mobile-lang-current .phiyen-lang-flag {
        width: 24px;
        height: 16px;
        flex-shrink: 0;
    }

    .phiyen-mobile-lang-current .phiyen-lang-flag img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 2px;
    }

    .phiyen-mobile-lang-current .phiyen-lang-text {
        font-weight: 600;
        font-size: 0.875rem;
        color: #000;
        white-space: nowrap;
    }

    .phiyen-mobile-lang-current .phiyen-lang-dropdown {
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .phiyen-mobile-lang-current .phiyen-lang-dropdown i {
        color: #000;
        font-size: 10px;
        transition: transform 0.3s ease;
    }

    .phiyen-mobile-lang.open .phiyen-lang-dropdown i {
        transform: rotate(180deg);
    }

    .phiyen-mobile-lang-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        min-width: 160px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        z-index: 1000;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .phiyen-mobile-lang.open .phiyen-mobile-lang-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .phiyen-mobile-lang-menu .phiyen-lang-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        text-decoration: none;
        color: #333;
        transition: all 0.2s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .phiyen-mobile-lang-menu .phiyen-lang-item:last-child {
        border-bottom: none;
    }

    .phiyen-mobile-lang-menu .phiyen-lang-item:hover {
        background-color: rgba(102, 188, 176, 0.08);
        padding-left: 20px;
    }

    .phiyen-mobile-lang-menu .phiyen-lang-item.active {
        background-color: rgba(102, 188, 176, 0.15);
        font-weight: 600;
        color: #66BCB0;
    }

    .phiyen-mobile-lang-menu .phiyen-lang-item .phiyen-lang-flag {
        width: 32px;
        height: 22px;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .phiyen-mobile-lang-menu .phiyen-lang-item span {
        font-size: 0.9375rem;
        white-space: nowrap;
        font-weight: 500;
    }

    /* Mobile menu button */
    .phiyen-mobile-menu-btn {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 70;
        pointer-events: auto;
        -webkit-tap-highlight-color: transparent;
    }

    .phiyen-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 100%;
        width: 100%;
    }

    .phiyen-hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Mobile navigation overlay */
    .phiyen-mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(122, 143, 92, 0.95);
        z-index: 100;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .phiyen-mobile-nav-overlay.active {
        display: block !important;
        opacity: 1;
    }

    .phiyen-mobile-nav-content {
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .phiyen-mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .phiyen-mobile-logo {
        width: 60px;
        height: 60px;
    }

    .phiyen-mobile-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .phiyen-mobile-close {
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }

    .phiyen-mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        gap: 2rem;
    }

    .phiyen-mobile-nav a {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 600;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 5px;
        transition: background-color 0.3s;
    }

    .phiyen-mobile-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .phiyen-mobile-booking-btn {
        background-color: var(--button-color);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 0.25rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        border: 2px solid var(--button-color);
        margin-top: 1rem;
    }

    .phiyen-mobile-booking-btn:hover {
        background-color: transparent;
        color: var(--button-color);
    }

    .phiyen-mobile-lang {
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .phiyen-mobile-lang-title {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 15px;
    }

    .phiyen-mobile-lang-options {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .phiyen-mobile-lang-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-decoration: none;
        color: #fff;
        transition: opacity 0.3s;
        gap: 8px;
    }

    .phiyen-mobile-lang-item:hover {
        opacity: 0.8;
    }

    .phiyen-mobile-lang-item.active {
        font-weight: bold;
    }

    .phiyen-mobile-lang-item .phiyen-lang-flag {
        width: 40px;
        height: 26px;
        margin-bottom: 0;
    }

    .phiyen-container {
        padding: 0 2rem;
    }

    .phiyen-hero {
        height: auto;
        min-height: 600px;
    }

    .phiyen-hero-bg {
        height: 100%;
        min-height: 600px;
    }

    .slideshow {
        min-height: 400px;
        position: relative;
    }

    .phiyen-hero-text {
        left: 2rem;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
    }

    .phiyen-hero-text h1 {
        font-size: 2rem;
        width: auto;
        max-width: 90%;
    }

    .phiyen-hero-subtitle {
        left: 2rem;
        top: calc(50% + 80px);
        transform: translateY(-50%);
        bottom: auto;
    }

    .phiyen-hero-subtitle p {
        font-size: 1.25rem;
    }

    .phiyen-booking-form {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 500px;
        margin: 2rem auto;
    }

    .phiyen-section {
        padding: 2rem 0;
    }

    .phiyen-intro {
        flex-direction: column;
        gap: 2rem;
    }

    .phiyen-intro-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .phiyen-nature {
        gap: 2rem;
    }

    .phiyen-nature-content {
        flex-direction: column;
        padding-right: 0;
        align-items: center;
    }

    .phiyen-nature-image {
        width: 100%;
        height: auto;
        min-height: 400px;
        margin-right: 0;
        position: relative;
    }

    .phiyen-nature-image img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .phiyen-nature-overlay {
        width: 100%;
        height: auto;
        min-height: 400px;
        margin-right: 0;
        margin-top: 2rem;
        position: relative;
    }

    .phiyen-nature-overlay-title {
        width: 90%;
        font-size: 1.5rem;
    }

    .phiyen-nature-overlay-text {
        width: 90%;
        font-size: 1rem;
        top: 200px;
    }

    .phiyen-nature-overlay {
        padding-bottom: 100px;
    }

    .phiyen-nature-overlay-footer {
        position: absolute;
        top: auto;
        bottom: 30px;
        left: 2rem;
        right: 2rem;
        padding: 0;
        width: auto;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .phiyen-nature-overlay-line {
        width: 100%;
        order: 1;
    }

    .phiyen-nature-overlay-line div {
        width: 100% !important;
        height: 2px;
    }

    .phiyen-nature-overlay-footer p {
        order: 2;
        width: 100%;
        text-align: center;
    }

    .phiyen-rooms {
        min-height: auto;
        padding: 2rem 0;
    }

    .phiyen-rooms-carousel {
        height: 350px;
    }

    .phiyen-room-card.center,
    .phiyen-room-card.pos0 {
        width: 500px;
        height: 350px;
    }

    .phiyen-room-card.pos-1,
    .phiyen-room-card.pos1 {
        width: 180px;
        height: 350px;
    }

    .phiyen-room-card.pos-2,
    .phiyen-room-card.pos2 {
        width: 120px;
        height: 350px;
    }

    .phiyen-room-card.side {
        width: 150px;
        height: 350px;
    }

    .phiyen-rooms-nav {
        width: 60px;
        height: 350px;
    }

    .phiyen-tours-grid,
    .phiyen-experiences-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .phiyen-promotions-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .phiyen-tour-card,
    .phiyen-promotion-card {
        width: 100%;
        max-width: 384px;
    }

    .phiyen-experience-card {
        width: 240px;
        height: 320px;
    }

    .phiyen-experience-image {
        width: 480px;
        height: 320px;
        left: -120px;
    }

    .phiyen-experience-overlay {
        width: 100%;
        height: 100%;
    }

    .phiyen-experience-overlay p {
        width: 90%;
        max-width: 200px;
        top: 84px;
    }

    .phiyen-experience-icon {
        left: 50%;
        transform: translateX(-50%);
    }

    .phiyen-experience-arrow {
        top: 250px;
    }

    .phiyen-experience-btn {
        top: 236px;
    }

    .phiyen-experience-gradient {
        width: 100%;
        height: 142px;
        top: 178px;
    }

    .phiyen-amenities-grid {
        height: auto;
        min-height: 600px;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .phiyen-amenity-item {
        position: relative !important;
        width: 100% !important;
        height: 300px !important;
        left: 0 !important;
        top: 0 !important;
    }

    .phiyen-amenity-image {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        left: 0 !important;
        top: 0 !important;
    }

    .phiyen-events-slider {
        height: 400px;
    }

    .phiyen-events-slide {
        height: 600px;
        top: -100px;
    }

    .phiyen-events-nav {
        width: 60px;
        height: 400px;
    }

    .phiyen-events-nav.prev {
        left: 0;
    }

    .phiyen-events-nav:not(.prev) {
        left: auto;
        right: 0;
    }

    .phiyen-events-desc {
        width: 100%;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .phiyen-header {
        height: 70px;
    }

    .phiyen-header-content {
        padding: 0 1rem;
    }

    .phiyen-logo {
        width: 50px;
        height: 50px;
    }

    .phiyen-container {
        padding: 0 1rem;
    }

    .phiyen-hero {
        margin-top: 70px;
        min-height: 500px;
    }

    .slideshow {
        min-height: 350px;
        position: relative;
    }

    .phiyen-hero-text {
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
    }

    .phiyen-hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .phiyen-hero-subtitle {
        left: 1rem;
        top: calc(50% + 60px);
        transform: translateY(-50%);
        bottom: auto;
    }

    .phiyen-hero-subtitle p {
        font-size: 1rem;
        margin-top: 10px !important;
    }

    .phiyen-booking-form {
        margin: 1rem auto;
        padding: 1rem;
    }

    .phiyen-booking-form h2 {
        font-size: 1.25rem;
    }

    .phiyen-booking-fields {
        height: auto;
    }

    .phiyen-section {
        padding: 1.5rem 0;
    }

    .phiyen-intro {
        gap: 1.5rem;
    }

    .phiyen-intro-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .phiyen-intro-desc {
        font-size: 0.875rem;
    }

    .phiyen-intro-image {
        height: auto;
        min-height: 250px;
    }

    .phiyen-nature {
        gap: 1.5rem;
    }

    .phiyen-nature-divider {
        font-size: 1.5rem;
    }

    .phiyen-nature-image {
        min-height: 300px;
        border-radius: 0.5rem;
    }

    .phiyen-nature-overlay {
        min-height: 300px;
        margin-top: 1rem;
        padding: 1.5rem;
        padding-bottom: 80px;
    }

    .phiyen-nature-overlay-title {
        font-size: 1.25rem;
        top: 40px;
        width: 95%;
    }

    .phiyen-nature-overlay-subtitle {
        font-size: 1rem;
        top: 90px;
        letter-spacing: 2px;
    }

    .phiyen-nature-overlay-text {
        font-size: 0.875rem;
        line-height: 1.5;
        top: 140px;
        width: 95%;
    }

    .phiyen-nature-overlay-footer {
        position: absolute;
        top: auto;
        bottom: 20px;
        left: 1.5rem;
        right: 1.5rem;
        padding: 0;
        width: auto;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .phiyen-nature-overlay-line {
        width: 100%;
        order: 1;
    }

    .phiyen-nature-overlay-line div {
        width: 100% !important;
        height: 2px;
    }

    .phiyen-nature-overlay-footer p {
        order: 2;
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .phiyen-rooms {
        padding: 1.5rem 0;
    }

    .phiyen-rooms-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .phiyen-rooms-carousel {
        height: 280px;
        max-width: 100%;
    }

    .phiyen-rooms-slider {
        max-width: 100%;
        padding: 0;
    }

    .phiyen-rooms-dots {
        bottom: 1rem;
    }

    .phiyen-room-card.center,
    .phiyen-room-card.pos0 {
        width: 280px;
        max-width: calc(100vw - 100px);
        height: 280px;
    }

    .phiyen-room-card.pos-1,
    .phiyen-room-card.pos1 {
        width: 150px;
        height: 280px;
    }

    .phiyen-room-card.pos-2,
    .phiyen-room-card.pos2 {
        width: 100px;
        height: 280px;
    }

    .phiyen-room-card.side {
        width: 80px;
        height: 280px;
    }

    .phiyen-room-image {
        height: 100%;
        max-width: 100%;
    }

    .phiyen-rooms-nav {
        width: 40px;
        height: 280px;
        flex-shrink: 0;
    }

    .phiyen-rooms-nav i {
        font-size: 18px;
    }

    .phiyen-room-label {
        font-size: 1rem;
        bottom: 10px;
    }

    .phiyen-rooms-info {
        padding: 1rem;
        gap: 1rem;
    }

    .phiyen-rooms-name {
        font-size: 1.25rem;
    }

    .phiyen-rooms-desc {
        font-size: 0.875rem;
    }

    .phiyen-rooms-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .phiyen-rooms-btn {
        width: 100%;
    }

    .phiyen-rooms-btn p {
        font-size: 1rem;
    }

    .phiyen-tours {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .phiyen-tours-title {
        font-size: 1.5rem;
    }

    .phiyen-tours-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .phiyen-tour-card {
        width: 100%;
        max-width: 100%;
    }

    .phiyen-tour-image {
        height: 250px;
    }

    .phiyen-tour-title {
        font-size: 1.125rem;
    }

    .phiyen-tour-desc {
        font-size: 0.875rem;
    }

    .phiyen-events {
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .phiyen-events-title {
        font-size: 1.5rem;
    }

    .phiyen-events-content {
        gap: 1.5rem;
    }

    .phiyen-events-header {
        gap: 1rem;
    }

    .phiyen-events-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .phiyen-events-tab {
        padding: 0.5rem 1rem;
    }

    .phiyen-events-tab p {
        font-size: 1rem;
    }

    .phiyen-events-desc {
        font-size: 0.875rem;
        width: 100%;
    }

    .phiyen-events-slider {
        height: 300px;
    }

    .phiyen-events-slide {
        height: 450px;
        top: -75px;
    }

    .phiyen-events-nav {
        width: 30px;
        height: 200px;
    }

    .phiyen-events-nav i {
        font-size: 24px;
    }

    .phiyen-experiences {
        padding: 1.5rem 0;
        gap: 1.5rem;
        min-height: auto;
    }

    .phiyen-experiences-bg {
        height: 500px;
    }

    .phiyen-experiences-bg img {
        height: 500px;
    }

    .phiyen-experiences-overlay {
        height: 500px;
    }

    .phiyen-experiences-title {
        font-size: 1.5rem;
    }

    .phiyen-experiences-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .phiyen-experience-card {
        width: 100%;
        max-width: 300px;
        height: 350px;
    }

    .phiyen-experience-image {
        width: 600px;
        height: 350px;
        left: -150px;
    }

    .phiyen-experience-overlay {
        width: 100%;
        height: 100%;
    }

    .phiyen-experience-overlay-title {
        top: 50px;
        width: 90%;
        max-width: 250px;
        font-size: 1rem;
    }

    .phiyen-experience-overlay p,
    .phiyen-experience-overlay-desc {
        width: 90%;
        max-width: 250px;
        top: 100px;
        height: auto;
        max-height: 100px;
    }

    .phiyen-experience-icon {
        left: 50%;
        transform: translateX(-50%);
    }


    .phiyen-experience-arrow {
        top: 250px;
    }

    .phiyen-experience-card:hover .phiyen-experience-arrow {
        top: 25px;
    }

    .phiyen-experience-btn {
        top: 236px;
    }


    .phiyen-experience-gradient {
        width: 100%;
        height: 142px;
        top: 208px;
    }

    .phiyen-experience-title {
        font-size: 1rem;
        top: 300px;
    }

    .phiyen-amenities {
        padding: 1.5rem 0;
    }

    .phiyen-amenities-header {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .phiyen-amenities-title {
        font-size: 1.5rem;
        width: 100%;
    }

    .phiyen-amenities-desc {
        font-size: 1rem;
        line-height: 1.5;
        width: 100%;
    }

    .phiyen-amenities-btn {
        padding: 0.625rem 2rem;
        width: auto;
    }

    .phiyen-amenities-btn p {
        font-size: 1rem;
    }

    .phiyen-amenities-grid {
        min-height: auto;
        gap: 1rem;
    }

    .phiyen-amenity-item {
        height: 250px !important;
    }

    .phiyen-promotions {
        padding: 1.5rem 0;
        gap: 1.5rem;
    }

    .phiyen-promotions-title {
        font-size: 1.5rem;
    }

    .phiyen-promotions-grid {
        gap: 1.5rem;
    }

    .phiyen-promotion-card {
        width: 100%;
        max-width: 100%;
    }

    .phiyen-promotion-image {
        width: 100%;
        height: 300px;
    }

    .phiyen-promotion-body {
        width: 100%;
    }

    .phiyen-promotion-title {
        font-size: 1.25rem;
    }

    .phiyen-promotion-desc {
        font-size: 0.875rem;
    }
}

/* Mobile nhỏ (max-width: 576px) */
@media (max-width: 576px) {
    .phiyen-header {
        height: 60px;
    }

    .phiyen-header-content {
        padding: 0 0.75rem;
    }

    .phiyen-logo {
        width: 45px;
        height: 45px;
    }

    .phiyen-lang-text {
        font-size: 0.875rem;
    }

    .phiyen-lang-flag {
        width: 28px;
        height: 20px;
    }

    .phiyen-container {
        padding: 0 0.75rem;
    }

    .phiyen-hero {
        margin-top: 60px;
        min-height: 400px;
    }

    .slideshow {
        min-height: 300px;
        position: relative;
        z-index: 1;
    }

    .phiyen-hero-content {
        position: absolute;
        left: 0.75rem;
        top: calc(50%);
        transform: translateY(-50%);
        z-index: 100;
        width: calc(100% - 1.5rem);
        display: flex;
        flex-direction: column;
    }

    .phiyen-hero-text {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        opacity: 1;
        animation: none;
    }

    .phiyen-hero-text h1 {
        font-size: 1.1rem;
        line-height: 1.4;
        width: 100%;
        max-width: 100%;
    }

    .phiyen-hero-subtitle {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        opacity: 1;
        animation: none;
    }

    .phiyen-hero-subtitle p {
        font-size: 0.8rem;
        width: 100%;
        max-width: 100%;
        line-height: 1.4;
        margin-top: 5px !important;
    }

    .phiyen-booking-form {
        margin: 0.75rem auto;
        padding: 0.75rem;
    }

    .phiyen-booking-form h2 {
        font-size: 1.125rem;
    }

    .phiyen-booking-form p {
        font-size: 0.75rem;
    }

    .phiyen-booking-field {
        padding: 0.5rem 0.75rem;
    }

    .phiyen-booking-field-label {
        font-size: 0.75rem;
    }

    .phiyen-booking-field-value {
        font-size: 0.875rem;
    }

    .phiyen-booking-promo,
    .phiyen-booking-button {
        height: 45px;
    }

    .phiyen-booking-button p {
        font-size: 1.125rem;
    }

    .phiyen-section {
        padding: 1rem 0;
    }

    .phiyen-intro-title {
        font-size: 1.25rem;
    }

    .phiyen-intro-desc {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .phiyen-intro-image {
        min-height: 200px;
    }

    .phiyen-nature {
        gap: 1rem;
    }

    .phiyen-nature-divider {
        font-size: 1.25rem;
    }

    .phiyen-nature-image {
        min-height: 250px;
    }

    .phiyen-nature-overlay {
        min-height: 250px;
        padding: 1rem;
        padding-bottom: 70px;
    }

    .phiyen-nature-overlay-title {
        font-size: 1rem;
        top: 30px;
    }

    .phiyen-nature-overlay-subtitle {
        font-size: 0.875rem;
        top: 70px;
        letter-spacing: 1px;
    }

    .phiyen-nature-overlay-text {
        font-size: 0.75rem;
        top: 110px;
    }

    .phiyen-nature-overlay-footer {
        position: absolute;
        top: auto;
        bottom: 15px;
        left: 1rem;
        right: 1rem;
        padding: 0;
        width: auto;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .phiyen-nature-overlay-line {
        width: 100%;
        order: 1;
    }

    .phiyen-nature-overlay-line div {
        width: 100% !important;
        height: 2px;
    }

    .phiyen-nature-overlay-footer p {
        order: 2;
        width: 100%;
        text-align: center;
        font-size: 0.875rem;
    }

    .phiyen-rooms-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .phiyen-rooms-carousel {
        height: 220px;
        max-width: 100%;
    }

    .phiyen-rooms-slider {
        max-width: 100%;
        padding: 0;
    }

    .phiyen-rooms-dots {
        bottom: 1rem;
    }

    .phiyen-room-card.center,
    .phiyen-room-card.pos0 {
        width: 220px;
        max-width: calc(100vw - 80px);
        height: 220px;
    }

    .phiyen-room-card.pos-1,
    .phiyen-room-card.pos1 {
        width: 120px;
        height: 220px;
    }

    .phiyen-room-card.pos-2,
    .phiyen-room-card.pos2 {
        width: 80px;
        height: 220px;
    }

    .phiyen-room-card.side {
        width: 60px;
        height: 220px;
    }

    .phiyen-room-image {
        height: 100%;
        max-width: 100%;
    }

    .phiyen-rooms-nav {
        width: 30px;
        height: 220px;
        flex-shrink: 0;
    }

    .phiyen-rooms-nav i {
        font-size: 16px;
    }

    .phiyen-room-label {
        font-size: 0.875rem;
        bottom: 8px;
    }

    .phiyen-rooms-info {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .phiyen-rooms-name {
        font-size: 1.125rem;
    }

    .phiyen-rooms-desc {
        font-size: 0.8125rem;
    }

    .phiyen-rooms-btn p {
        font-size: 0.875rem;
    }

    .phiyen-tours-title {
        font-size: 1.25rem;
    }

    .phiyen-tour-image {
        height: 200px;
    }

    .phiyen-tour-title {
        font-size: 1rem;
    }

    .phiyen-tour-desc {
        font-size: 0.8125rem;
        -webkit-line-clamp: 2;
    }

    .phiyen-tour-btn p {
        font-size: 1rem;
    }

    .phiyen-events-title {
        font-size: 1.25rem;
    }

    .phiyen-events-tab {
        padding: 0.5rem 0.75rem;
    }

    .phiyen-events-tab p {
        font-size: 0.875rem;
    }

    .phiyen-events-desc {
        font-size: 0.8125rem;
    }

    .phiyen-events-slider {
        height: 250px;
    }

    .phiyen-events-slide {
        height: 400px;
        top: -75px;
    }

    .phiyen-events-nav {
        width: 25px;
        height: 150px;
    }

    .phiyen-events-nav i {
        font-size: 20px;
    }

    .phiyen-experiences-title {
        font-size: 1.25rem;
    }

    .phiyen-experiences-bg {
        height: 400px;
    }

    .phiyen-experiences-bg img {
        height: 400px;
    }

    .phiyen-experiences-overlay {
        height: 400px;
    }

    .phiyen-experience-card {
        max-width: 100%;
        height: 300px;
    }

    .phiyen-experience-image {
        width: 500px;
        height: 300px;
        left: -110px;
    }

    .phiyen-experience-title {
        font-size: 0.875rem;
        top: 260px;
    }

    .phiyen-amenities-title {
        font-size: 1.25rem;
    }

    .phiyen-amenities-desc {
        font-size: 0.875rem;
    }

    .phiyen-amenities-btn {
        padding: 0.5rem 1.5rem;
    }

    .phiyen-amenities-btn p {
        font-size: 0.875rem;
    }

    .phiyen-amenity-item {
        height: 200px !important;
    }

    .phiyen-promotions-title {
        font-size: 1.25rem;
    }

    .phiyen-promotion-image {
        height: 250px;
    }

    .phiyen-promotion-title {
        font-size: 1.125rem;
    }

    .phiyen-promotion-desc {
        font-size: 0.8125rem;
        -webkit-line-clamp: 2;
    }

    .phiyen-promotion-link {
        font-size: 1rem;
    }

    /* Adjustments for smaller screens */
    .phiyen-mobile-nav a {
        font-size: 1.2rem;
        padding: 8px 15px;
    }

    .phiyen-mobile-lang-options {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
}

/* Màn hình rất nhỏ (max-width: 390px) */
@media (max-width: 390px) {
    .phiyen-container {
        padding: 0 0.5rem;
    }

    .phiyen-hero-text {
        top: 50%;
        transform: translateY(-50%);
    }

    .phiyen-hero-text h1 {
        font-size: 1.125rem;
    }

    .phiyen-hero-subtitle {
        top: calc(50% + 40px);
        transform: translateY(-50%);
    }

    .phiyen-hero-subtitle p {
        font-size: 0.8125rem;
    }

    .phiyen-intro-title {
        font-size: 1.125rem;
    }

    .phiyen-nature-overlay-title {
        font-size: 0.875rem;
    }

    .phiyen-rooms-title,
    .phiyen-tours-title,
    .phiyen-events-title,
    .phiyen-experiences-title,
    .phiyen-amenities-title,
    .phiyen-promotions-title {
        font-size: 1.125rem;
    }

    .phiyen-rooms-dots {
        bottom: 1rem;
    }

    .phiyen-room-card.center,
    .phiyen-room-card.pos0 {
        width: 180px;
        max-width: calc(100vw - 70px);
        height: 180px;
    }

    .phiyen-room-card.pos-1,
    .phiyen-room-card.pos1 {
        width: 100px;
        height: 180px;
    }

    .phiyen-room-card.pos-2,
    .phiyen-room-card.pos2 {
        width: 70px;
        height: 180px;
    }

    .phiyen-room-card.side {
        width: 50px;
        height: 180px;
    }

    .phiyen-room-image {
        height: 100%;
        max-width: 100%;
    }

    .phiyen-rooms-carousel {
        height: 180px;
        max-width: 100%;
    }

    .phiyen-rooms-slider {
        max-width: 100%;
        padding: 0;
    }

    .phiyen-rooms-nav {
        width: 25px;
        height: 180px;
        flex-shrink: 0;
    }

    .phiyen-rooms-nav i {
        font-size: 14px;
    }
}

/* Position first social button above messenger */
.btn-social:first-of-type {
    bottom: 150px;
}

/* Position second social button with consistent spacing */
.btn-social:nth-of-type(2) {
    bottom: 230px;
}

/* Position third social button with consistent spacing */
.btn-social:nth-of-type(3) {
    bottom: 310px;
}

/* Position fourth social button with consistent spacing */
.btn-social:nth-of-type(4) {
    bottom: 390px;
}

/* Fallback for any additional social buttons */
.btn-social {
    bottom: 150px;
    /* Same as messenger button as fallback */
    right: 20px;
    position: fixed;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: block;
}

/* Ẩn floating button và btn-social trên mobile */
@media (max-width: 768px) {

    .phiyen-floating,
    .btn-social {
        display: none !important;
    }
}

#messages-facebook {
    display: none !important;
}

/* ===== WEDDING PAGE STYLES ===== */
.phiyen-wedding-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F7F5EF 0%, #E8E5DD 100%);
}

.phiyen-wedding-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.phiyen-wedding-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #7A8F5C;
    margin-bottom: 1rem;
}

.phiyen-wedding-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E1F;
    margin-bottom: 3rem;
    font-family: serif;
    line-height: 1.2;
}

.phiyen-wedding-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.phiyen-wedding-intro-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A4A4A;
}

.phiyen-wedding-intro-content p {
    margin-bottom: 1.5rem;
}

.phiyen-wedding-intro-content p:last-child {
    margin-bottom: 0;
}

.phiyen-wedding-intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
}

.phiyen-wedding-intro-note {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

/* Wedding Services */
.phiyen-wedding-services {
    padding: 80px 0;
    background-color: #F3EEDC;
}

.phiyen-wedding-service-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.phiyen-wedding-service-item:last-child {
    margin-bottom: 0;
}

.phiyen-wedding-service-item.left-image {
    flex-direction: row;
}

.phiyen-wedding-service-item.right-image {
    flex-direction: row-reverse;
}

.phiyen-wedding-service-image {
    flex: 1.5;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.phiyen-wedding-carousel {
    width: 100%;
    height: 500px;
}

.phiyen-wedding-carousel-item {
    height: 500px;
}

.phiyen-wedding-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Owl Carousel Custom Styles for Wedding */
.phiyen-wedding-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    width: 100%;
    left: -1%;
}

.phiyen-wedding-carousel .owl-nav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.phiyen-wedding-carousel .owl-nav button:hover {
    background-color: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1);
}

.phiyen-wedding-carousel .owl-nav button.owl-prev,
.phiyen-wedding-carousel .owl-nav button.owl-next {
    font-size: 24px;
    color: #7A8F5C;
}

.phiyen-wedding-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.phiyen-wedding-carousel .owl-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.phiyen-wedding-carousel .owl-dots button.active {
    background-color: rgba(255, 255, 255, 1) !important;
    width: 32px;
    border-radius: 6px;
}

.phiyen-wedding-service-content {
    flex: 1;
    padding: 2rem;
}

.phiyen-wedding-service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E1F;
    margin-bottom: 1.5rem;
    font-family: serif;
    line-height: 1.3;
}

.phiyen-wedding-service-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 1rem !important;
}

.phiyen-wedding-service-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--button-color);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--button-color);
}

.phiyen-wedding-service-btn:hover {
    background-color: transparent;
    color: var(--button-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--button-color-rgb), 0.3);
}

/* Quality Section */
.phiyen-wedding-quality {
    padding: 100px 0;
    background: linear-gradient(135deg, #7A8F5C 0%, #5A6F4C 100%);
    color: #FFFFFF;
}

.phiyen-wedding-quality-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.phiyen-wedding-quality-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.phiyen-wedding-quality-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: serif;
    line-height: 1.3;
}

.phiyen-wedding-quality-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.phiyen-wedding-quality-text p {
    margin-bottom: 1.5rem;
}

.phiyen-wedding-quality-text p:last-child {
    margin-bottom: 0;
}

.phiyen-wedding-quality-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #FFFFFF;
    color: #7A8F5C;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
}

.phiyen-wedding-quality-btn:hover {
    background-color: transparent;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Responsive Wedding Page */
@media (max-width: 1024px) {
    .phiyen-wedding-title {
        font-size: 2.5rem;
    }

    .phiyen-wedding-service-item {
        flex-direction: column !important;
        gap: 2rem;
    }

    .phiyen-wedding-service-image {
        width: 100%;
    }

    .phiyen-wedding-carousel,
    .phiyen-wedding-carousel-item {
        height: 350px;
    }

    .phiyen-wedding-service-content {
        padding: 1rem;
    }

    .phiyen-wedding-service-title {
        font-size: 2rem;
    }

    .phiyen-wedding-quality-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .phiyen-wedding-hero {
        padding: 100px 0 60px;
    }

    .phiyen-wedding-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .phiyen-wedding-intro-text {
        font-size: 1rem;
    }

    .phiyen-wedding-services {
        padding: 60px 0;
    }

    .phiyen-wedding-service-item {
        margin-bottom: 4rem;
        padding: 0 1rem;
    }

    .phiyen-wedding-carousel,
    .phiyen-wedding-carousel-item {
        height: 350px;
    }

    .phiyen-wedding-carousel .owl-nav button {
        width: 40px;
        height: 40px;
    }

    .phiyen-wedding-service-title {
        font-size: 1.75rem;
    }

    .phiyen-wedding-service-desc {
        font-size: 1rem;
    }

    .phiyen-wedding-quality {
        padding: 60px 0;
    }

    .phiyen-wedding-quality-title {
        font-size: 1.75rem;
    }

    .phiyen-wedding-quality-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .phiyen-wedding-title {
        font-size: 1.75rem;
    }

    .phiyen-wedding-carousel,
    .phiyen-wedding-carousel-item {
        height: 280px;
    }

    .phiyen-wedding-carousel .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .phiyen-wedding-carousel .owl-dots {
        bottom: 10px;
    }

    .phiyen-wedding-service-title {
        font-size: 1.5rem;
    }

    .phiyen-wedding-quality-title {
        font-size: 1.5rem;
    }
}

/* Toolbar Redesign - Override old styles */
.toolbar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 60px !important;
    display: flex !important;
    z-index: 500 !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    background: transparent !important;
    padding: 0 !important;
    max-height: none !important;
}

.toolbar ul {
    display: none !important;
}

.toolbar-left {
    flex: 1;
    background-color: var(--c1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
}

.toolbar-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.toolbar-icon:hover {
    color: #FFA500;
    transform: scale(1.1);
}

.toolbar-zalo-icon {
    font-weight: 700;
    font-size: 20px;
    color: white;
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.toolbar-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.toolbar-right {
    flex: 1;
    background-color: var(--button-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toolbar-right:hover {
    background-color: var(--c1);
}

.toolbar-right span {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive cho toolbar */
@media (max-width: 480px) {
    .toolbar {
        height: 55px;
    }

    .toolbar-icon {
        font-size: 20px;
    }

    .toolbar-right span {
        font-size: 1rem;
    }

    .toolbar-divider {
        height: 35px;
    }
}

/* Custom styling for Owl Carousel Navigation */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: transparent !important;
    border: none !important;
    color: var(--button-color) !important;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    color: #ffffff !important;
    border-radius: 50%;
}

/* Ensure icons/text inside are sized correctly */
.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
    font-size: 2rem;
    line-height: 1;
}