

:root {
    --primary-color: var(--color-rank-1);
    --primary-dark: var(--color-rank-7);
    --secondary-color: var(--color-rank-5);
    --dark-bg: var(--color-rank-2);
    --dark-card: var(--color-rank-5);
    --dark-border: var(--color-rank-3);
    --text-light: var(--color-rank-6);
    --text-muted: var(--color-rank-4);
    --text-body: var(--color-rank-8);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--color-rank-14);
}

.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 0;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.main-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--color-rank-15);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px var(--color-rank-18);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 4px;
}

.brand-sub {
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
    display: none;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: calc(100% - 40px);
}

.navbar-nav .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    vertical-align: middle;
    margin-left: 6px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 0;
    padding: 10px 0;
    min-width: 200px;
}

.dropdown-item {
    color: var(--text-body) !important ;
    padding: 10px 20px;
    font-size: 14px;
    background-color: var(--dark-card) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--primary-color) !important;
    color: var(--dark-bg) !important;
}

.dropdown-divider {
    border-color: var(--dark-border);
}

.lang-dropdown .btn-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
}

.lang-dropdown .btn-link:hover {
    color: var(--primary-color);
}

.btn-reservation {
    margin-left: 20px;
}

.navbar-toggler {
    border-color: var(--primary-color);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.offcanvas {
    background: var(--dark-bg);
    border-left: 1px solid var(--dark-border);
}

.offcanvas-header {
    border-bottom: 1px solid var(--dark-border);
    padding: 20px;
}

.offcanvas-body {
    padding: 20px;
}

.mobile-nav .nav-link {
    color: var(--text-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-border);
    font-size: 15px;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    color: var(--primary-color);
}

.mobile-nav .collapse .nav-link {
    font-size: 13px;
    padding: 8px 0;
    border-bottom: none;
    color: var(--text-muted);
}


.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.hero-slide {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-rank-16) 0%, var(--color-rank-17) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}



.hero-slider .swiper-pagination {
    bottom: 40px;
}

.hero-slider .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: var(--text-muted);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

.hero-partners {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    z-index: 10;
}

.partners-label {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0.6;
}

.partners-logos img {
    height: 30px;
    filter: grayscale(100%) brightness(2);
}

.about-section {
    background: var(--dark-bg);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 30px;
    text-align: center;
}

.about-experience h3 {
    font-size: 48px;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.about-experience p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.about-content {
    padding-left: 50px;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--primary-color);
    font-size: 20px;
}

.about-feature span {
    font-size: 14px;
    font-weight: 500;
}

.advantages-section {
    background: var(--secondary-color);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.advantage-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--dark-border);
    background: var(--dark-bg);
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 32px;
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.advantage-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.advantage-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.rooms-section {
    background: var(--dark-bg);
}

.room-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    overflow: hidden;
    transition: var(--transition);
}

.room-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.room-card-image {
    position: relative;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-card-image img {
    transform: scale(1.1);
}

.room-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.room-card-body {
    padding: 25px;
}

.room-card-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.room-card-title a {
    color: var(--text-light);
}

.room-card-title a:hover {
    color: var(--primary-color);
}

.room-card-price {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.room-card-price span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.room-card-features {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--dark-border);
}

.room-card-features span {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-card-features i {
    color: var(--primary-color);
}

.rooms-slider .swiper-button-next,
.rooms-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--primary-color);
}

.rooms-slider .swiper-button-next::after,
.rooms-slider .swiper-button-prev::after {
    font-size: 16px;
}

.rooms-slider .swiper-button-next:hover,
.rooms-slider .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.related-rooms-slider .swiper-button-next,
.related-rooms-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--primary-color);
}

.related-rooms-slider .swiper-button-next::after,
.related-rooms-slider .swiper-button-prev::after {
    font-size: 16px;
}

.related-rooms-slider .swiper-button-next:hover,
.related-rooms-slider .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}


.services-section {
    background: var(--secondary-color);
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card-image {
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, var(--color-rank-15) 65%, var(--color-rank-17) 85%, var(--color-rank-19) 100%);
}

.service-card-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card-title a {
    color: var(--text-light);
}

.service-card-title a:hover {
    color: var(--primary-color);
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.service-card-link {
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-card-link i {
    transition: var(--transition);
}

.service-card:hover .service-card-link i {
    transform: translateX(5px);
}

.gallery-section {
    background: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-rank-20);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay i {
    font-size: 32px;
    color: var(--dark-bg);
}

.faq-section {
    background: var(--secondary-color);
}

.accordion-item {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    margin-bottom: 15px;
}

.accordion-button {
    background: var(--dark-bg);
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    padding: 20px 25px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: none;
}

.accordion-body {
    background: var(--dark-card);
    color: var(--text-muted);
    padding: 20px 25px;
    border-top: 1px solid var(--dark-border);
}

.blog-section {
    background: var(--dark-bg);
}

.blog-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    border-color: var(--primary-color);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 10px 15px;
    text-align: center;
    line-height: 1.2;
}

.blog-card-date span {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.blog-card-date small {
    font-size: 11px;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-card-meta span {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-meta i {
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-light);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-card-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--dark-bg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-rank-21);
    z-index: 0;
}



.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content::before {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto 30px;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content h2 span {
    color: var(--primary-color);
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 220px;
    padding: 16px 40px;
    font-size: 14px;
}

.cta-buttons .btn-primary {
    box-shadow: 0 10px 40px var(--color-rank-14);
}

.cta-buttons .btn-primary:hover {
    box-shadow: 0 15px 50px var(--color-rank-22);
}

.btn-dark {
    background: var(--dark-bg);
    color: var(--text-light);
    border: none;
    padding: 15px 35px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 0;
}

.btn-dark:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-outline-dark {
    border: 2px solid var(--dark-bg);
    color: var(--dark-bg);
    background: transparent;
    padding: 13px 35px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 0;
}

.btn-outline-dark:hover {
    background: var(--dark-bg);
    color: var(--primary-color);
}


.main-footer {
    background: var(--secondary-color);
    border-top: 1px solid var(--dark-border);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 4px;
}

.footer-brand .brand-sub {
    font-size: 12px;
    letter-spacing: 6px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dark-border);
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--dark-border);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::before {
    width: 15px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    margin-top: 3px;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.page-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-rank-16), var(--color-rank-23));
}

.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.banner-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.breadcrumb {
    justify-content: center;
    margin: 0;
    background: transparent;
}

.breadcrumb-item {
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

.editor-content {
    color: var(--text-body);
    line-height: 1.8;
}

.editor-content p {
    margin-bottom: 20px;
}

.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.editor-content h2 {
    font-size: 32px;
}

.editor-content h3 {
    font-size: 26px;
}

.editor-content h4 {
    font-size: 22px;
}

.editor-content ul,
.editor-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.editor-content li {
    margin-bottom: 10px;
}

.editor-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    background: var(--dark-card);
    font-style: italic;
    color: var(--text-muted);
}

.editor-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--dark-border);
}

.sidebar-search .form-control {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 0;
}

.sidebar-search .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.sidebar-search .btn {
    border-radius: 0;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    border-bottom: 1px solid var(--dark-border);
}

.sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.sidebar-categories a:hover {
    color: var(--primary-color);
}

.sidebar-categories span {
    background: var(--dark-bg);
    padding: 2px 10px;
    font-size: 12px;
}

.sidebar-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--dark-border);
}

.sidebar-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post-item:first-child {
    padding-top: 0;
}

.sidebar-post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-content h6 {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.sidebar-post-content h6 a {
    color: var(--text-light);
}

.sidebar-post-content h6 a:hover {
    color: var(--primary-color);
}

.sidebar-post-content span {
    font-size: 12px;
    color: var(--text-muted);
}

.pagination-wrapper {
    margin-top: 50px;
}

.pagination .page-link {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-light);
    padding: 12px 18px;
    margin: 0 5px;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.form-control,
.form-select {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    color: var(--text-light);
    padding: 15px 20px;
    border-radius: 0;
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    background: var(--dark-bg);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-check-input {
    background-color: var(--dark-bg);
    border-color: var(--dark-border);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-muted);
    font-size: 14px;
}

.invalid-feedback {
    font-size: 12px;
}


.contact-info-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
}

.contact-info-card i {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 28px;
}

.contact-info-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.contact-info-card a {
    color: var(--text-muted);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 40px;
}

.map-wrapper {
    height: 400px;
    border: 1px solid var(--dark-border);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--text-muted);
    padding: 10px 25px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.detail-gallery {
    margin-bottom: 30px;
}

.detail-gallery-main {
    margin-bottom: 15px;
}

.detail-gallery-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.detail-gallery-thumbs .swiper-slide {
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.detail-gallery-thumbs .swiper-slide-thumb-active,
.detail-gallery-thumbs .swiper-slide:hover {
    opacity: 1;
}

.detail-gallery-thumbs img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.detail-info {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 30px;
    margin-bottom: 30px;
}

.detail-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.detail-price {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.detail-price span {
    font-size: 14px;
    color: var(--text-muted);
}

.detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 20px;
}

.detail-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.detail-feature i {
    color: var(--primary-color);
    width: 20px;
}

.detail-sidebar .sidebar-widget {
    margin-bottom: 20px;
}

.sidebar-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-service-list li {
    border-bottom: 1px solid var(--dark-border);
}

.sidebar-service-list li:last-child {
    border-bottom: none;
}

.sidebar-service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.sidebar-service-list a:hover,
.sidebar-service-list a.active {
    color: var(--primary-color);
}

.sidebar-service-list i {
    font-size: 12px;
}

.related-slider {
    margin-top: 60px;
}

.history-section {
    background: var(--dark-bg);
}

.history-content {
    padding-right: 50px;
}

.vision-mission-section {
    background: var(--secondary-color);
}

.vm-card {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    padding: 40px;
    height: 100%;
    transition: var(--transition);
}

.vm-card:hover {
    border-color: var(--primary-color);
}

.vm-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.vm-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--text-muted);
    margin: 0;
}

.values-section {
    background: var(--dark-bg);
}

.value-card {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--dark-border);
    background: var(--dark-card);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.value-card i {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 28px;
}

.value-card h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.career-intro {
    background: var(--dark-bg);
}

.career-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.career-form-section {
    background: var(--secondary-color);
}

.career-form-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 40px;
}

.text-muted {
    color: var(--text-muted) !important;
}

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-content {
        padding-left: 30px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat-item h3 {
        font-size: 36px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-experience {
        right: 0;
    }
    
    .gallery-grid,
    .gallery-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .history-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    html, body {
        overflow-x: hidden;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-desc {
        font-size: 14px;
    }
    

    
    .section-title {
        font-size: 28px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .page-banner {
        height: 300px;
    }
    
    .gallery-grid,
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .contact-form-wrapper,
    .career-form-wrapper {
        padding: 25px;
    }
    
    .detail-title {
        font-size: 24px;
    }
    
    .detail-price {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .gallery-grid,
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .gallery-filters {
        flex-direction: column;
    }
    
    .gallery-filter-btn {
        width: 100%;
    }
}


.detail-gallery-main {
    position: relative;
}

.detail-gallery-main .swiper-button-next,
.detail-gallery-main .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--primary-color);
}

.detail-gallery-main .swiper-button-next::after,
.detail-gallery-main .swiper-button-prev::after {
    font-size: 16px;
}

.detail-gallery-main .swiper-button-next:hover,
.detail-gallery-main .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}


.service-gallery-grid .gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
}

.service-gallery-grid .gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: var(--transition);
}

.service-gallery-grid .gallery-item:hover img {
    transform: scale(1.1);
}


/* whatsapp-Ã§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 45px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 45px;

    border-radius: 50%;

    /* Yuvarlak gÃ¶rÃ¼nÃ¼m iÃ§in */

    box-shadow: 2px 2px 8px var(--color-rank-24);

    /* Hafif gÃ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃ§in geÃ§iÅŸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃ¼yÃ¼me efekti */
}

/* Ã§erez bandÄ± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: #f8f8f8ef;

    color: var(--color-rank-11);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */

    box-shadow: 0 -2px 5px var(--color-rank-25);

    transform: translateY(100%);

    /* BaÅŸlangÄ±Ã§ta aÅŸaÄŸÄ± kaydÄ±rarak gizle */

    opacity: 0;

    /* GÃ¶rÃ¼nÃ¼rlÃ¼ÄŸÃ¼ de sÄ±fÄ±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÄ±k geÃ§iÅŸini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃ¶stermek iÃ§in yukarÄ± kaydÄ±r */

    opacity: 1;

    /* GÃ¶rÃ¼nÃ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--primary);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--primary-color);

    color: var(--color-rank-6);

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: all 0.3s ease-in-out;
}

.cookie-button:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-color);
}

/* Responsive TasarÄ±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* Ã§erez bandÄ± */

/* whatsapp-Ã§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-rank-12);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-6);
    background-color: var(--primary-color);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-rank-6);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.navbar-brand img, footer .footer-logo img{
  object-position: left;
  object-fit: contain;
  width: 120px;
  height: auto;
}  


.custom-icon {
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: var(--primary-color);
    width: 32px;
    height: 32px;
}
.advantage-card:hover .advantage-icon .custom-icon {
    background-color: var(--dark-bg);
}

.rooms-section .swiper-wrapper {
    padding-top: 2rem;
}

.blog-card-date {
    padding: 8px 15px;
    text-align: center;
    line-height: 1.2;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 12px;
    font-weight: 700;
}

.accordion-button:focus {
    box-shadow: none;
}

.sidebar-categories li.active a {
    color: var(--primary-color);
}

.sidebar-service-list li.active a {
    color: var(--primary-color);
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    pointer-events: auto;
}

#dynamicPopup .btn-dark:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

#dynamicPopup .btn-primary:hover {
    background: var(--dark-bg);
    color: var(--primary-color);
}


#dynamicPopup .modal-content {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 20px;
    border-radius: 10px;
}
#dynamicPopup .modal-header {
    border-bottom: 1px solid var(--dark-border);
}
#dynamicPopup .modal-footer {
    border-top: 1px solid var(--dark-border);
}
#dynamicPopup .modal-body {
    color: var(--text-light);
}
#dynamicPopup .modal-title {
    color: var(--text-light);
}

#dynamicPopup .modal-dialog-scrollable .modal-body {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

/* WebKit (Chrome, Edge, Safari) */
#dynamicPopup .modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    width: 8px;
}

#dynamicPopup .modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
    background: var(--color-rank-9); /* arka plan (daha açık/koyu yapabilirsin) */
}

#dynamicPopup .modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
    background: var(--color-rank-10);      /* scrollbar rengi */
    border-radius: 4px;
}

#dynamicPopup .modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--color-rank-13);      /* hover rengi */
}

/* Firefox için */
#dynamicPopup .modal-dialog-scrollable .modal-body {
    scrollbar-width: thin;
    scrollbar-color: var(--color-rank-10) var(--color-rank-9); /* thumb rengi, track rengi */
}

/* Google'ın kendi dark mode'u yetmezse bunu kullanabilirsin */
.g-recaptcha {
    filter: invert(0.9) hue-rotate(180deg);
}