@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;800&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E2A7;
    --gold-dark: #AA7C11;
    --bg-black: #080808;
    --bg-dark: #121212;
    --bg-card: #1C1C1C;
    --bg-card-hover: #262626;
    --text-white: #F9F9F9;
    --text-muted: #B3B3B3;
    --glass-bg: rgba(18, 18, 18, 0.75);
    --glass-border: rgba(212, 175, 55, 0.25);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Cinzel', serif;
    --font-sub: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

select option {
    background-color: #ffffff !important;
    color: #121212 !important;
}


/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-weight: 600;
}

.sub-title {
    font-family: var(--font-sub);
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    display: block;
}

/* --- STUNNING GRADIENTS & BORDERS --- */
.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-black);
    font-family: var(--font-sub);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    white-space: nowrap;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--gold);
    font-family: var(--font-sub);
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

/* --- GLASSMORPHISM --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

/* --- NAVIGATION HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: var(--bg-black);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
}

.logo-sub {
    font-family: var(--font-sub);
    font-size: 0.65rem;
    letter-spacing: 4.5px;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-item a {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-item a:hover {
    color: var(--gold);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switch {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-family: var(--font-sub);
    transition: var(--transition);
}

.lang-switch:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-white);
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.6) 0%, rgba(8, 8, 8, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    margin: 5rem auto 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* --- FLOATING BOOKING BAR --- */
.quick-booking {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 10;
    padding: 1.5rem 2rem;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1.5rem;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input, .form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

/* --- SECTIONS GENERAL --- */
section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-container {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gold);
    border-radius: 8px;
    max-width: 180px;
    background: var(--bg-black);
}

.about-badge h3 {
    font-size: 2.5rem;
    color: var(--gold);
}

.about-badge p {
    font-size: 0.75rem;
    font-family: var(--font-sub);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    color: var(--gold);
    font-size: 1.3rem;
}

.feature-text {
    font-family: var(--font-sub);
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- ROOMS & SUITES --- */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.filter-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-family: var(--font-sub);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.room-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.room-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.room-card:hover .room-img {
    transform: scale(1.1);
}

.room-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-black);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sub);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    z-index: 10;
}

.room-details {
    padding: 2rem;
}

.room-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.room-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.room-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.room-more {
    font-family: var(--font-sub);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.room-more:hover {
    color: var(--gold-light);
}

/* --- EXPERIENCES (SPA & DINING) --- */
.exp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}

.exp-row.reversed {
    direction: rtl;
}

.exp-row.reversed .exp-text {
    direction: ltr;
}

.exp-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.exp-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.exp-img-wrapper:hover .exp-img {
    transform: scale(1.05);
}

.exp-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.exp-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.exp-menu-list {
    list-style: none;
}

.exp-menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 0.8rem 0;
    font-family: var(--font-sub);
}

.exp-menu-name {
    font-weight: 500;
    color: var(--text-white);
}

.exp-menu-price {
    color: var(--gold);
    font-weight: 600;
}

/* --- INTERACTIVE BOOKING ENGINE --- */
.booking-wizard {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 4rem;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: translateY(-50%);
}

.wizard-step-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 2;
    transform: translateY(-50%);
    width: 0%;
    transition: var(--transition);
}

.step-node {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 3;
    transition: var(--transition);
    color: var(--text-muted);
}

.step-node.active {
    border-color: var(--gold);
    background: var(--bg-black);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.step-node.completed {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--bg-black);
}

.wizard-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 3rem;
    min-height: 380px;
    margin-bottom: 2rem;
}

.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.wizard-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.panel-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.wizard-room-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.room-select-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.room-select-card.selected {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.room-select-card::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.room-select-card.selected::after {
    opacity: 1;
    transform: scale(1);
}

.room-select-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding-right: 2rem;
}

.room-select-card .price {
    color: var(--gold);
    font-weight: 600;
    margin-top: 1rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.extra-option {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding-right: 4.5rem;
}

.extra-option.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.03);
}

.extra-option::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.extra-option::before {
    content: '';
    position: absolute;
    right: 42px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: var(--transition);
    z-index: 2;
}

.extra-option.selected::after {
    background: var(--gold);
    border-color: var(--gold);
}

.extra-option.selected::before {
    right: 24px;
    background: var(--bg-black);
}

.extra-info h4 {
    font-size: 0.95rem;
}

.extra-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.extra-price {
    font-family: var(--font-sub);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1.5rem;
}

.summary-details {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item.total {
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    padding-top: 1.5rem;
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- HISTORIC GUIDE (GORDION) --- */
.history-section {
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 50%, var(--bg-black) 100%);
}

.history-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.history-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.history-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.history-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.history-card {
    background: var(--bg-card);
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    border-radius: 0 6px 6px 0;
    transition: var(--transition);
}

.history-card:hover {
    transform: translateX(10px);
}

.history-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.history-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, 0.85);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    transform: translateY(10px);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--gold);
}

.gallery-overlay p {
    font-size: 0.75rem;
    font-family: var(--font-sub);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- TESTIMONIALS --- */
.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.review-card.active {
    opacity: 1;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--gold);
}

.review-author span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* --- CONTACT & MAP --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: stretch;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.4rem;
    color: var(--gold);
    padding-top: 0.2rem;
}

.contact-text h4 {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Custom Styled Map */
.map-card {
    height: 250px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #181818 0%, #202020 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.map-placeholder-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.map-btn {
    margin-top: 1.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

.contact-form-panel {
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-panel form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.input-group input, .input-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 0.9rem;
    border-radius: 4px;
    transition: var(--transition);
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

/* --- FOOTER --- */
footer {
    background: var(--bg-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 2rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-muted);
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-newsletter-row {
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-row {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .footer-newsletter-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        gap: 1.2rem;
    }
    
    .footer-newsletter-row > div {
        text-align: center !important;
        max-width: 100% !important;
    }
    
    .newsletter-form {
        align-items: center;
    }
    
    .newsletter-row {
        width: 100%;
    }
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 0.8rem;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- MODAL DIALOGS (ROOM DETAILS / BOOKING SUCCESS) --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

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

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10;
    border-radius: 8px;
    animation: slideUp 0.5s ease-out;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-white);
    cursor: pointer;
    z-index: 15;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold);
}

.modal-body {
    padding: 3rem;
}

.modal-body h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.modal-room-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-sub);
    font-size: 0.85rem;
}

.modal-feature i {
    color: var(--gold);
}

/* Success Animations */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--gold);
}

.check-icon::after {
    content: '';
    position: absolute;
    top: 38px;
    left: 17px;
    width: 15px;
    height: 30px;
    border-right: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
    transform: rotate(45deg);
}

/* --- ANIMATIONS & TRANSITIONS --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* Scroll reveal helper */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .about-grid, .contact-grid, .history-banner, .exp-row {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .exp-row.reversed {
        direction: ltr;
    }
    
    .exp-row.reversed .exp-text {
        direction: ltr;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        padding: 13rem 1rem 3rem 1rem;
    }
    
    .hero-content {
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .quick-booking {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 600px;
        margin: 1.5rem auto 0 auto;
    }
    
    .booking-form {
        grid-template-columns: 1fr 1fr;
    }
    
    .booking-form button {
        grid-column: span 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-black);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .booking-form button {
        grid-column: span 1;
    }
    
    .filter-tabs {
        flex-wrap: wrap;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .about-badge {
        display: none;
    }
    
    .panel-row, .wizard-room-selector, .extras-grid, .form-row {
        grid-template-columns: 1fr;
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --- FLOATING CONTACT WIDGET --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1500;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 0 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.float-btn i {
    font-size: 1.5rem !important;
}

.float-whatsapp {
    background-color: #25D366;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.float-phone {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-phone:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Pulsing Ripple Animation */
.float-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: ripple 2s infinite;
    pointer-events: none;
}

.float-whatsapp::after {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
}

.float-phone::after {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

/* Hide on printing */
@media print {
    .floating-contact {
        display: none;
    }
}

/* --- ROOM DETAIL SUBPAGE LAYOUT --- */
.room-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.room-detail-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.room-detail-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.room-detail-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-white);
}

.room-detail-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2.5rem;
    position: sticky;
    top: 100px;
    height: fit-content;
    text-align: center;
}

.room-detail-price-box {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .room-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .room-detail-img {
        height: 350px;
    }
    
    .room-detail-sidebar {
        position: relative;
        top: 0;
    }
}

/* --- ADVANCED DETAIL PAGE ADDITIONS --- */
.room-gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.room-thumbnail {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.5;
}

.room-thumbnail.active, .room-thumbnail:hover {
    border-color: var(--gold);
    opacity: 1;
    transform: scale(1.05);
}

.mini-booking-form {
    margin-top: 1.8rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mini-booking-form label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    display: block;
    font-family: var(--font-sub);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-booking-form input, .mini-booking-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.mini-booking-form input:focus, .mini-booking-form select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.mini-booking-calc {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 1.2rem;
    margin-top: 1.2rem;
    border: 1px dashed rgba(212, 175, 55, 0.2);
}

.mini-booking-calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
}

.mini-booking-calc-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.6rem;
    margin-top: 0.6rem;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.05rem;
}

.policy-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.8rem;
    border-radius: 6px;
    margin-top: 2.5rem;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: var(--text-white);
}

.policy-item:last-child {
    margin-bottom: 0;
}

.policy-icon {
    color: var(--gold);
    font-size: 1.2rem;
    width: 24px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-sub);
    font-size: 0.95rem;
    color: var(--text-white);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-answer {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.6rem;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-toggle {
    transition: var(--transition);
    color: var(--gold);
}

@media (max-width: 768px) {
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-sub {
        font-size: 0.55rem;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .nav-actions .btn-gold {
        display: none !important;
    }
    
    .hero {
        padding-top: 12.5rem;
    }
}

/* --- GOOGLE TRANSLATE CUSTOM STYLE OVERRIDES --- */
iframe.goog-te-banner-frame, 
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}
body {
    top: 0 !important;
}
.goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
#google_translate_element {
    display: none !important;
}



