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

html, body {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: normal;
    line-height: 1.5;
    background-color: #FFFFFF;
    color: #35445F;
}

a {
    color: #3a585f;
    outline: 0;
    text-decoration: none;
}

a:hover {
    color: #498D8D;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .7em 0;
}

p {
    margin: 0 0 1em 0;
}

ul, ol {
    margin: 0 1em 1em 1em;
}

li ul, li ol {
    margin: 0 1em;
}

/* Page Wrapper */
.page-wrapper {
    position: relative;
    width: 1150px;
    margin: 0 auto;
    padding-bottom: 50px;
    background-color: rgba(255,255,255,0.39);
    -webkit-box-shadow: 0 0 5px rgba(20,20,20,0.7);
    box-shadow: 0 0 5px rgba(20,20,20,0.7);
}

/* Header / Keyvisual */
#head-wrapper {
    position: relative;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.keyvisual {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: visible;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1.02);
}

/* Logo */
.logo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.logo-wrapper a {
    display: block;
}

.logo-img {
    height: 150px;
    width: auto;
    display: block;
}

/* Navigation */
.navigation-wrapper {
    position: absolute;
    bottom: 211px;
    left: -20px;
    right: -20px;
    z-index: 300;
    background-color: rgba(17,42,46,0.47);
    color: #FFFFFF;
    -webkit-box-shadow: 0 4px 7px -4px #444;
    box-shadow: 0 4px 7px -4px #444;
}

.navigation-wrapper::before,
.navigation-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    height: 0;
    width: 0;
    opacity: .6;
}

.navigation-wrapper::before {
    top: -15px;
    left: 0;
    border-bottom: 15px solid rgba(17,42,46,0.47);
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
}

.navigation-wrapper::after {
    top: -15px;
    right: 0;
    border-bottom: 15px solid rgba(17,42,46,0.47);
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 4px 0;
    transition: 0.3s;
}

.main-navigation {
    list-style-type: none;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
}

.main-navigation li {
    display: inline-block;
    margin: 0;
}

.main-navigation li a {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    padding: 16px 10px;
    color: #FFFFFF;
    background-color: rgba(17,42,46,0.47);
    transition: color .4s, background-color .4s;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
}

.main-navigation li a:hover,
.main-navigation li.cm_current a {
    color: rgba(17,42,46,0.47);
    background-color: #FFFFFF;
}

/* Title Wrapper */
.title-wrapper {
    position: absolute;
    bottom: 0;
    width: 1190px;
    margin-left: -20px;
    background-color: rgba(17,42,46,0.47);
    color: #FFFFFF;
    -webkit-box-shadow: 0 4px 7px -4px #444;
    box-shadow: 0 4px 7px -4px #444;
}

.title-wrapper::before,
.title-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    height: 0;
    width: 0;
    opacity: .6;
}

.title-wrapper::before {
    top: -15px;
    left: 0;
    border-bottom: 15px solid rgba(17,42,46,0.47);
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
}

.title-wrapper::after {
    top: -15px;
    right: 0;
    border-bottom: 15px solid rgba(17,42,46,0.47);
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
}

.title {
    padding: 15px 0;
    text-align: center;
    margin: 0;
    color: #FFFFFF;
}

.subtitle {
    display: none;
}

/* Container Content */
#container-content {
    width: 1150px;
    font-size: 0;
}

#content-wrapper {
    display: inline-block;
    vertical-align: top;
    width: 890px;
    margin: 0;
    padding: 20px;
    font-size: small;
}

.content-main {
    width: 100%;
    color: #35445F;
}

.content-main h1,
.content-main h2,
.content-main h3 {
    color: #2B4D5B;
}

/* Sidebar */
#content-sidebar {
    display: inline-block;
    vertical-align: top;
    width: 210px;
    padding-left: 10px;
    border-left: 1px solid #ccc;
    padding-top: 20px;
    font-size: small;
}

#content-sidebar a {
    color: #3a585f;
    text-decoration: none;
}

#content-sidebar a:hover {
    color: #498D8D;
}

.sidebar-section {
    margin-bottom: 20px;
}

.sidebar-photo {
    margin: 10px 0;
}

.sidebar-photo img {
    width: 100%;
    cursor: pointer;
}

.photo-caption {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.sidebar-buttons {
    margin: 15px 0;
}

.sidebar-btn {
    display: block;
    text-align: center;
    padding: 11px 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: inherit;
    transition: opacity 0.3s;
}

.sidebar-btn:hover {
    opacity: 0.85;
    color: #FFFFFF !important;
}

.btn-blue {
    background-color: rgba(40,31,209,1);
    border: 1px solid rgba(6,6,6,1);
}

.sidebar-small {
    font-size: 12px;
    color: #666;
}

.social-bookmarks {
    list-style: none;
    margin: 15px 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-bookmarks li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    transition: transform 0.3s;
}

.social-bookmarks li a:hover {
    transform: scale(1.15);
}

.social-bookmarks li a i {
    font-size: 22px;
}

/* Footer */
#footer-wrapper {
    position: relative;
    width: 1190px;
    text-align: center;
    margin-left: -20px;
    background-color: rgba(17,42,46,0.47);
    color: #FFFFFF;
    -webkit-box-shadow: 0 4px 7px -4px #444;
    box-shadow: 0 4px 7px -4px #444;
}

#footer-wrapper::before,
#footer-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    height: 0;
    width: 0;
    opacity: .6;
}

#footer-wrapper::before {
    top: -15px;
    left: 0;
    border-bottom: 15px solid rgba(17,42,46,0.47);
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
}

#footer-wrapper::after {
    top: -15px;
    right: 0;
    border-bottom: 15px solid rgba(17,42,46,0.47);
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
}

#footer {
    padding: 20px;
}

#footer a {
    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: normal;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

#footer a:hover {
    color: #ccc;
}

/* Smart Access Button */
.smart-access-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(17,42,46,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.smart-access-button:hover {
    transform: scale(1.1);
}

.smart-access-button i {
    color: #FFFFFF;
    font-size: 20px;
}

.smart-access-menu {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}

.smart-access-menu.active {
    display: flex;
}

.smart-access-menu a {
    text-decoration: none;
}

.smart-access-menu .tile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(17,42,46,0.9);
    color: #fff;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.smart-access-menu .tile:hover {
    transform: translateX(-5px);
}

.smart-access-menu .tile i {
    font-size: 16px;
}

.smart-access-menu .tile span {
    color: #fff;
}

/* Booking Buttons */
.booking-buttons {
    margin: 20px 0;
}

.booking-btn {
    display: inline-block;
    padding: 15px 15px;
    border-radius: 13px;
    background-color: rgba(0,0,255,1);
    border: 1px solid rgba(255,0,0,1);
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 16px;
    width: 260px;
    text-align: center;
    margin-right: 15px;
    margin-bottom: 10px;
    transition: box-shadow 0.3s;
}

.booking-btn:hover {
    box-shadow: inset 0px 0px 0px 1px rgba(255,0,0,1);
    color: #FFFFFF !important;
}

/* FAQ Section */
.faq-section {
    margin: 20px 0;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.faq-question {
    width: 100%;
    padding: 15px;
    background-color: #f7f7f7;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #2B4D5B;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #eee;
}

.faq-answer {
    display: none;
    padding: 15px;
    border-top: 1px solid #ddd;
}

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

/* Contact Form */
.contact-form-wrapper {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #35445F;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid rgba(53,68,95,0.45);
    border-radius: 2px;
    background-color: rgba(53,68,95,0.03);
    color: #35445F;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    transition: border .3s, box-shadow .3s;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border: 1px solid rgba(53,68,95,0.8);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border: 1px solid #35445F;
    box-shadow: 0 0 6px rgba(53,68,95,0.4);
}

.contact-form .form-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.contact-form .form-error {
    color: red;
    margin-bottom: 10px;
}

.btn-submit {
    background-color: rgba(53,68,95,0.08);
    border: 1px solid rgba(53,68,95,0.35);
    color: #35445F;
    padding: 10px 14px;
    border-radius: 2px;
    box-shadow: 0 3px 3px -2px rgba(53,68,95,0.5);
    cursor: pointer;
    transition: transform .1s, box-shadow .2s, border .2s;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
}

.btn-submit:hover {
    border: 1px solid rgba(53,68,95,0.8);
}

.btn-submit:focus {
    outline: 0;
    transform: translateY(2px);
    box-shadow: 0 2px 3px -2px rgba(53,68,95,0.4);
}

/* Responsive */
@media only screen and (max-width: 1250px) {
    .page-wrapper,
    #head-wrapper,
    .keyvisual,
    #keyvisual,
    #container-content {
        width: 100%;
    }

    #content-wrapper {
        width: 70%;
    }

    #content-sidebar {
        width: 25%;
    }

    .title-wrapper,
    #footer-wrapper {
        width: calc(100% + 40px);
    }
}

@media only screen and (max-width: 1023px) {
    html,
    body {
        overflow-x: hidden;
    }

    .page-wrapper {
        width: 100%;
    }

    .keyvisual {
        height: auto;
        min-height: 0;
    }

    #head-wrapper {
        margin: 0;
        padding: 0;
    }

    .slideshow {
        position: relative;
        height: 200px;
        margin: 0;
    }

    .slideshow .slide {
        background-size: cover;
    }

    .logo-wrapper {
        top: 0;
        left: 0;
    }

    .logo-img {
        height: 70px;
    }

    .navigation-wrapper {
        position: absolute;
        top: 10px;
        right: 10px;
        left: auto;
        bottom: auto;
        width: auto;
        margin: 0;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        z-index: 50;
    }

    .navigation-wrapper::before,
    .navigation-wrapper::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(17,42,46,0.9);
        border-radius: 4px;
        padding: 8px 10px;
    }

    .main-nav {
        position: relative;
        flex-direction: column;
        align-items: flex-end;
    }

    .main-navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        background-color: rgba(17,42,46,0.95);
        z-index: 40;
    }

    .main-navigation.active {
        display: flex;
    }

    .main-navigation li {
        display: block;
        width: 100%;
    }

    .main-navigation li a {
        padding: 12px 20px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .main-navigation li:first-child a {
        border-top: 0;
    }

    .main-navigation li.cm_current a {
        color: #FFFFFF;
        background-color: rgba(17,42,46,0.7);
    }

    .title-wrapper {
        position: relative;
        bottom: auto;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
    }

    .title-wrapper::before,
    .title-wrapper::after {
        display: none;
    }

    .title span {
        font-size: 26px !important;
    }

    #container-content {
        width: 100%;
    }

    #content-wrapper {
        display: block;
        width: 100%;
        padding: 15px;
    }

    #content-sidebar {
        display: block;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        border-left: none;
        border-top: 1px solid #ccc;
    }

    #footer-wrapper {
        width: 100%;
        margin-left: 0;
    }

    #footer-wrapper::before,
    #footer-wrapper::after {
        display: none;
    }

    #footer a {
        font-size: 14px;
    }

    .booking-btn {
        width: 100%;
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .slideshow {
        height: 180px;
    }

    .logo-img {
        height: 60px;
    }

    .title span {
        font-size: 20px !important;
    }

    #footer a {
        font-size: 12px;
    }
}
