@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-color: #1e352f;
    --primary-light: #2c4d44;
    --primary-dark: #0f1c19;
    --accent-color: #c5a059;
    --accent-light: #d8ba82;
    --text-dark: #222222;
    --text-muted: #666666;
    --text-light: #ffffff;
    --bg-light: #faf9f6;
    --bg-card: #ffffff;
    --bg-overlay: rgba(30, 53, 47, 0.7);
    --border-color: #e5e2db;
    --font-ko: 'Noto Sans KR', sans-serif;
    --font-en: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(30, 53, 47, 0.1);
    --shadow-luxury: 0 25px 60px rgba(15, 28, 25, 0.15);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-ko);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 25px 0;
    background: transparent;
}

header.scrolled {
    background: rgba(30, 53, 47, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.logo-sub {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-smooth);
    opacity: 0.9;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-color);
    opacity: 1;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--text-light);
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('images/exterior.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 28, 25, 0.6) 0%, rgba(15, 28, 25, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    width: 90%;
    max-width: 900px;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle-en {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-desc {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    padding: 15px 35px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px 35px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-down span {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

/* Sections General */
section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.container-wide {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle-en {
    font-family: var(--font-en);
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-ko);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-header.left-aligned {
    text-align: left;
}

.section-header.left-aligned .section-title::after {
    left: 0;
    transform: none;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-intro-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-intro-title span {
    color: var(--accent-color);
    font-weight: 600;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.about-feature-item {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.about-feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.about-feature-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.about-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-luxury);
    object-fit: cover;
    height: 500px;
}

.about-img-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-luxury);
    text-align: center;
    border: 1px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-img-badge .badge-num {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.about-img-badge .badge-txt {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.room-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--accent-color);
}

.room-image-box {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.room-card:hover .room-image {
    transform: scale(1.08);
}

.room-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(30, 53, 47, 0.85);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    backdrop-filter: blur(5px);
}

.room-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-family: var(--font-en);
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.room-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.room-price-box {
    display: flex;
    flex-direction: column;
}

.room-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.room-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-en);
}

.room-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.room-btn {
    background-color: transparent;
    border: 1px solid var(--primary-light);
    color: var(--primary-color);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.room-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

/* Facilities Section */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.facility-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.facility-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: var(--transition-smooth);
}

.facility-card:hover .facility-bg {
    transform: scale(1.08);
}

.facility-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 28, 25, 0.1) 0%, rgba(15, 28, 25, 0.9) 100%);
    z-index: -1;
}

.facility-content {
    padding: 40px;
    color: var(--text-light);
}

.facility-num {
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
}

.facility-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.facility-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Interactive Booking & Calculator Section */
.booking-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    background-color: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-luxury);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.booking-calc-side {
    padding: 50px;
    border-right: 1px solid var(--border-color);
}

.booking-form-side {
    padding: 50px;
    background-color: #faf9f6;
}

.calc-title, .form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-title i, .form-title i {
    color: var(--accent-color);
}

.calc-group, .form-group {
    margin-bottom: 25px;
}

.calc-label, .form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.calc-select, .form-input, .form-textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    font-family: var(--font-ko);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    outline: none;
}

.calc-select:focus, .form-input:focus, .form-textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.calc-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.calc-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #faf9f6;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-item input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.checkbox-price {
    margin-left: auto;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.85rem;
}

.calc-result-box {
    margin-top: 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid var(--accent-color);
}

.result-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.result-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.result-nights {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.result-total-price {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-en);
    color: var(--accent-color);
}

/* Reviews Section */
.reviews-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
    min-width: 100%;
    padding: 40px;
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.review-stars {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.review-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
}

.review-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.review-dot.active {
    background-color: var(--accent-color);
    width: 25px;
    border-radius: 5px;
}

/* Location Section */
.location-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

#map {
    height: 480px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    z-index: 1;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.info-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.info-card-title i {
    color: var(--accent-color);
}

.info-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.info-card-text strong {
    color: var(--text-dark);
}

/* Modal Popup Window */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 28, 25, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-card);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 12px;
    overflow-y: auto;
    box-shadow: var(--shadow-luxury);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--accent-color);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(30, 53, 47, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.modal-img-container {
    height: 400px;
    position: relative;
}

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

.modal-header-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(15, 28, 25, 0.95), transparent);
    color: var(--text-light);
}

.modal-room-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.modal-room-sub {
    font-family: var(--font-en);
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 2px;
}

.modal-body {
    padding: 40px;
}

.modal-section {
    margin-bottom: 30px;
}

.modal-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
}

.modal-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background-color: #faf9f6;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.spec-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
}

.modal-amenities-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.amenity-item i {
    color: var(--accent-color);
}

.modal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.modal-table th, .modal-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.modal-table th {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.modal-table td {
    font-size: 0.9rem;
}

.modal-table tr:hover td {
    background-color: #faf9f6;
}

/* Floating Utility Bar */
.floating-bar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-btn:hover {
    transform: translateY(-5px);
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.float-btn i {
    font-size: 1.4rem;
}

.float-btn.float-reserve {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.float-btn.float-reserve:hover {
    background-color: var(--accent-light);
}

/* Footer Section */
footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-info-col .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
    margin-top: 4px;
}

.contact-item span strong {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 3000;
    transition: var(--transition-smooth);
    opacity: 0;
    pointer-events: none;
}

.toast-container.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.toast i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Keyframes Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .booking-calc-side {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-img-wrapper {
        order: -1;
    }
    .about-image {
        height: 380px;
    }
    .about-img-badge {
        bottom: -20px;
        left: 20px;
        padding: 20px;
    }
    .location-layout {
        grid-template-columns: 1fr;
    }
    #map {
        height: 350px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
        background: rgba(30, 53, 47, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    header.scrolled {
        padding: 12px 0;
    }
    .mobile-toggle {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-menu.active {
        max-height: 300px;
    }
    .nav-link {
        display: block;
        padding: 15px 5%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-btn {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .hero-subtitle-en {
        font-size: 1.3rem;
    }
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    .modal-specs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .modal-amenities-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .modal-close-btn {
        top: 10px;
        right: 10px;
    }
    .modal-img-container {
        height: 250px;
    }
    .modal-header-info {
        padding: 20px;
    }
    .modal-room-name {
        font-size: 1.6rem;
    }
    .modal-body {
        padding: 20px;
    }
    .calc-dates {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .floating-bar {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 45px;
        height: 45px;
    }
    .float-btn i {
        font-size: 1.1rem;
    }
}
