:root {
    --crimson: #C32026;
    --crimson-dark: #741721;
    --evergreen: #0F3A34;
    --evergreen-dark: #0D2F2B;
    --gold: #D4AF37;
    --star: #FFB400;
    --dark-gold: #B8860B;
    --text-dark: #1A1A1A;
    --text-light: #777777;
    --blue: #3498db;
    --light-blue: #5dade2;
    --gold: #D4AF37;
    --gold-light: #E8C55C;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-light: #6B7280;
    --gray: #4B5563;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.22);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gold-dark: #C7B8A2;
    --ivory: #F7F4EC;
    --charcoal: #1A1A1A;
    --mist: #E2E2E2;
    --smoke: #444444;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Google Translate Fixes */
.skiptranslate {
    display: none !important;
}

.notranslate {
    transform: none !important;
}

/* Hide Google Translate banner and toolbar */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-menu-frame {
    max-width: 100% !important;
}

.goog-te-menu2 {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Section Header Style */
.section-header {
    margin-bottom: 4rem;
}

/* Luxury Header */
.luxury-header {
    margin-bottom: 3rem;
    text-align: center;
}

.luxury-header-3-container {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.luxury-border-side {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--evergreen), transparent);
    opacity: 0.4;
}

.luxury-header-content {
    padding: 0 4rem;
    text-align: center;
    flex-shrink: 0;
    position: relative;
}

.ribbon {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    --r: .8em;

    border-block: .5em solid #0000;
    padding-inline: calc(var(--r) + .25em) .5em;
    line-height: 1.8;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - .25em), var(--r) 50%, 0 .25em);
    background:
        radial-gradient(.2em 50% at right, #000a, #0000) border-box,
        var(--crimson) padding-box;
    width: fit-content;
    margin: 0 auto 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
}

.luxury-header-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--evergreen-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
}

.luxury-header-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--crimson), transparent);
}

.luxury-header-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--evergreen);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0.85;
}

/* Top Header Styles */
.top-header {
    background: linear-gradient(90deg, var(--evergreen-dark) 0%, var(--evergreen) 100%);
    color: var(--ivory);
    padding: 2px 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    position: relative;
    box-shadow: var(--shadow);
}

.top-info {
    display: flex;
    gap: 30px;
}

.top-item {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 10px;
    transition: var(--transition);
}

.top-item a {
    text-decoration: none;
    color: var(--white);
}

.top-item a:hover {
    color: var(--off-white);
    transform: translateY(-2px);
}

.top-item i {
    color: var(--crimson);
    font-size: 0.9rem;
    background-color: var(--white);
    padding: 7px;
    border-radius: 5px;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reserve-now {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(195, 32, 38, 0.3);
}

.reserve-now:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.reserve-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(195, 32, 38, 0.4);
}

.reserve-now:hover:before {
    left: 0;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ivory);
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--crimson);
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    right: 0;
    background: var(--white);
    min-width: 250px;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: var(--shadow);
    border-radius: 6px;
    padding: 10px 0;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--mist);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-mobile.show {
    max-height: 320px;
    overflow-y: auto;
}

.mobile-currency-menu.show {
    max-height: 320px;
    overflow-y: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--charcoal);
    transition: var(--transition);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
    cursor: pointer;
}

.dropdown-item:hover {
    background: var(--ivory);
    color: var(--crimson);
    padding-left: 25px;
}

.dropdown-item.active {
    color: var(--crimson);
    font-weight: 500;
    background: var(--ivory);
}

.flag {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* Currency Converter Styles */
.currency-converter {
    padding: 15px;
    border-bottom: 1px solid var(--mist);
}

.currency-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--mist);
    border-radius: 6px;
    background: var(--ivory);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.currency-select:focus {
    border-color: var(--crimson);
    outline: none;
    box-shadow: 0 0 0 2px rgba(195, 32, 38, 0.2);
}

.currency-info {
    padding: 10px;
    background: var(--ivory);
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
    color: var(--crimson);
    font-weight: 500;
}

/* Main Navigation Styles */
.main-header {
    background: rgba(15, 58, 52, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    width: 100px;
    background-color: var(--ivory);
    border-radius: 10px;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 6px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 10px 20px;
    border-radius: 6px;
    display: block;
}

.nav-links a:hover {
    background: var(--crimson);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(195, 32, 38, 0.3);
}

.nav-links a.active {
    background: var(--crimson);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(195, 32, 38, 0.3);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1001;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 50px;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: var(--white);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 100px;
    right: -400px;
    width: 300px;
    height: 85vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 15px 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    border-left: 1px solid var(--mist);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    /* Enhanced scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: var(--crimson) var(--ivory);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-header-controls {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    gap: 12px;
    flex-shrink: 0;
    padding: 0 15px;
}

/* Enhanced Scrollbar Styling for Mobile Menu */
.mobile-menu::-webkit-scrollbar {
    width: 8px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: var(--ivory);
    border-radius: 4px;
    margin: 5px 0;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--crimson);
    border-radius: 4px;
    border: 2px solid var(--ivory);
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: var(--crimson-dark);
}

.mobile-menu::-webkit-scrollbar-thumb:active {
    background: var(--crimson-dark);
}

/* Firefox scrollbar */
.mobile-menu {
    scrollbar-width: thin;
    scrollbar-color: var(--crimson) var(--ivory);
}

/* Updated Mobile Language Dropdown Styles */
.relative {
    position: relative;
    width: 100%;
}

#mobileLanguageButton {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: var(--ivory);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

#mobileLanguageButton:hover {
    background: var(--mist);
}

#mobileLanguageButton .flex {
    display: flex;
    align-items: center;
}

#mobileLanguageButton .space-x-3>*+* {
    margin-left: 12px;
}

#mobileLanguageButton .space-x-2>*+* {
    margin-left: 8px;
}

#mobileLanguageButton i {
    color: var(--smoke);
    font-size: 1.1rem;
}

#mobileLanguageButton .font-medium {
    font-weight: 500;
}

#mobileLanguageButton .text-gray-800 {
    color: var(--charcoal);
}

#mobileLanguageButton .text-gray-700 {
    color: var(--smoke);
}

.language-dropdown-mobile {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow);
    border: 1px solid var(--mist);
    z-index: 10;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.language-dropdown-mobile.active {
    max-height: 320px;
    overflow-y: auto;
}

.language-dropdown-mobile .py-2 {
    padding: 8px 0;
}

.mobile-language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--charcoal);
    transition: var(--transition);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: 1px solid var(--mist);
}

.mobile-language-option:last-child {
    border-bottom: none;
}

.mobile-language-option:hover {
    background: var(--ivory);
    color: var(--crimson);
}

.mobile-language-option.active {
    color: var(--crimson);
    font-weight: 500;
    background: var(--ivory);
}

/* Mobile Currency Dropdown */
.mobile-currency-dropdown {
    width: 100%;
    margin-bottom: 8px;
}

.mobile-currency-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--ivory);
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-currency-toggle:hover {
    background: var(--mist);
}

.mobile-currency-menu {
    width: 100%;
    background: var(--white);
    border-radius: 6px;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border: 1px solid var(--mist);
}

.mobile-currency-dropdown.active .mobile-currency-menu {
    max-height: 320px;
    overflow-y: auto;
}

.mobile-currency-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--charcoal);
    transition: var(--transition);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: 1px solid var(--mist);
}

.mobile-currency-item:last-child {
    border-bottom: none;
}

.mobile-currency-item:hover {
    background: var(--ivory);
    color: var(--crimson);
}

.mobile-links {
    list-style: none;
    width: 95%;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    flex-shrink: 0;
}

.mobile-links li {
    border-bottom: 1px solid var(--mist);
}

.mobile-links li:last-child {
    border-bottom: none;
}

.mobile-links a {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.mobile-links a:hover,
.mobile-links a.active {
    background: var(--ivory);
    color: var(--crimson);
    padding-left: 20px;
}

.mobile-links a:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 0;
    top: 0;
    left: 0;
    background: var(--crimson);
    transition: height 0.3s ease;
}

.mobile-links a:hover:after,
.mobile-links a.active:after {
    height: 100%;
}

/* Full Width Mobile Reserve Now Button */
.mobile-reserve-now {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    color: var(--white);
    padding: 16px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    width: 95%;
    margin: 0;
    box-shadow: 0 4px 10px rgba(195, 32, 38, 0.3);
    flex-shrink: 0;
    margin-top: auto;
    display: block;
}

.mobile-reserve-now:hover {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(195, 32, 38, 0.4);
}

.mobile-contact-info {
    width: 100%;
    padding: 15px;
    background: var(--ivory);
    border-radius: 6px;
    text-align: center;
    flex-shrink: 0;
    margin: 15px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--smoke);
    font-size: 0.9rem;
}

.mobile-contact-item:last-child {
    margin-bottom: 0;
}

.mobile-contact-item i {
    color: var(--crimson);
}

/* Google Translate Styles */
#google_translate_element {
    display: none !important;
}

.goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Currency Price Display */
.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--crimson);
    margin-top: 10px;
}

/* Scrollbar Styling */
.mobile-menu::-webkit-scrollbar,
.dropdown-menu::-webkit-scrollbar,
.language-dropdown-mobile::-webkit-scrollbar,
.mobile-currency-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track,
.dropdown-menu::-webkit-scrollbar-track,
.language-dropdown-mobile::-webkit-scrollbar-track,
.mobile-currency-menu::-webkit-scrollbar-track {
    background: var(--ivory);
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb,
.dropdown-menu::-webkit-scrollbar-thumb,
.language-dropdown-mobile::-webkit-scrollbar-thumb,
.mobile-currency-menu::-webkit-scrollbar-thumb {
    background: var(--crimson);
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover,
.dropdown-menu::-webkit-scrollbar-thumb:hover,
.language-dropdown-mobile::-webkit-scrollbar-thumb:hover,
.mobile-currency-menu::-webkit-scrollbar-thumb:hover {
    background: var(--crimson-dark);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .nav-links {
        gap: 5px;
    }

    .nav-links a {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .top-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }

    .top-info {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-controls {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .top-header {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .logo {
        width: 100px;
        padding: 5px;
    }

    .header-controls {
        display: none;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .dropdown-menu {
        right: auto;
        left: 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .luxury-header-3-container {
        flex-direction: column;
    }

    .luxury-border-side {
        width: 100%;
        margin: 1rem 0;
    }

    .luxury-header-content {
        padding: 0;
    }
}

/* Hide mobile menu on larger screens */
@media (min-width: 769px) {

    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    /* Adjust mobile menu for very small screens */
    .mobile-menu {
        width: 100%;
        right: -100%;
    }

    .mobile-menu::-webkit-scrollbar {
        width: 6px;
    }
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Hero Section */
.hero-section {
    height: 75vh;
    background: linear-gradient(135deg, rgba(13, 47, 43, 0.6) 0%, rgba(26, 26, 26, 0.7) 100%), url('https://i.ibb.co/RGP7FyvR/Grilled-Beef-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(195, 32, 38, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(195, 32, 38, 0.4);
}

.btn-outline {
    background: transparent;
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

/* Main Layout */
.main-content {
    flex: 1;
    min-width: 400px;
}

/* Tag Styling */
.article-tag {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 30px;
}

.motel-tag {
    background: linear-gradient(to right, var(--crimson), var(--crimson-dark));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px 0 0 5px;
    border-left: 4px solid var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
}

.read-time {
    background-color: var(--evergreen);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 0 5px 5px 0;
}

/* Article Section */
.article-section {
    background-color: var(--white);
    border-radius: 10px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.article-title {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--evergreen-dark);
    line-height: 1.2;
}

.article-content {
    margin-bottom: 30px;
    font-size: 17px;
    color: #444;
}

.article-image {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.rounded-img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.rounded-img:hover {
    transform: scale(1.03);
}

/* REDESIGNED MENU SECTION - Experience Cards */
.menu-section {
    position: relative;
    background-color: var(--white);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--evergreen-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    width: 100%;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    background: linear-gradient(135deg, var(--evergreen), var(--evergreen-dark));
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.menu-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.menu-item-card:hover .menu-item-img {
    transform: scale(1.1);
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 47, 43, 0.6) 0%, rgba(26, 26, 26, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    z-index: 2;
}

/* Card Content */
.card-content {
    transform: translateY(20px);
    opacity: 1;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.menu-item-card:hover .card-content {
    transform: translateY(0);
}

/* Dining Experience Icons */
.dining-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.dining-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 13px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
}

.dining-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.dining-icon i {
    font-size: 16px;
}

/* Experience Description */
.experience-description {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 0;
    color: white;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(195, 32, 38, 0.3);
    z-index: 3;
}

/* REDESIGNED BOOKING FORM - Modern & Clean */
.booking-sidebar-premium {
    width: 500px;
    min-width: 400px;
}

.booking-form-container-premium {
    background: linear-gradient(145deg, #ffffff 0%, #f8f5f0 100%);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 100px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-header-premium {
    background: linear-gradient(135deg, var(--evergreen) 0%, var(--evergreen-dark) 100%);
    padding: 35px 40px 25px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.form-header-premium:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.form-title-premium {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.form-subtitle-premium {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.form-body-premium {
    padding: 40px;
}

.form-group-premium {
    margin-bottom: 28px;
    position: relative;
}

.form-label-premium {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--evergreen);
    font-size: 15px;
    letter-spacing: 0.5px;
}

.form-icon {
    position: absolute;
    right: 20px;
    top: 50px;
    color: var(--gold);
    font-size: 18px;
}

/* Modern Input Styles */
.form-input-premium,
.form-select-premium {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.form-input-premium:focus,
.form-select-premium:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1), 0 8px 20px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
}

.form-input-premium::placeholder {
    color: #aaa;
    font-weight: 300;
}

/* Custom Date Picker Container */
.date-picker-container {
    position: relative;
}

.date-picker-container .form-input-premium {
    padding-right: 50px;
    cursor: pointer;
}

.date-picker-container::after {
    content: '\f133';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 18px;
    pointer-events: none;
}

/* Hide default date picker icon */
.form-input-premium[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.form-input-premium[type="date"]::-moz-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Custom Select Container */
.select-container {
    position: relative;
}

.select-container::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 16px;
    pointer-events: none;
    transition: var(--transition);
}

.select-container:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.form-select-premium {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 50px;
    cursor: pointer;
    background-image: none;
}

/* Remove default arrow in IE */
.form-select-premium::-ms-expand {
    display: none;
}

/* Modern Textarea */
.textarea-container {
    position: relative;
}

.textarea-container::after {
    content: '\f303';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--gold);
    font-size: 18px;
    pointer-events: none;
}

.form-textarea-premium {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    min-height: 120px;
    resize: vertical;
}

.form-textarea-premium:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1), 0 8px 20px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
}

/* Modern Submit Button */
.submit-btn-premium {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(195, 32, 38, 0.3);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn-premium:hover {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(195, 32, 38, 0.4);
}

.submit-btn-premium:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(195, 32, 38, 0.3);
}

.submit-btn-premium:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.submit-btn-premium:hover:after {
    left: 100%;
}

/* WhatsApp-specific button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 100%;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 1px;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.booking-features-premium {
    margin-top: 35px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(248, 245, 240, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.features-title-premium {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--evergreen);
    position: relative;
    display: inline-block;
}

.features-title-premium:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--crimson);
}

.features-list-premium {
    list-style: none;
}

.features-list-premium li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.features-list-premium li:last-child {
    border-bottom: none;
}

.feature-icon-premium {
    background: linear-gradient(135deg, var(--evergreen) 0%, var(--evergreen-dark) 100%);
    color: var(--gold);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 16px;
}

.feature-text-premium {
    flex: 1;
}

.feature-text-premium strong {
    color: var(--evergreen);
    display: block;
    margin-bottom: 3px;
}

.feature-text-premium span {
    color: #666;
    font-size: 14px;
    font-weight: 300;
}

/* Order Summary Section */
.order-summary {
    background: linear-gradient(135deg, rgba(248, 245, 240, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: none;
}

.order-summary.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.order-summary-title {
    font-size: 20px;
    color: var(--evergreen);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-summary-title i {
    color: var(--crimson);
}

/* Modern Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(50px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--crimson);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    border: 2px solid var(--white);
    box-shadow: 0 5px 15px rgba(195, 32, 38, 0.3);
}

.close-modal:hover {
    background-color: var(--crimson-dark);
    transform: rotate(90deg) scale(1.1);
}

/* Modern Hero Section */
.modal-hero {
    height: 380px;
    background: linear-gradient(rgba(13, 47, 43, 0.6), rgba(15, 58, 52, 0.45)), url('https://images2.imgbox.com/08/87/zkDDu7T2_o.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.modal-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
}

.modal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.modal-main-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
}

.modal-subtitle {
    font-size: 20px;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto 25px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-cta-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Gallery Section - Now First After Hero */
.gallery-section {
    padding: 10px;
    background: linear-gradient(to bottom, #f8f5f0, var(--white));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.main-gallery-item {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 400px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    max-height: 180px;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100px;
}

.main-gallery-item img {
    min-height: 220px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Modal Body */
.modal-body {
    padding: 10px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.luxury-header-content .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--evergreen-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
}

.luxury-header-content .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--crimson), transparent);
}

.luxury-header-content .section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--evergreen);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0.85;
}

/* Philosophy Section */
.philosophy-section {
    margin-bottom: 60px;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.philosophy-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.philosophy-points {
    margin-top: 30px;
}

.philosophy-point {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.philosophy-point i {
    background: linear-gradient(135deg, var(--evergreen), var(--evergreen-dark));
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
}

.philosophy-point h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--evergreen);
}

.philosophy-point p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.philosophy-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 15px;
    font-size: 14px;
    text-align: center;
}

/* Features Section */
.features-section {
    margin-bottom: 60px;
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.modern-icon {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-card-header h4 {
    font-size: 22px;
    color: var(--evergreen);
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.feature-card-body {
    flex-grow: 1;
}

.feature-card-body p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Amenities Section */
.amenities-section {
    margin-bottom: 60px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-item {
    background: linear-gradient(135deg, #f8f5f0, var(--white));
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-icon {
    background: linear-gradient(135deg, var(--evergreen), var(--evergreen-dark));
    color: var(--gold);
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.amenity-content h4 {
    font-size: 20px;
    color: var(--evergreen);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.amenity-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.amenity-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Guest Recognition Section */
.highlights-section {
    background: linear-gradient(135deg, var(--off-white), var(--white));
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    color: var(--evergreen);
}

.highlights-section .section-title {
    color: var(--evergreen-dark);
}

.highlights-section .section-divider {
    background: var(--gold);
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.highlight-stat {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: transform 0.3s ease;
}

.highlight-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
}

/* CTA Section */
.modal-cta-section {
    background: linear-gradient(135deg, #f8f5f0, var(--white));
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.cta-content h3 {
    font-size: 32px;
    color: var(--evergreen);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-cta-btn {
    padding: 18px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.primary-cta {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(195, 32, 38, 0.3);
}

.primary-cta:hover {
    background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(195, 32, 38, 0.4);
}

.secondary-cta {
    background: transparent;
    color: var(--evergreen);
    border: 2px solid var(--evergreen);
}

.secondary-cta:hover {
    background: var(--evergreen);
    color: var(--white);
    transform: translateY(-3px);
}

/* Luxury Footer with Hotel Elegance */
.luxury-footer {
    background-color: var(--white);
    color: var(--gray);
    padding: 70px 0 35px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    margin: 40px auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Hotel-themed background pattern */
.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(195, 32, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 58, 52, 0.03) 0%, transparent 50%);
    z-index: 1;
}

/* Elegant border decoration */
.footer-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.footer-border:before,
.footer-border:after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    height: 1px;
    width: 80%;
    left: 10%;
}

.footer-border:before {
    top: 0;
}

.footer-border:after {
    bottom: 0;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Large Motel Name Background - Elegant watermark */
.footer-watermark {
    position: absolute;
    bottom: 43px;
    right: 40px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.05;
    font-family: 'Playfair Display', serif;
}

.footer-watermark h1 {
    font-size: 100px;
    font-weight: 900;
    color: var(--evergreen);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

/* Footer Top - Four Columns Layout */
.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
}

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--evergreen);
    position: relative;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--crimson), var(--crimson-dark));
    border-radius: 3px;
}

/* Motel Description Column */
.motel-description {
    padding-right: 30px;
}

.motel-description .logo-text {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--evergreen);
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.motel-description .logo-text span {
    color: var(--crimson);
    position: relative;
}

.motel-description .logo-text span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--crimson-dark), var(--crimson));
    border-radius: 2px;
}

.motel-description p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
}

/* Contact Information - Modern Card Style */
.contact-infos {
    margin-top: 10px;
}

.contact-infos p {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    position: relative;
    padding: 18px 20px;
    transition: var(--transition);
    border-radius: 12px;
    margin-bottom: 10px;
    background: var(--off-white);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.contact-infos p:hover {
    transform: translateY(-5px);
    border: 1px solid var(--evergreen);
    box-shadow: var(--shadow-md);
}

.contact-infos i {
    color: var(--evergreen);
    margin-right: 20px;
    margin-top: 2px;
    min-width: 50px;
    font-size: 1.2rem;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--white), #f0f0f0);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-infos p:hover i {
    color: var(--white);
    background: linear-gradient(135deg, var(--evergreen-dark), var(--evergreen));
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Quick Links Section - Elegant with animations */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

/* Animated Link Styles with elegant hover */
.animated-link {
    display: flex;
    align-items: center;
    color: var(--gray);
    text-decoration: none;
    font-size: 1.05rem;
    position: relative;
    padding: 16px 20px;
    transition: var(--transition);
    overflow: hidden;
    border-radius: 10px;
    background: var(--off-white);
    font-weight: 500;
}

.animated-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(to bottom, var(--crimson), var(--crimson-dark));
    transition: height 0.4s ease;
    border-radius: 0 0 4px 4px;
}

.animated-link:hover {
    color: var(--evergreen);
    padding-left: 30px;
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.animated-link:hover::before {
    height: 100%;
}

.link-arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    color: var(--evergreen);
    transition: var(--transition);
}

.animated-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Luxury Amenities Section - Hotel Style Icons */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 10px;
    transition: var(--transition);
    border-radius: 16px;
    position: relative;
    background: var(--off-white);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--crimson), var(--crimson-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.amenity-item:hover::before {
    transform: scaleX(1);
}

.ammenity-icons {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--evergreen), var(--evergreen-dark));
    color: white;
    font-size: 1.8rem;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(15, 58, 52, 0.2);
}

.amenity-item:hover .ammenity-icons {
    background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
    transform: translateY(-10px) rotate(15deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(195, 32, 38, 0.3);
}

.amenity-text {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
}

.amenity-item:hover .amenity-text {
    color: var(--evergreen);
    transform: translateY(-5px);
}

/* Luxury Badge Effect */
.amenity-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 12px;
    opacity: 0;
    z-index: 1000;
    transform: translateY(-10px);
    transition: var(--transition);
}

.amenity-item:hover .amenity-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Social Links - Luxury Style */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--white), #f0f0f0);
    color: var(--evergreen);
    font-size: 1.3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    text-decoration: none;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--evergreen-dark), var(--evergreen));
    opacity: 0;
    transition: var(--transition);
    border-radius: 50%;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    border: 2px solid var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: white;
    transform: rotate(360deg);
}

/* Footer Bottom - Luxury Style */
.footer-bottom {
    border-top: 1px solid rgba(15, 58, 52, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
    z-index: 3;
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 400;
}

.designer-credit {
    display: flex;
    align-items: center;
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
}

.designer-credit::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.designer-credit a {
    color: var(--evergreen);
    text-decoration: none;
    margin-left: 5px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    position: relative;
}

.designer-credit a:hover {
    color: var(--crimson);
}

.designer-credit a i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.designer-credit a:hover i {
    transform: translateX(5px);
}

/* Luxury Payment Methods */
.payment-methods {
    display: flex;
    gap: 18px;
    font-size: 1.5rem;
    color: var(--gray-light);
}

.payment-icon {
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.payment-icon i {
    transition: var(--transition);
    filter: grayscale(1);
    opacity: 0.7;
}

.payment-icon:hover i {
    filter: grayscale(0);
    opacity: 1;
    color: var(--evergreen);
    transform: translateY(-2px) scale(1.2);
}

/* Tooltip for payment icons */
.payment-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--evergreen);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.payment-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--evergreen);
}

.payment-icon:hover .payment-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* ===============================
           RESPONSIVE MEDIA QUERIES
           =============================== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .main-content {
        min-width: 100%;
    }

    .booking-sidebar-premium {
        width: 100%;
        min-width: 100%;
    }

    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .article-title {
        font-size: 2.5rem;
    }

    /* Modal adjustments for tablet */
    .modal-content {
        max-width: 90%;
        max-height: 85vh;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer adjustments */
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-watermark h1 {
        font-size: 80px;
    }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {

    /* Hero Section */
    .hero-section {
        height: 60vh;
        background-attachment: scroll;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-cta{
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Main Content Adjustments */
    .container {
        padding: 0 15px;
        gap: 15px;
    }

    .article-section,
    .menu-section {
        padding: 25px;
    }

    .article-tag {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .article-image {
        flex-direction: column;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Menu Items Grid - Single column on mobile */
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .menu-item-card {
        height: 350px;
    }

    .dining-icons {
        gap: 10px;
    }

    .dining-icon {
        padding: 8px 12px;
        font-size: 12px;
    }

    .dining-icon i {
        font-size: 14px;
    }

    .experience-description {
        font-size: 19px;
    }

    /* Booking Form Adjustments */
    .booking-form-container-premium {
        position: static;
    }

    .form-header-premium,
    .form-body-premium {
        padding: 25px;
    }

    .features-list-premium li {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .feature-icon-premium {
        margin-right: 0;
        margin-bottom: 10px;
    }

    /* Modal Adjustments for Mobile */
    .modal-overlay {
        padding: 10px;
    }

    .modal-content {
        max-width: 95%;
        max-height: 90vh;
    }

    .modal-hero {
        height: 300px;
        padding: 20px;
    }

    .modal-hero-content{
        margin-top: 60px;
    }

    .modal-main-title {
        font-size: 2rem;
    }

    .modal-subtitle {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .main-gallery-item {
        grid-column: span 2;
    }

    .philosophy-point {
        flex-direction: column;
        gap: 10px;
    }

    .modern-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .highlights-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .modal-cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer mobile adjustments */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-watermark h1 {
        font-size: 60px;
        bottom: 20px;
        right: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .payment-methods {
        justify-content: center;
    }

    .motel-description .logo-text {
        font-size: 2.2rem;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-section {
        height: 60vh;
    }

    .article-section,
    .menu-section {
        padding: 20px;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .form-input-premium,
    .form-select-premium,
    .form-textarea-premium {
        padding: 14px 16px;
        font-size: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .main-gallery-item {
        grid-column: span 1;
    }

    .highlights-container {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .menu-item-card {
        height: 300px;
    }

    .experience-description {
        font-size: 17px;
    }

    .footer-watermark h1 {
        font-size: 40px;
    }

    .motel-description .logo-text {
        font-size: 1.8rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* Prevent horizontal scrolling */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Touch-friendly buttons for mobile */
@media (max-width: 767px) {

    .btn,
    .submit-btn-premium,
    .whatsapp-btn {
        min-height: 50px;
        padding: 15px 20px;
    }
}

/* Tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .menu-item-card {
        height: 380px;
    }
}

/* Animation for card hover */
.menu-item-card {
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Smooth transitions */
* {
    scroll-behavior: smooth;
}

/* Hide scrollbar in modal */
.modal-content {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.modal-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Also hide scrollbar in mobile menu if needed */
.mobile-menu {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.mobile-menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Hide scrollbar in language and currency dropdowns */
.language-dropdown-mobile,
.mobile-currency-menu,
.dropdown-menu {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.language-dropdown-mobile::-webkit-scrollbar,
.mobile-currency-menu::-webkit-scrollbar,
.dropdown-menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}