: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;
}

.container {
    max-width: 1500px;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 20px;
}


/* 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);
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-top: -20px;
    margin-bottom: 20px;
    gap: 10px;
    transition: var(--transition);
}

.contact-item a {
    text-decoration: none;
    color: var(--white);
}

.contact-item a:hover {
    color: var(--off-white);
    transform: translateY(-2px);
}

.contact-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.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.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: 'Montserrat', 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%;
    }

    .contact-info {
        gap: 20px;
    }

    .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;
    }

    .contact-info {
        display: none;
    }

    .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;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    top: -90px;
    overflow: hidden;
}

.vertical-text {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 8px;
    z-index: 10;
    display: flex;
    align-items: center;
}

.vertical-text::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
}

.vertical-text::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
}

.vertical-line-middle {
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    margin: 15px 0;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.8s ease;
    transform: translateY(20px);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1.05);
}

.slide-1 .slide-bg {
    background-image: linear-gradient(135deg, rgba(13, 47, 43, 0.6) 0%, rgba(26, 26, 26, 0.7) 100%), url('https://i.ibb.co/ch0NDcbV/KKP-23.webp');
}

.slide-2 .slide-bg {
    background-image: linear-gradient(135deg, rgba(13, 47, 43, 0.6) 0%, rgba(26, 26, 26, 0.7) 100%), url('https://i.ibb.co/1Y6S036q/Bar-1-1.webp');
}

.slide-3 .slide-bg {
    background-image: linear-gradient(135deg, rgba(13, 47, 43, 0.6) 0%, rgba(26, 26, 26, 0.7) 100%), url('https://i.ibb.co/yn8yYgVf/KKP-4-1.webp');
}

.hero-content {
    text-align: left;
    color: var(--white);
    max-width: 900px;
    margin-left: 120px;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.motel-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(195, 32, 38, 0.9) 0%, rgba(116, 23, 33, 0.9) 100%);
    border-left: 3px solid var(--gold);
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--white);
    font-weight: 600;
    border-radius: 2px;
    font-family: 'Playfair Display', serif;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--white);
}

.hero-content h1 span {
    color: var(--gold);
}

/* Horizontal Progress Line */
.heading-progress-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    width: 120px;
}

.heading-progress-bar {
    width: 0;
    height: 2px;
    background: var(--crimson-dark);
    transition: width 5s linear;
}

.slide.active .heading-progress-bar {
    width: 60px;
}

.heading-progress-static {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    
    font-family: 'Montserrat', sans-serif;
}

.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);
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-text {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Playfair Display', serif;
}

/* Progress Bar Navigation */
.carousel-nav {
    position: absolute;
    bottom: 70px;
    left: 120px;
    /* Aligned with hero content */
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.nav-line-container {
    width: 70px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    border-radius: 1px;

}

.nav-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--crimson-dark);
    border-radius: 1px;
    transition: width 5s linear;
}

.nav-line-container.active .nav-line-progress {
    width: 100%;
}

.nav-line-circle {
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.nav-item.active .nav-line-circle {
    background: var(--crimson-dark);
    transform: translateY(-50%) scale(1.5);
}

/* Synchronized Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    animation: scrollText 0.8s infinite alternate;
}

.scroll-line-container {
    position: relative;
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    animation: scrollLineContainer 0.8s infinite alternate;
}

.scroll-line-moving {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--crimson-dark), var(--crimson));
}

@keyframes scrollText {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes scrollLineContainer {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-25px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .vertical-text {
        left: 30px;
    }

    .hero-content {
        margin-left: 60px;
        max-width: 800px;
    }

    .carousel-nav {
        left: 60px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        margin-left: 50px;
        max-width: 700px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-stats {
        gap: 40px;
    }

    .vertical-text {
        left: 20px;
    }

    .carousel-nav {
        left: 50px;
    }
}

@media (max-width: 768px) {
    .vertical-text {
        width: 100%;
        height: 80px;
        left: -10px;
        top: 80px;
        margin-bottom: 20px;
        padding: 20px 0;
        transform: none;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        flex-direction: row;
        gap: 5px;
        justify-content: center;
    }

    .vertical-line-middle {
        position: relative;
        top: 0;
        left: -30px;
        transform: none;
        width: 50px;
        height: 1px;
        margin: 0 15px;
    }

    .vertical-text::before,
    .vertical-text::after {
        display: none;
    }

    .hero-content {
        margin: 20px;
        margin-top: 100px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        display: none;
    }

    .scroll-indicator {
        bottom: -10px;
    }

    .carousel-nav {
        left: 40px;
        bottom: 80px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 20px;
    }

    .hero-stats {
        display: none;
    }


    .carousel-nav {
        left: 20px;
        bottom: 50px;
    }

    .nav-line-container {
        width: 60px;
    }

    .heading-progress-container {
        width: 100px;
    }

    .slide.active .heading-progress-bar {
        width: 50px;
    }

    .heading-progress-static {
        width: 50px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Amenities Section Styles */
.amenities-section {
    margin: 100px 0;
    position: relative;
}

/* Quote Icons */
.quote-icon {
    position: absolute;
    color: rgba(13, 47, 43, 0.08);
    font-size: 8rem;
    z-index: 0;
}

.quote-top {
    top: 20px;
    left: 20px;
}

.quote-bottom {
    bottom: -30px;
    right: 20px;
    transform: rotate(180deg);
}

.amenities-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.main-amenity {
    position: relative;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, var(--evergreen-dark));
    color: var(--white);
    transform: translateY(0);
    transition: var(--transition);
}

.main-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.main-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

.amenity-features {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--crimson);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.amenities-carousel-container {
    position: relative;
    width: 100%;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.carousel-header h3 {
    font-size: 1.8rem;
    color: var(--evergreen);
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--evergreen);
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--evergreen-dark);
    transform: translateY(-2px);
}

.amenities-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 1.2s ease;
    gap: 20px;
}

.amenity-card {
    width: 300px;
    /* Updated width */
    height: 250px;
    /* Updated height */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.amenity-card.active {
    border: 2px solid var(--crimson);
}

.amenity-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(15, 58, 52, 0.9));
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: var(--transition);
    text-align: left;
    /* Align text to left */
}

.amenity-info h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
    text-align: left;
    /* Align text to left */
}

.amenity-brief {
    font-size: 0.85rem;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.4;
}

.amenity-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.amenity-icon {
    width: 30px;
    height: 30px;
    background: rgb(219, 217, 217);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--evergreen);
    font-size: 1rem;
}

.learn-more-btn {
    display: inline-block;
    background: var(--white);
    color: var(--evergreen);
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
    align-self: flex-start;
    /* Align to left */
    margin-top: 5px;
}

.learn-more-btn:hover {
    background: transparent;
    color: var(--white);
    border: 2px solid white;
    transform: translateY(-1px);
}

/* Enhanced Features Section */
.amenities-grids {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amenity-feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}


.amenity-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.amenity-feature-card:hover .feature-icon {
    background: var(--evergreen);
    transform: scale(1.1);
}

.amenity-feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--evergreen);
}

.amenity-feature-card p {
    color: var(--smoke);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li:before {
    content: '✓';
    color: var(--crimson);
    font-weight: bold;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mist);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--crimson);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .luxury-header-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .luxury-header-content h2 {
        font-size: 2.5rem;
    }

    .main-amenity {
        height: 500px;
    }

    .main-content {
        padding: 30px;
    }

    .main-content h3 {
        font-size: 1.8rem;
    }

    .luxury-header-3-container {
        flex-direction: column;
    }

    .luxury-border-side {
        width: 100%;
        margin: 1rem 0;
    }

    .luxury-header-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .quote-icon {
        font-size: 5rem;
    }

    .main-amenity {
        height: 450px;
    }

    .main-content {
        padding: 25px;
    }

    .main-content h3 {
        font-size: 1.6rem;
    }

    .carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .amenity-features {
        gap: 10px;
    }

    .feature-tag {
        padding: 4px 10px;
        font-size: 0.6rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 576px) {
    .main-amenity {
        height: 400px;
    }

    .main-content {
        padding: 20px;
    }

    .main-content h3 {
        font-size: 1.6rem;
    }

    .main-content p {
        font-size: 0.9rem;
    }

    .amenity-card {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

}

@media (max-width: 400px) {
    .luxury-header-content h2 {
        font-size: 1.8rem;
    }

    .location h3 {
        font-size: 1.3rem;
    }

    .amenity-card {
        padding: 12px;
    }
}


/* Weather Section Styles */
.weather-section {
    margin: 60px 0;
    position: relative;
    width: 100%;
}

.weather-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.current-weather {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #1a2a6c, #2c3e50);
    border-radius: 15px;
    padding: 30px;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.current-weather:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images2.imgbox.com/8b/2c/VtUw83PQ_o.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.location {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location i {
    color: var(--gold);
    font-size: 1.3rem;
}

.location h3 {
    font-size: 1.5rem;
    margin: 0;
}

.date-time {
    text-align: right;
}

.date {
    font-size: 1rem;
    opacity: 0.9;
}

.time {
    font-size: 1.2rem;
    font-weight: 500;
}

.weather-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.temperature {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
}

.weather-icon {
    font-size: 3.5rem;
    color: var(--gold);
}

.weather-description {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-info h4 {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.detail-info p {
    font-size: 1.1rem;
    font-weight: 500;
}

.forecast-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.forecast-card {
    background: var(--white);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.forecast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.forecast-day {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--evergreen-dark);
    width: 90px;
}

.forecast-weather {
    display: flex;
    align-items: center;
    gap: 12px;
}

.forecast-icon {
    font-size: 1.8rem;
    color: var(--blue);
}

.forecast-temp {
    display: flex;
    gap: 12px;
}

.high-temp {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--evergreen-dark);
}

.low-temp {
    font-size: 1.2rem;
    color: var(--text-light);
}

.weather-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.weather-btn {
    background: var(--evergreen);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.weather-btn:hover {
    background: var(--evergreen-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.loading {
    text-align: center;
    padding: 20px;
    color: var(--text-light);
}

.loading i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--evergreen-dark);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .weather-container {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .current-weather {
        min-width: 100%;
    }

    .forecast-container {
        min-width: 100%;
    }

    .weather-main {
        justify-content: center;
        text-align: center;
    }

    .temperature {
        font-size: 3.5rem;
    }

    .weather-icon {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    .current-weather {
        padding: 25px 20px;
    }

    .weather-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .date-time {
        text-align: left;
    }

    .weather-details {
        grid-template-columns: 1fr;
    }

    .forecast-card {
        padding: 15px;
    }

    .forecast-day {
        width: 80px;
        font-size: 1rem;
    }

    .forecast-weather {
        gap: 8px;
    }

    .forecast-icon {
        font-size: 1.5rem;
    }

    .high-temp,
    .low-temp {
        font-size: 1.1rem;
    }

    .weather-actions {
        flex-direction: column;
        align-items: center;
    }

    .weather-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .current-weather {
        padding: 20px 15px;
    }

    .temperature {
        font-size: 3rem;
    }

    .weather-icon {
        font-size: 2.5rem;
    }

    .weather-description {
        font-size: 1.1rem;
    }

    .detail-item {
        gap: 10px;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .detail-info h4 {
        font-size: 0.85rem;
    }

    .detail-info p {
        font-size: 1rem;
    }

    .forecast-card {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .forecast-day {
        width: 100%;
        font-weight: 600;
    }

    .forecast-weather {
        justify-content: center;
    }
}

@media (max-width: 400px) {

    .location h3 {
        font-size: 1.3rem;
    }

    .temperature {
        font-size: 2.5rem;
    }

    .weather-icon {
        font-size: 2rem;
    }

    .weather-description {
        font-size: 1rem;
    }

    .forecast-card {
        padding: 12px;
    }
}



/* Virtual Tour Section */
.virtual-tour-section {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}


/* Two-Column Layout */
.tour-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .tour-layout {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Tour Container */
.tour-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.tour-iframe-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .tour-iframe-container {
        height: 640px;
    }
}

#virtual-tour-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Controls */
.tour-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--evergreen);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.control-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.control-btn.fullscreen {
    background: var(--crimson);
    color: var(--white);
}

.control-btn.fullscreen:hover {
    background: var(--crimson-dark);
}

/* Tour Content */
.tour-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-description {
    margin-bottom: 2rem;
}

.tour-description p {
    font-size: 1.1rem;
    color: var(--evergreen);
    line-height: 1.7;
    margin-bottom: .5rem;
}

.location-highlight {
    background: linear-gradient(135deg, var(--evergreen) 0%, var(--evergreen-dark) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.location-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.location-highlight p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.location-highlight i {
    margin-right: 10px;
    color: var(--gold);
    width: 20px;
}

.tour-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.tour-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tour-feature i {
    width: 50px;
    height: 50px;
    background: var(--crimson);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tour-feature div h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--evergreen-dark);
}

.tour-feature div p {
    font-size: 0.9rem;
    color: var(--evergreen);
    opacity: 0.8;
    line-height: 1.5;
}

.tour-cta {
    margin-top: 2rem;
}

.cta-btn {
    display: inline-block;
    background: var(--crimson);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.cta-btn:hover {
    background: var(--crimson-dark);
    transform: translateY(-2px);
}

/* Fullscreen Mode */
.fullscreen-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.fullscreen-active .tour-iframe-container {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 100px);
}

.fullscreen-active .tour-controls {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.fullscreen-active .close-fullscreen {
    display: flex;
}

.close-fullscreen {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--evergreen);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.close-fullscreen:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Lake Victoria Special Feature */
.lake-feature {
    background: linear-gradient(135deg, #0a4d68 0%, #088395 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lake-icon {
    font-size: 3rem;
    color: var(--white);
    flex-shrink: 0;
}

.lake-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.lake-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}


/* TESTIMONIAL SECTION */
/* Testimonial Carousel Section - Large Card Design */
.testimonial-carousel-section {
    margin-bottom: 100px;
    position: relative;
}

.testimonial-carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 1500px;
    left: 2px;
    border-radius: var(--border-radius);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 10px;
    padding: 10px;
}

.testimonial-large-card {
    margin-left: 30px;
    flex: 0 0 calc(100% - 20px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    border-radius: 10px;
    min-height: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-client-side {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.client-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.client-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 47, 43, 0.85), rgba(13, 47, 43, 0.4));
    z-index: 1;
}

.client-info {
    position: relative;
    z-index: 2;
    width: 100%;
}

.client-name-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    width: fit-content;
    color: white;
}

.client-name-glass h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 600;
}

.client-name-glass p {
    font-size: 14px;
    opacity: 0.9;
}

.testimonial-content-side {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 30px;
}

.quote-icons {
    font-size: 80px;
    color: rgba(195, 32, 38, 0.15);
    position: absolute;
    top: -30px;
    left: -10px;
}

.quote-icons.end {
    top: auto;
    left: auto;
    bottom: -50px;
    right: 0;
    transform: rotate(180deg);
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    line-height: 1.5;
    color: var(--evergreen);
    font-style: italic;
    padding: 0 20px;
    margin-bottom: 30px;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.testimonial-meta {
    padding: 0 20px;
    color: var(--text-light);
    font-size: 14px;
}

/* Carousel Navigation */
.carousel-navs {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 15px;
}





/* Coffee Section Styles */
.coffee-section {
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.coffee-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.coffee-text {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.coffee-text h3 {
    font-size: 2.2rem;
    color: var(--evergreen-dark);
    margin-bottom: 25px;
}

.coffee-text p {
    margin-bottom: 25px;
    color: var(--evergreen);
    font-size: 1.1rem;
}

.coffee-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icons {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crimson);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--evergreen-dark);
}

.feature-text p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--evergreen);
}

.coffee-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 650px;
}

.coffee-carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.coffee-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coffee-carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coffee-slide-image {
    width: 85%;
    height: 85%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 8px solid white;
    transition: all 0.5s ease;
}

.coffee-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coffee-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 58, 52, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.coffee-carousel-slide.active .coffee-slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

.coffee-slide-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.coffee-slide-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.coffee-image-stack {
    position: absolute;
    width: 85%;
    height: 85%;
    pointer-events: none;
}

.coffee-stack-top {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 60%;
    height: 60%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 6px solid white;
    transform: rotate(5deg);
    z-index: 3;
    transition: all 0.5s ease;
}

.coffee-stack-bottom {
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: 60%;
    height: 60%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 6px solid white;
    transform: rotate(-5deg);
    z-index: 1;
    transition: all 0.5s ease;
}

.coffee-stack-top img,
.coffee-stack-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coffee-carousel-slide.active .coffee-stack-top {
    transform: rotate(3deg) translateY(-10px);
}

.coffee-carousel-slide.active .coffee-stack-bottom {
    transform: rotate(-3deg) translateY(10px);
}

/* Updated Coffee Carousel Controls - Side Positioning */
.coffee-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.coffee-carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--crimson);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coffee-carousel-btn:hover {
    background: var(--crimson-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .coffee-content {
        flex-direction: column;
    }

    .coffee-text {
        padding-right: 0;
    }

    .coffee-visual {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .coffee-features {
        grid-template-columns: 1fr;
    }

    .coffee-visual {
        height: 400px;
    }

    /* Reset all slide layouts for mobile */
    .coffee-carousel-slide .coffee-slide-image {
        width: 95% !important;
        height: 95% !important;
        margin: 0 auto !important;
    }

    /* Hide all stack images on mobile */
    .coffee-stack-top,
    .coffee-stack-bottom {
        display: none !important;
    }

    /* Remove any special positioning for specific slides */
    .coffee-carousel-slide.coffee-slide-1 .coffee-slide-image,
    .coffee-carousel-slide.coffee-slide-2 .coffee-slide-image,
    .coffee-carousel-slide.coffee-slide-3 .coffee-slide-image,
    .coffee-carousel-slide.coffee-slide-4 .coffee-slide-image {
        width: 95% !important;
        height: 95% !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    /* Specifically target slide 3 and 4 to ensure consistency */
    .coffee-carousel-slide.coffee-slide-3 .coffee-slide-image,
    .coffee-carousel-slide.coffee-slide-4 .coffee-slide-image {
        width: 95% !important;
        height: 95% !important;
    }

    /* Remove any transform or special positioning */
    .coffee-carousel-slide.coffee-slide-3 .coffee-stack-bottom,
    .coffee-carousel-slide.coffee-slide-4 .coffee-stack-top,
    .coffee-carousel-slide.coffee-slide-4 .coffee-stack-bottom {
        display: none !important;
    }

    /* Adjust button size for mobile */
    .coffee-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .coffee-carousel-controls {
        padding: 0 10px;
    }

    coffee-text {
        padding: 40px;
    }
}

@media (max-width: 480px) {
    .coffee-text h3 {
        font-size: 1.8rem;
    }

    .coffee-visual {
        height: 350px;
    }

    .coffee-cta {
        padding: 30px 20px;
    }

    .coffee-cta h3 {
        font-size: 1.7rem;
    }

    /* Extra insurance for mobile */
    .coffee-carousel-slide .coffee-slide-image {
        width: 92% !important;
        height: 92% !important;
    }
}

/* FAQS */
.faq-container {
    max-width: 1500px;
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    padding: 60px 10px;
    display: flex;
    gap: 60px;
}

.faq-left {
    flex: 2.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-right {
    flex: 2.2;
}

.faq-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--evergreen);
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--crimson);
}

.faq-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--smoke);
}

.faq-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--smoke);
    max-width: 90%;
}

.contact-info {
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--evergreen);
}

.contact-items {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--smoke);
}

.contact-items i {
    width: 36px;
    height: 36px;
    background: var(--evergreen);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: var(--transition);
}

.contact-items:hover i {
    background: var(--crimson);
    transform: scale(1.05);
}

.accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 2px solid var(--mist);
    padding: 25px 0;
}

.accordion-item:first-child {
    padding-top: 0;
}

.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: var(--transition);
}

.accordion-header:hover {
    transform: translateX(5px);
}

.accordion-question {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    color: var(--evergreen);
    line-height: 1.5;
}

.accordion-icon {
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    margin-left: 20px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--evergreen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-header.active .accordion-icon {
    background: var(--crimson);
    transform: rotate(90deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-content.active {
    padding-top: 15px;
    max-height: 500px;
}

.accordion-answer {
    color: var(--smoke);
    line-height: 1.7;
    font-size: 1.05rem;
}

.motel-highlight {
    color: var(--crimson);
    font-weight: 600;
}

.evergreen-highlight {
    color: var(--evergreen);
    font-weight: 600;
}

@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }


    .testimonial-large-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .faq-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .faq-container {
        padding: 30px 20px;
    }

    .faq-title {
        font-size: 2.4rem;
    }

    .faq-subtitle {
        font-size: 1.2rem;
    }

    .accordion-question {
        font-size: 1.1rem;
    }
}


/* Newsletter Section Styles */
.newsletter-section {
    background: linear-gradient(135deg, var(--evergreen-dark) 0%, var(--evergreen) 100%);
    border-radius: 16px;
    padding: 50px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(13, 47, 43, 0.25);
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

/* Luxury decorative elements */
.newsletter-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(195, 32, 38, 0.15) 0%, transparent 70%);
}

.newsletter-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

/* Left side content */
.newsletter-content {
    flex: 1;
    padding-right: 60px;
    z-index: 1;
    max-width: 55%;
}

.newsletter-title {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.newsletter-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--crimson);
}

.newsletter-description {
    color: var(--white);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Right side form */
.newsletter-form {
    flex: 1;
    max-width: 45%;
    z-index: 1;
}

.form-groups {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
}



/* Form container - input takes 2x button width */
.form-container {
    flex: 2;
    /* Input takes 2 parts */
    position: relative;
    min-width: 0;
    /* Prevent flex item from overflowing */
}

/* Button container - takes 1 part */
.button-container {
    flex: 1;
    /* Button takes 1 part */
    min-width: 0;
    /* Prevent flex item from overflowing */
}

/* Modern form control styles */
.form-control {
    position: relative;
    width: 100%;
}

.form-control input {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    color: var(--charcoal);
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    outline: none;
    height: 60px;
}

/* Modern input focus state */
.form-control input:focus {
    background-color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    color: var(--evergreen);
    transform: translateY(-2px);
}

/* Input with value (valid) state */
.form-control input:valid {
    background-color: var(--white);
    border-color: var(--evergreen);
    color: var(--evergreen);
}

/* Modern animated label */
.form-control label {
    position: absolute;
    top: 18px;
    left: 20px;
    pointer-events: none;
    transition: var(--transition);
    font-size: 16px;
    color: var(--evergreen);
    font-weight: 500;
    display: flex;
    white-space: nowrap;
}

.form-control label span {
    display: inline-block;
    transition: var(--transition);
    transition-delay: calc(var(--index) * 30ms);
}

/* Label animation when input is focused or has value */
.form-control input:focus+label,
.form-control input:valid+label {
    top: -10px;
    left: 15px;
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    background-color: var(--gold);
    padding: 2px 10px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Individual letter animation when focused */
.form-control input:focus+label span {
    color: var(--white);
    transform: translateY(-2px);
}

/* Individual letter animation when valid */
.form-control input:valid+label span {
    color: var(--gold);
}

/* Modern button styles */
.btns {
    padding: 0 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    letter-spacing: 1.2px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    height: 60px;
    width: 100%;
}

.btns-primary {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(195, 32, 38, 0.35);
    position: relative;
    overflow: hidden;
}

.btns-primary::before {
    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 ease;
}

.btns-primary:hover {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(195, 32, 38, 0.5);
}

.btns-primary:hover::before {
    left: 100%;
}

/* Success message */
.success-message {
    display: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 228, 166, 0.9) 100%);
    padding: 22px;
    border-radius: 10px;
    margin-top: 20px;
    color: var(--evergreen);
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--gold);
    font-size: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Subscription stats */
.subscription-stats {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.stats-icon {
    margin-right: 10px;
    color: var(--gold);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .newsletter-section {
        padding: 45px 50px;
    }

    .newsletter-description {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .newsletter-section {
        flex-direction: column;
        padding: 40px 35px;
    }

    .newsletter-content {
        padding-right: 0;
        margin-bottom: 35px;
        text-align: center;
        max-width: 100%;
    }

    .newsletter-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter-description {
        font-size: 22px;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-groups {
        flex-direction: column;
    }

    .form-container,
    .button-container {
        width: 100%;
        flex: none;
    }

    .btns {
        width: 100%;
    }

    .luxury-badge {
        display: none;
    }


    .testimonial-content-side {
        padding: 50px 30px;
    }

    .testimonial-text {
        font-size: 22px;
    }


    .testimonial-large-card {
        margin-left: 7px;
        flex: 0 0 calc(100% - 0px);
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 35px 25px;
    }

    .newsletter-description {
        font-size: 20px;
    }

    .form-control input {
        padding: 16px 18px;
        font-size: 15px;
        height: 56px;
    }

    .testimonial-client-side {
        min-height: 300px;
    }

    .btns {
        padding: 0 25px;
        font-size: 14px;
        height: 56px;
    }
}

/* Luxury badge */
.luxury-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 6px 15px;
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
    backdrop-filter: blur(5px);
}

/* Benefits List */
.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 200px;
}

.benefit-icon {
    color: var(--crimson-dark);
    font-size: 18px;
    background: rgba(240, 95, 59, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background: var(--evergreen-dark);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.location-badge i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .luxury-header-3-container {
        flex-direction: column;
    }

    .luxury-border-side {
        width: 100%;
        margin: 1rem 0;
    }

    .luxury-header-content {
        padding: 0;
    }

    .luxury-header-content h2 {
        font-size: 2.5rem;
    }


    .virtual-tour-section {
        padding: 2rem 1.5rem;
    }

    .tour-iframe-container {
        height: 400px;
    }

    .tour-features {
        grid-template-columns: 1fr;
    }

    .quote-icon {
        font-size: 5rem;
    }

    .lake-feature {
        flex-direction: column;
        text-align: center;
    }

    .design-2 {
        flex-direction: column;
    }

    .design-2 .content-left {
        padding-right: 0;
        margin-bottom: 40px;
        margin-top: -50px;
    }


    .design-2 .form-right {
        margin-top: -30px;
        flex: 1;
    }

    h1 {
        font-size: 2rem;
    }
}



/* Luxury Footer with Hotel Elegance */
.luxury-footer {
    background-color: var(--white);
    color: var(--gray);
    padding: 70px 0 35px;
    position: relative;
    overflow: hidden;
    width: 1460px;
    max-width: 1460px;
    border-radius: 20px;
    margin: 40px auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    min-height: 500px;
}

/* 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;
}

/* Desktop height 600px */
@media (min-width: 1024px) {
    .luxury-footer {
        height: 650px;
        max-height: 650px;
    }
}

.footer-container {
    width: 1450px;
    max-width: 1450px;
    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.2;
    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 Styles */
@media (max-width: 1520px) {
    .luxury-footer {
        width: 95%;
        max-width: 95%;
    }

    .footer-container {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .footer-watermark h1 {
        font-size: 90px;
    }

    .footer-top {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .luxury-footer {
        height: auto !important;
        max-height: none !important;
        padding: 50px 0 25px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .footer-watermark h1 {
        font-size: 70px;
        bottom: 10px;
        right: 20px;
    }

    .motel-description .logo-text {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-watermark h1 {
        font-size: 50px;
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
        margin-top: 30px;
        opacity: 0.1;
    }

    .social-links {
        justify-content: center;
    }

    .designer-credit::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-section h3 {
        font-size: 1.4rem;
    }

    .contact-infos p {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-infos i {
        margin-bottom: 10px;
    }

    .payment-methods {
        font-size: 1.7rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .motel-description .logo-text {
        font-size: 2rem;
    }

    .amenity-item {
        padding: 20px 15px;
    }
}