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

:root {
    --primary-navy: #0b1329;
    --secondary-navy: #1c2541;
    --dark-blue: #0f172a;
    --gold: #b4975a;
    --gold-light: #c5a880;
    --gold-dark: #8e7343;
    --gold-hover: #d4af37;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --border-color: #e2e8f0;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

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

/* Common Layout Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-center: center;
    text-align: center;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 36px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-gold {
    background-color: var(--gold);
    color: #ffffff;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(180, 151, 90, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold-light);
}

.btn-outline:hover {
    background-color: var(--gold-light);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--primary-navy);
    color: #ffffff;
}

.btn-dark:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-navy);
    color: var(--text-light);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info svg {
    width: 14px;
    height: 14px;
    fill: var(--gold-light);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-social a:hover {
    color: var(--gold-light);
}

.top-bar-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.lang-select {
    background: transparent;
    color: inherit;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.lang-select option {
    background-color: var(--primary-navy);
    color: white;
}

/* Header */
header {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

header.sticky {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-container::after {
    content: '';
    width: 140px; /* balances out logo on the left to keep menu links centered */
    display: block;
}

.logo {
    width: 180px;
    height: auto;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--secondary-navy);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-dark);
}

.nav-container .btn-outline {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.nav-container .btn-outline:hover {
    background-color: var(--gold-dark);
    color: #ffffff;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-navy);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 19, 41, 0.7), rgba(11, 19, 41, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 80px;
}

.hero-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 15px;
    display: block;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

/* Booking Bar */
.booking-bar-wrapper {
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.booking-bar {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 20px;
    align-items: flex-end;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-field label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.booking-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px 15px;
    gap: 10px;
}

.booking-input-wrapper svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.booking-input-wrapper input,
.booking-input-wrapper select {
    width: 100%;
    background: transparent;
    color: var(--text-dark);
    font-weight: 500;
}

.booking-bar button {
    height: 48px;
    white-space: nowrap;
    padding: 0 35px;
}

/* About Section */
.about-section {
    padding-top: 130px; /* offset the overlapping booking bar */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-content-inner {
    padding-left: 20px;
}

.about-content-inner .section-title {
    text-align: left;
}

.about-content-inner .section-title::after {
    margin: 15px 0 0;
}

.about-description {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon-wrapper {
    width: 45px;
    height: 45px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
}

.feature-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: var(--gold-dark);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper svg {
    fill: #ffffff;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
}

/* Rooms Section */
.rooms-section {
    background-color: var(--bg-light);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.room-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.room-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.room-details {
    padding: 25px;
}

.room-details h3 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

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

.room-meta svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.room-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-actions .btn {
    width: 100%;
    text-align: center;
}

.rooms-action-wrapper {
    margin-top: 50px;
}

/* Services Section */
.services-section {
    background-color: var(--primary-navy);
    color: #ffffff;
}

.services-section .section-title {
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.service-card:hover {
    background-color: var(--gold);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: #ffffff;
}

.service-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: var(--gold-light);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper svg {
    fill: var(--primary-navy);
}

.service-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Gallery Section */
.gallery-section {
    background-color: #ffffff;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--bg-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--gold);
    color: white;
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 250px;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 41, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    width: 35px;
    height: 35px;
    fill: var(--gold-light);
}

.gallery-action {
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--primary-navy);
    background-image: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: white;
    position: relative;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-card svg.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
    fill: rgba(180, 151, 90, 0.15);
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 15px;
}

.testimonial-rating svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 15px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

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

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

/* Footer Section */
footer {
    background-color: #070c1a;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr 1.5fr;
    gap: 30px;
}

.footer-col h3 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-about .footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--primary-navy);
    border-color: var(--gold);
}

.footer-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-light);
    flex-shrink: 0;
}

.footer-map-col {
    display: flex;
    flex-direction: column;
}

.footer-map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--gold-light);
    box-shadow: var(--shadow-md);
    height: 180px;
    width: 100%;
}

.footer-bottom {
    padding: 25px 0;
    font-size: 13px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 41, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img {
    border-radius: 8px;
    border: 3px solid var(--gold-light);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Booking Success Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 41, 0.8);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.booking-modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border-top: 5px solid var(--gold);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.booking-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.booking-modal-icon svg {
    width: 30px;
    height: 30px;
    fill: #25d366;
}

.booking-modal-content h3 {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.booking-modal-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 14px;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

/* SEO Subpage Specific CSS styles */
.seo-article {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: #334155;
    line-height: 1.8;
}

.seo-article h2 {
    font-size: 28px;
    color: var(--primary-navy);
    margin: 40px 0 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.seo-article p {
    margin-bottom: 20px;
}

.seo-article ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

.seo-article li {
    margin-bottom: 10px;
}

.seo-faq {
    margin-top: 50px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 15px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .booking-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-bar button {
        grid-column: span 2;
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        top: 0;
        background-color: #ffffff;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-container {
        padding: 10px 15px;
    }

    .nav-container::after {
        display: none;
    }

    .logo img {
        height: 35px;
    }

    .nav-container .btn-outline {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .top-bar {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 18px;
    }

    .hero {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 95px 0 25px;
        margin-bottom: 0;
        background-image: none !important;
        background-color: #070c1b !important;
        position: relative;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 500px;
        background: linear-gradient(to bottom, rgba(11, 19, 41, 0.75), rgba(11, 19, 41, 0.45)), url('../images/room_deluxe.png') no-repeat center/cover !important;
        z-index: 1;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .booking-bar-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        padding: 0 15px;
        margin-top: 40px;
        z-index: 2;
    }
    
    .booking-bar {
        grid-template-columns: 1fr;
    }
    
    .booking-bar button {
        grid-column: span 1;
    }
    
    .about-section {
        padding-top: 50px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col:first-child {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* ==========================================================================
   Premium Rooms & Interactive Floor Plan Styles
   ========================================================================== */

/* Floor Plan Tab styles */
.floor-tab {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border: 1px solid var(--border-color) !important;
    background-color: #ffffff !important;
    color: var(--text-dark) !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 10px 24px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none !important;
}

.floor-tab.active {
    background-color: var(--primary-navy) !important;
    border-color: var(--primary-navy) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(11, 19, 41, 0.2) !important;
}

.floor-tab:hover:not(.active) {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    transform: translateY(-2px);
}

/* Floor Room Cards */
.floor-room-card {
    border-radius: 12px !important;
    padding: 24px !important;
    text-align: center !important;
    border: 1px solid var(--border-color) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 180px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: var(--shadow-sm) !important;
    position: relative;
    overflow: hidden;
}

.floor-room-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Specific Card Themes */
.floor-room-card.cadde-theme {
    background-color: #f8fafc !important;
    color: var(--primary-navy) !important;
    border: 1px solid #e2e8f0 !important;
}

.floor-room-card.cadde-theme:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow: 0 12px 24px rgba(148, 163, 184, 0.2) !important;
    border-color: #cbd5e1 !important;
}

.floor-room-card.deniz-theme {
    background: #fdfaf2 !important;
    color: #0b1329 !important;
    border: 2px solid #dfc39b !important;
}

.floor-room-card.deniz-theme:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow: 0 12px 24px rgba(197, 168, 128, 0.2) !important;
    border-color: #c5a880 !important;
    background-color: #fdf6e7 !important;
}

.floor-room-card.suit-theme {
    background: linear-gradient(135deg, #1e293b 0%, #0b1329 100%) !important;
    color: #ffffff !important;
    border: 1px solid var(--gold) !important;
}

.floor-room-card.suit-theme:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow: 0 12px 24px rgba(11, 19, 41, 0.45) !important;
    border-color: #ffffff !important;
}

/* Room details badge inside floor cards */
.room-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}
.floor-room-card.cadde-theme .room-badge {
    background-color: #e2e8f0;
    color: #475569;
}
.floor-room-card.deniz-theme .room-badge {
    background-color: #c5a880 !important;
    color: #ffffff !important;
}
.floor-room-card.suit-theme .room-badge {
    background-color: var(--gold);
    color: var(--primary-navy);
}

/* Premium Homepage Room Card Overhaul */
.room-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border-color);
}

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

.room-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.room-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.room-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(11,19,41,0) 50%, rgba(11,19,41,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.room-card:hover .room-image-wrapper::after {
    opacity: 1;
}

/* Room badge tag on homepage image */
.room-image-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(11,19,41,0.85);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    border-left: 3px solid var(--gold);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Premium Overrides for Homepage Room Cards Layout
   ========================================================================== */

.room-details {
    padding: 25px !important;
    text-align: center !important;
}

.room-details h3 {
    font-size: 16px !important;
    color: var(--primary-navy) !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.room-meta {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding-bottom: 15px !important;
    margin-bottom: 20px !important;
    font-size: 12px !important;
    color: var(--text-dark) !important;
}

.room-meta span {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-align: center !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
}

.room-meta svg {
    width: 20px !important;
    height: 20px !important;
    fill: var(--gold) !important;
    opacity: 1 !important;
    display: block !important;
}

.room-card .btn-outline {
    background-color: transparent !important;
    color: var(--gold-dark) !important;
    border: 1.5px solid var(--gold-dark) !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 10px 20px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

.room-card .btn-outline:hover {
    background-color: var(--gold-dark) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.35) !important;
    transform: translateY(-2px) !important;
}

/* ==========================================================================
   PREMIUM FLATPICKR DATEPICKER & UPGRADED BOOKING BAR STYLES
   ========================================================================== */

/* Upgraded Translucent Booking Bar on Hero */
.booking-bar {
    background: rgba(11, 19, 41, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55) !important;
    padding: 30px 25px !important;
    transition: all 0.4s ease !important;
}

.booking-field label {
    color: var(--gold-light) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.booking-input-wrapper {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    gap: 12px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.booking-input-wrapper:focus-within,
.booking-input-wrapper.active {
    border-color: var(--gold-light) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.18) !important;
}

.booking-input-wrapper svg {
    width: 18px !important;
    height: 18px !important;
    fill: var(--gold-light) !important;
    opacity: 0.85 !important;
}

.booking-input-wrapper input,
.booking-input-wrapper select {
    color: #f8fafc !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    cursor: pointer !important;
    width: 100% !important;
}

.booking-input-wrapper select option {
    background-color: #0b1329 !important;
    color: #f8fafc !important;
}

.booking-bar button {
    height: 52px !important;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
    color: #070c1b !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 0 32px !important;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.booking-bar button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(197, 168, 128, 0.45) !important;
    opacity: 0.95 !important;
}

/* Premium Dark-Gold Calendar Styling for Flatpickr */
.flatpickr-calendar {
    background: #0b1329 !important;
    border: 1px solid var(--gold) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    overflow: hidden !important;
}

.flatpickr-calendar::before, 
.flatpickr-calendar::after {
    border-bottom-color: var(--gold) !important;
}

.flatpickr-months {
    background: #0b1329 !important;
    color: #f8fafc !important;
    padding-top: 6px !important;
}

.flatpickr-month {
    color: #f8fafc !important;
    fill: #f8fafc !important;
}

.flatpickr-current-month {
    color: #f8fafc !important;
    font-weight: 700 !important;
}

.flatpickr-current-month input.cur-year {
    font-weight: 700 !important;
}

.flatpickr-monthDropdown-months {
    font-weight: 700 !important;
    background: #0b1329 !important;
    color: #f8fafc !important;
}

.flatpickr-months .flatpickr-prev-month, 
.flatpickr-months .flatpickr-next-month {
    color: #f8fafc !important;
    fill: #f8fafc !important;
    padding: 10px !important;
}

.flatpickr-months .flatpickr-prev-month:hover, 
.flatpickr-months .flatpickr-next-month:hover {
    color: var(--gold-light) !important;
    fill: var(--gold-light) !important;
}

.flatpickr-weekday {
    color: var(--gold-light) !important;
    font-weight: 700 !important;
}

.flatpickr-day {
    color: #cbd5e1 !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    transition: all 0.15s ease !important;
}

.flatpickr-day:hover, 
.flatpickr-day:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

.flatpickr-day.today {
    border-color: var(--gold-light) !important;
    color: var(--gold-light) !important;
}

.flatpickr-day.today:hover {
    background: rgba(197, 168, 128, 0.15) !important;
    color: #ffffff !important;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange {
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
    color: #070c1b !important;
    border-color: transparent !important;
    font-weight: 800 !important;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: var(--gold-light) !important;
    color: #070c1b !important;
}

.flatpickr-day.disabled, 
.flatpickr-day.disabled:hover {
    color: rgba(255, 255, 255, 0.12) !important;
    background: transparent !important;
}

.flatpickr-day.inRange {
    background: rgba(197, 168, 128, 0.12) !important;
    box-shadow: none !important;
    color: #ffffff !important;
}