


:root {
    --primary-color: #03658C;
    --secondary-color: #0388A6;
    --tertiary-color: #0396A6;
    --light-blue: #82D0D9;
    --lighter-blue: #C2EDF2;
    --accent: #F77F00;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
}


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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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


html {
    scroll-behavior: smooth;
}


.section-title {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}


.navbar {
    background: transparent;
    backdrop-filter: none;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(3, 101, 140, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-family: 'Jost', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-brand {
    text-shadow: none;
}


.navbar-brand {
    position: relative;
    z-index: 10;
}


.navbar-logo {
    height: 90px;
    width: auto;
    max-width: none;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-logo {
    height: 70px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}


@media (min-width: 992px) {
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }
}


@media (max-width: 991px) {
    .navbar-logo {
        height: 70px;
    }

    .navbar.scrolled .navbar-logo {
        height: 60px;
    }

    .navbar-brand {
        margin-right: auto;
    }
}

.nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white) !important;
    margin: 0 0.8rem;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-link {
    text-shadow: none;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--lighter-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lighter-blue);
    transition: width 0.3s ease;
}

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

.btn-request {
    background: var(--light-blue);
    color: var(--primary-color);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border: 2px solid var(--light-blue);
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .btn-request {
    box-shadow: none;
}

.btn-request:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 5px 15px rgba(130, 208, 216, 0.4);
}


.navbar-toggler {
    border-color: var(--lighter-blue);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(193, 237, 242, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.offcanvas {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    backdrop-filter: blur(10px);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
}

.offcanvas-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
}

.offcanvas-body {
    padding: 2rem 1.5rem;
}

.offcanvas-body .navbar-nav {
    gap: 0.5rem;
}

.offcanvas-body .nav-link {
    font-size: 1.2rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
    text-shadow: none;
}

.offcanvas-body .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .btn-request {
        margin-top: 1rem;
        width: 100%;
    }
}


.hero-section {
    position: relative;
    height: 800px;
    margin-top: 0;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 101, 140, 0.3), rgba(3, 101, 140, 0.6));
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    text-align: left;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.hero-title {
    font-family: 'Jost', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--lighter-blue);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}


.swiper-button-next,
.swiper-button-prev {
    color: var(--lighter-blue);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    display: none;
}

.swiper-pagination-bullet-active {
    display: none;
}


.slide-counter {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .slide-content {
        left: 5%;
        width: 85%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .slide-counter {
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem;
    }
}


.welcome-section {
    background: var(--white);
}

.welcome-text-col {
    display: flex;
    align-items: center;
    background: var(--light-bg);
}

.welcome-content {
    max-width: 600px;
    margin: 0 auto;
}

.welcome-content h2 {
    color: var(--primary-color);
}

.welcome-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.welcome-image-col {
    position: relative;
    min-height: 500px;
}

.welcome-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

@media (max-width: 991px) {
    .welcome-image-col {
        min-height: 400px;
    }
}


.amenity-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    background: var(--white);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(3, 101, 140, 0.2);
}

.amenity-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.amenity-image::after {
    content: '';
}

.amenity-content {
    padding: 1.5rem;
    text-align: center;
}

.amenity-content i {
    color: var(--primary-color);
}

.amenity-content h4 {
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.amenity-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}


.specifications-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5rem 0;
}

.specifications-section .section-subtitle {
    color: var(--white);
}

.spec-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--lighter-blue);
}

.spec-icon {
    margin-bottom: 1.5rem;
}

.spec-icon i {
    color: var(--lighter-blue);
}


.ri-3x {
    font-size: 3rem;
}

.spec-number {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.spec-label {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    color: var(--lighter-blue);
    margin-bottom: 0;
}


.cabins-section {
    background: var(--light-bg);
}

.cabin-row {
    margin-bottom: 0;
}

.cabin-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    min-height: 500px;
}

.cabin-title {
    font-family: 'Jost', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cabin-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cabin-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cabin-features li {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cabin-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.cabin-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 991px) {
    .cabin-image {
        min-height: 400px;
    }

    .cabin-content {
        min-height: auto;
        padding: 3rem 2rem !important;
    }
}


.gallery-section {
    background: var(--white);
    padding: 5rem 0;
}

.gallery-filters {
    margin-bottom: 2rem;
}

.btn-filter {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    padding: 0.6rem 1.8rem;
    margin: 0.3rem;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 101, 140, 0.3);
}

.gallery-item {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 101, 140, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0);
    transition: all 0.3s ease;
}

.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-image-wrapper:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-image-wrapper:hover .gallery-image {
    transform: scale(1.1);
}


.agents-section {
    background: linear-gradient(135deg, var(--tertiary-color), var(--secondary-color));
    color: var(--white);
    padding: 5rem 0;
}

.agents-content h2 {
    color: var(--white);
}

.agents-content .lead {
    font-size: 1.2rem;
    color: var(--lighter-blue);
}

.agents-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agent-feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.agent-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--lighter-blue);
    transform: translateX(10px);
}

.agent-feature-item i {
    color: var(--lighter-blue);
}

.agent-feature-item h5 {
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.agent-feature-item p {
    color: var(--lighter-blue);
    margin-bottom: 0;
}

.agents-cta .btn-primary {
    background: var(--lighter-blue);
    color: var(--primary-color);
    border: 2px solid var(--lighter-blue);
    border-radius: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

.agents-cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.agents-cta .btn-outline-primary {
    border: 2px solid var(--lighter-blue);
    border-radius: 0;
    color: var(--lighter-blue);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

.agents-cta .btn-outline-primary:hover {
    background: var(--lighter-blue);
    color: var(--primary-color);
}

.agents-images img {
    transition: all 0.3s ease;
}

.agents-images img:hover {
    transform: scale(1.05);
}


.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 0;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-contact-item i {
    color: var(--lighter-blue);
    margin-bottom: 0.5rem;
}

.footer-contact-item p {
    font-size: 1.1rem;
    color: var(--lighter-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--lighter-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .social-links {
        justify-content: flex-end;
    }
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lighter-blue);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--lighter-blue);
    color: var(--primary-color);
    transform: translateY(-5px);
    border-color: var(--lighter-blue);
}

.social-link i {
    font-size: 1.2rem;
}


.modal-content {
    border: none;
    border-radius: 0;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

.form-label {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    color: var(--primary-color);
}

.form-control,
.form-select {
    border: 2px solid var(--light-blue);
    border-radius: 0;
    padding: 0.7rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(3, 101, 140, 0.25);
    outline: none;
}

.modal-footer .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
}

.modal-footer .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.modal-footer .btn-secondary {
    border-radius: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}


.btn-specifications {
    background: var(--lighter-blue);
    color: var(--primary-color);
    border: 2px solid var(--lighter-blue);
    border-radius: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    padding: 0.7rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-specifications:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}


.tech-detail-item {
    background: rgba(3, 101, 140, 0.05);
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-detail-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

#technicalDetailsModal .modal-body h6 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--light-blue);
    padding-bottom: 0.5rem;
}


#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(3, 101, 140, 0.3);
}

#scrollToTop:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(3, 101, 140, 0.4);
}

#scrollToTop i {
    font-size: 1.5rem;
}


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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}


@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .welcome-content {
        padding: 2rem !important;
    }

    .cabin-content {
        padding: 2rem !important;
    }

    .spec-number {
        font-size: 2.5rem;
    }

    .cabin-title {
        font-size: 1.8rem;
    }
}


@media print {
    .navbar,
    .footer,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination,
    #scrollToTop {
        display: none !important;
    }
}
