:root {
    --primary-color: #003580;
    --secondary-color: #0071c2;
    --accent-color: #feba02;
    --light-bg: #f5f5f5;
    --dark-text: #333333;
    --light-text: #ffffff;
    --border-color: #e7e7e7;
    --success-color: #008009;
    --rating-color: #003580;
}

/* FontAwesome Fallback */
.fas, .fa, .far, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome", sans-serif !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-info-circle:before {
    content: "\f05a";
}

.fa-globe:before {
    content: "\f0ac";
}

.fa-star:before {
    content: "\f005";
}

.fa-map-marker-alt:before {
    content: "\f3c5";
}

.fa-check-circle:before {
    content: "\f058";
}

.fa-arrow-right:before {
    content: "\f061";
}

.fa-paper-plane:before {
    content: "\f1d8";
}

.fa-external-link-alt:before {
    content: "\f35d";
}

.fa-headset:before {
    content: "\f590";
}

.fa-shield-alt:before {
    content: "\f3ed";
}

.fa-handshake:before {
    content: "\f2b5";
}

.fab.fa-whatsapp:before {
    content: "\f232";
}

body {
    font-family: BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--dark-text);
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    will-change: transform, height, box-shadow;
    transition: height 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.navbar {
    position: relative;
    z-index: 100;
    background-color: var(--primary-color) !important;
    padding: 0px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
}

.navbar-brand img {
    height: 64px;
    max-height: 100%;
    transition: height 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    object-fit: contain;
}

.navbar .container {
    min-height: 72px;
    display: flex;
    align-items: center;
    transition: min-height 0.25s ease;
}

.header.is-shrunk .navbar .container {
    min-height: 56px;
}

.header.is-shrunk .navbar-brand img {
    height: 48px;
}

@media (max-width: 768px) {
    .navbar .container {
        min-height: 64px;
    }
    .navbar-brand img {
        height: 56px;
    }
    .header.is-shrunk .navbar .container {
        min-height: 56px;
    }
    .header.is-shrunk .navbar-brand img {
        height: 44px;
    }
}

.header.has-shadow .navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
}

.nav-link.active {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transform: translateY(-2px);
}

.btn-header {
    background-color: white;
    color: var(--primary-color);
    font-weight: 500;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background-color: #f1f1f1;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Fullscreen Slider */
.fullscreen-slider {
    opacity: 1;
    transition: opacity 0.5s ease;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    overflow: hidden;
}

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.5s ease, filter 1.5s ease;
    will-change: transform, filter;
    overflow: hidden;
}

.swiper-slide-active .slide-inner {
    filter: brightness(1.05);
    transform: scale(1.05);
}

.swiper-slide-prev .slide-inner,
.swiper-slide-next .slide-inner {
    filter: brightness(0.9);
    transform: scale(1);
}

.slide-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -1;
    transition: filter 1s ease, transform 1.5s ease;
    filter: brightness(1.05) saturate(1.1);
}

.swiper-slide-active .slide-background-image {
    animation: subtleZoom 6s forwards ease-out;
    filter: brightness(1.1) saturate(1.2) contrast(1.05);
}

@keyframes subtleZoom {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.slide-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 6px 12px;
    margin-bottom: 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

/* Splitting Animation */
.slide-title.words.chars.splitting {
    overflow: hidden;
}

.slide-title .word {
    display: inline-block;
    overflow: hidden;
}

.slide-title .char {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: calc(0.05s * var(--char-index));
}

.slide-title .whitespace {
    display: inline-block;
    width: 0.25em;
}

.swiper-slide-active .slide-title .char {
    transform: translateY(0);
    transition-delay: calc(0.05s * var(--char-index));
}

.slide-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
}

.slide-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.animated-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.animated-btn::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.5s;
}

.animated-btn:hover::before {
    left: 100%;
}

/* Feature Box Styles */
.feature-box {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* General feature icon - Ana sayfa için */
.feature-box .feature-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Why Choose section specific icons */
.why-choose-luxury-section .feature-icon {
    font-size: 2.4rem;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.feature-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Why Choose Luxury Section Styles */
.why-choose-luxury-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-luxury-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(254, 186, 2, 0.1) 0%, rgba(254, 186, 2, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-choose-luxury-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 53, 128, 0.1) 0%, rgba(0, 53, 128, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Section Headers */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.lens-flare-effect {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.5);
    filter: blur(8px);
    z-index: 1;
    animation: lensFlareAnimation 10s infinite linear;
}

@keyframes lensFlareAnimation {
    0% {
        opacity: 0;
        transform: scale(0.5) translate(100px, 100px);
    }
    20% {
        opacity: 0.4;
        transform: scale(1) translate(50px, 50px);
    }
    40% {
        opacity: 0.6;
        transform: scale(1.2) translate(0px, 0px);
    }
    60% {
        opacity: 0.4;
        transform: scale(1) translate(-50px, -50px);
    }
    80% {
        opacity: 0.2;
        transform: scale(0.8) translate(-100px, -100px);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) translate(-150px, -150px);
    }
}

.swiper-slide-active .lens-flare-effect {
    animation-play-state: running;
}

/* Hero Slider Navigation Buttons */
.hero-slider .swiper-button-next, 
.hero-slider .swiper-button-prev {
    color: white !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    margin-top: -25px !important;
    z-index: 10 !important;
}

.hero-slider .swiper-button-next:hover, 
.hero-slider .swiper-button-prev:hover {
    background-color: rgba(0, 53, 128, 0.8) !important;
    transform: scale(1.1) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.hero-slider .swiper-button-next:after, 
.hero-slider .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 700 !important;
}

/* General Swiper Navigation Buttons */
.swiper-button-next, 
.swiper-button-prev {
    color: white;
    background-color: rgba(0, 0, 0, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background-color: rgba(0, 53, 128, 0.7);
    transform: scale(1.1);
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    opacity: 0.7;
    background: white;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
    width: 30px;
    height: 10px;
    border-radius: 5px;
}

/* Search Box */
.search-box {
    background-color: var(--primary-color);
    padding: 15px 0 25px;
}

.search-form {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.search-form:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.search-input {
    border: none;
    padding: 15px;
    font-size: 16px;
}

.search-input:focus {
    box-shadow: none;
    border: none;
}

.search-date-input {
    padding: 15px;
    border: none;
    border-left: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-date-input:hover {
    background-color: #f5f5f5;
}

.search-guests-input {
    padding: 15px;
    border: none;
    border-left: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-guests-input:hover {
    background-color: #f5f5f5;
}

.search-button {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: #00487a;
    color: white;
    transform: translateY(-2px);
}

/* Breadcrumbs */
.breadcrumb-container {
    background-color: white;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
    color: #00487a;
}

/* Main Content Container */
.main-container {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-container:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navigation Tabs */
.nav-tabs {
    border-bottom: 1px solid var(--border-color);
}

.nav-tabs .nav-link {
    color: var(--dark-text) !important;
    border: none;
    padding: 15px 20px;
    margin-right: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border: none;
    background-color: transparent;
    color: var(--secondary-color) !important;
}

.nav-tabs .nav-link.active {
    border: none;
    border-bottom: 2px solid var(--secondary-color);
    color: var(--secondary-color) !important;
    background-color: transparent;
    font-weight: 600;
}

/* Hotel Title Section */
.hotel-title-section {
    padding: 20px 0;
}

.hotel-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 8px;
    font-size: 14px;
    margin-right: 10px;
    border-radius: 3px;
}

.hotel-stars {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.hotel-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hotel-address {
    color: #6b6b6b;
    margin-bottom: 15px;
}

.location-badge {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-badge:hover {
    text-decoration: underline;
    color: #00487a;
}

/* General Button Styles */
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}

.btn-primary {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Action Buttons */
.btn-action {
    background-color: var(--secondary-color) !important;
    color: white !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
}

.btn-action:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-reserve {
    padding: 12px 25px;
    font-size: 18px;
}

.btn-wishlist {
    background-color: white;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 10px 15px;
    margin-right: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    background-color: #e6f2fa;
    transform: translateY(-2px);
}

.btn-wishlist i.fas {
    color: #ff5a5f;
}

.btn-share {
    background-color: white;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-share:hover {
    background-color: #e6f2fa;
    transform: translateY(-2px);
}

/* Gallery */
.gallery-container {
    margin-bottom: 20px;
}

.main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #f8f9fa;
    display: block;
}

.main-img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.thumb-img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #f8f9fa;
    display: block;
}

.thumb-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.see-all-photos {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    position: absolute;
    bottom: 10px;
    right: 25px;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.see-all-photos:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    transform: translateY(-2px);
}

/* Rating Box */
.rating-box {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.rating-box:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rating-label {
    font-size: 14px;
    color: #6b6b6b;
    margin-bottom: 5px;
}

.rating-score {
    display: inline-block;
    background-color: var(--rating-color);
    color: white;
    font-weight: 600;
    padding: 5px 9px;
    border-radius: 6px 6px 6px 0;
    font-size: 20px;
    margin-right: 10px;
}

.rating-text {
    font-weight: 600;
    font-size: 18px;
}

.rating-count {
    color: #6b6b6b;
    font-size: 14px;
}

/* Availability Section */
.availability-section {
    background-color: #f5f5f5;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.availability-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
}

.price-note {
    color: #6b6b6b;
    font-size: 14px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.subsection-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

/* Features List */
.feature-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

/* Otel detay sayfası feature icon - daha küçük boyut */
.feature-item .feature-icon {
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 15px;
    min-width: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* Capacity icon styling */
.capacity-icon {
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 8px;
    min-width: 16px;
    display: inline-block;
    vertical-align: middle;
}

/* Amenity icon styling */
.amenity-icon {
    color: var(--success-color, #28a745);
    font-size: 14px;
    margin-right: 8px;
    min-width: 14px;
    display: inline-block;
    vertical-align: middle;
}

/* Rule icon styling */
.rule-icon {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 15px;
    min-width: 24px;
    display: inline-block;
    vertical-align: middle;
}

/* İkon fallback'leri - FontAwesome yüklenmediğinde */
.feature-icon:not(.fas):not(.far):not(.fab),
.capacity-icon:not(.fas):not(.far):not(.fab),
.amenity-icon:not(.fas):not(.far):not(.fab),
.rule-icon:not(.fas):not(.far):not(.fab) {
    display: none;
}

/* İkon yükleme durumu için loading state */
.feature-icon.loading,
.capacity-icon.loading,
.amenity-icon.loading,
.rule-icon.loading {
    opacity: 0.5;
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.feature-text {
    font-size: 16px;
}

/* Facilities Section */
.facilities-container {
    margin-bottom: 30px;
}

.facility-card {
    background-color: white;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    padding: 15px;
    margin-bottom: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.facility-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.facility-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.facility-title i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.facility-list {
    padding-left: 0;
    list-style: none;
}

.facility-list li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.facility-list li:hover {
    transform: translateX(5px);
}

.facility-list li i {
    color: var(--success-color);
    margin-right: 10px;
}

/* Location Section */
.location-section {
    margin-bottom: 30px;
}

.map-container {
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.distance-table {
    width: 100%;
    border-collapse: collapse;
}

.distance-table th {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--dark-text);
    font-weight: 600;
}

.distance-table td {
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

.distance-value {
    text-align: right;
    color: #6b6b6b;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 30px;
}

.review-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    margin-right: 15px;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.review-date {
    color: #6b6b6b;
    font-size: 14px;
}

.review-score {
    background-color: var(--rating-color);
    color: white;
    font-weight: 600;
    padding: 5px 9px;
    border-radius: 6px 6px 6px 0;
    font-size: 16px;
}

.review-text {
    margin-top: 15px;
    line-height: 1.5;
}

/* House Rules Section */
.house-rules-section {
    margin-bottom: 30px;
}

.rule-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.rule-item:hover {
    transform: translateX(5px);
}

.rule-icon {
    width: 40px;
    text-align: center;
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 18px;
}

.rule-text {
    flex-grow: 1;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 30px;
}

.accordion-button {
    font-weight: 600;
    padding: 15px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #e6f2fa;
    color: var(--secondary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #f5f5f5;
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    color: var(--dark-text);
    display: block !important;
    opacity: 1 !important;
}

.footer-logo {
    height: 60px;
    width: auto;
    display: inline-block;
    margin-bottom: 20px;
    image-rendering: auto;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.footer-links {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    text-decoration: underline;
    transform: translateX(3px);
    display: inline-block;
}

.social-icon {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon i {
    transition: all 0.3s ease;
}

.social-icon:hover i {
    color: var(--secondary-color) !important;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 14px;
    color: #6b6b6b;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-brand img {
        height: 75px;
    }
    
    .hotel-title {
        font-size: 24px;
    }
    
    .main-img, .thumb-img {
        height: 300px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .fullscreen-slider {
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .search-button {
        min-width: auto;
        width: 100%;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 15px;
        margin-right: 5px;
    }
    
    .feature-item .feature-icon {
        font-size: 17px;
    }
    
    .capacity-icon {
        font-size: 15px;
    }
    
    .amenity-icon {
        font-size: 13px;
    }
    
    .rule-icon {
        font-size: 22px;
    }
    
    .gallery-container .row {
        min-height: 250px;
    }
    
    .gallery-container .position-relative {
        min-height: 250px;
    }
    
    .gallery-container .position-relative.h-100 {
        height: 250px !important;
        min-height: 250px !important;
    }
    
    .main-img {
        height: 250px;
        min-height: 250px;
    }
    
    .thumb-img {
        height: 120px;
        min-height: 120px;
        margin-bottom: 10px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .fullscreen-slider {
        height: 70vh;
    }
    
    .swiper-button-next, 
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider .swiper-button-next, 
    .hero-slider .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
    }
    
    .hero-slider .swiper-button-next:after, 
    .hero-slider .swiper-button-prev:after {
        font-size: 16px !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-box {
        padding: 25px 15px;
    }
    
    .feature-box .feature-icon {
        font-size: 3rem;
    }
    
    .why-choose-luxury-section .feature-icon {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .feature-box .feature-icon {
        font-size: 2.5rem;
    }
    
    .why-choose-luxury-section .feature-icon {
        font-size: 2.4rem;
    }
    
    .feature-item .feature-icon {
        font-size: 16px;
    }
    
    .capacity-icon {
        font-size: 14px;
    }
    
    .amenity-icon {
        font-size: 12px;
    }
    
    .rule-icon {
        font-size: 20px;
    }
    
    .nav-tabs .nav-link {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .hotel-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .price-tag {
        font-size: 22px;
    }
    
    .slide-title {
        font-size: 1.75rem;
    }
    
    .fullscreen-slider {
        height: 60vh;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Additional Booking.com specific styles */
.badge-genius {
    background-color: #004cb8;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 3px;
    margin-right: 10px;
}

.badge-topseller {
    background-color: #ff8000;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 3px;
}

.modal-fullscreen {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
}

/* Ensure reservation modal appears below header and is clickable */
.modal-backdrop {
    z-index: 1990;
}

.modal {
    z-index: 2000;
}

#reservationModal .modal-dialog {
    margin-top: 90px;
}

/* Second-level modal (privacy) above the first modal and header */
#privacyPolicyModal {
    z-index: 2100;
}

#privacyPolicyModal .modal-dialog {
    margin-top: 90px;
}

/* Ensure second backdrop sits between both modals */
.modal-backdrop.second-backdrop {
    z-index: 2050 !important;
}

/* Custom independent privacy overlay styles */
.privacy-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 2150;
    padding: 20px;
}
.privacy-dialog {
    background: #fff;
    border-radius: 8px;
    max-width: 800px;
    margin: 90px auto 20px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    outline: none;
}
.privacy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}
.privacy-body {
    padding: 16px 20px;
    max-height: 60vh;
    overflow: auto;
}
.privacy-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}
.privacy-close {
    background: transparent;
    border: 0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.privacy-overlay-open {
    overflow: hidden;
}

.price-match {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.price-match:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.price-match i {
    margin-right: 6px;
    font-size: 18px;
}

.rating-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.rating-category-name {
    color: #6b6b6b;
    flex: 1;
}

.rating-bar-container {
    flex: 2;
    height: 6px;
    background-color: #e7e7e7;
    border-radius: 3px;
    margin: 0 10px;
}

.rating-bar {
    height: 100%;
    background-color: var(--success-color);
    border-radius: 3px;
}

.rating-category-score {
    background-color: #f5f5f5;
    color: var(--dark-text);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
}

.highlight-amenity {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.highlight-amenity:hover {
    transform: translateX(5px);
}

.highlight-amenity i {
    color: var(--success-color);
    margin-right: 10px;
}

.frequently-asked {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.frequently-asked:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.qa-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.qa-item:hover {
    transform: translateX(5px);
}

.qa-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.qa-icon {
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 15px;
    min-width: 20px;
}

.ask-question-btn {
    color: var(--secondary-color);
    background-color: white;
    border: 1px solid var(--secondary-color);
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ask-question-btn:hover {
    background-color: #e6f2fa;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Room Card Hover Effect */
.room-card {
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Sticky sidebar offset */
.sticky-offset {
    top: 90px;
}

/* Always visible sidebar */
.tab-pane .card {
    display: block !important;
    opacity: 1 !important;
}

/* Override AOS hiding classes for important elements */
.tab-pane [class*="col-lg-4"],
.tab-pane .availability-section {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Gallery Modal Styles */
.gallery-swiper, .room-gallery-swiper {
    width: 100%;
    height: 80vh;
    position: relative;
}

.gallery-swiper .swiper-slide, .room-gallery-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.gallery-slide-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-slide-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.gallery-slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    backdrop-filter: blur(10px);
    z-index: 10;
}

/* Gallery Navigation Buttons */
.gallery-swiper .swiper-button-next, 
.gallery-swiper .swiper-button-prev,
.room-gallery-swiper .swiper-button-next,
.room-gallery-swiper .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 20;
    cursor: pointer;
}

.gallery-swiper .swiper-button-next:hover, 
.gallery-swiper .swiper-button-prev:hover,
.room-gallery-swiper .swiper-button-next:hover,
.room-gallery-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Disabled Navigation Buttons */
.gallery-swiper .swiper-button-next.swiper-button-disabled,
.gallery-swiper .swiper-button-prev.swiper-button-disabled,
.room-gallery-swiper .swiper-button-next.swiper-button-disabled,
.room-gallery-swiper .swiper-button-prev.swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    transform: none !important;
}

.gallery-swiper .swiper-button-next:after, 
.gallery-swiper .swiper-button-prev:after,
.room-gallery-swiper .swiper-button-next:after,
.room-gallery-swiper .swiper-button-prev:after {
    font-size: 24px;
    font-weight: 700;
}

/* Gallery Pagination */
.gallery-swiper .swiper-pagination,
.room-gallery-swiper .swiper-pagination {
    bottom: 20px !important;
}

.gallery-swiper .swiper-pagination-bullet,
.room-gallery-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    width: 12px;
    height: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
    margin: 0 4px;
    cursor: pointer;
}

.gallery-swiper .swiper-pagination-bullet-active,
.room-gallery-swiper .swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
    width: 32px;
    height: 12px;
    border-radius: 6px;
    transform: scale(1.05);
}

.gallery-swiper .swiper-pagination-bullet:hover,
.room-gallery-swiper .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Gallery Modal Customizations */
.modal-fullscreen .modal-content {
    border-radius: 0;
}

.modal-fullscreen .modal-header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1060;
}

.modal-fullscreen .modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-fullscreen .btn-close,
.modal-fullscreen .btn-close-white {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1080 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
    display: block !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
}

.modal-fullscreen .btn-close:hover,
.modal-fullscreen .btn-close-white:hover {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

.modal-fullscreen .btn-close:focus,
.modal-fullscreen .btn-close-white:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5) !important;
    outline: 2px solid #fff !important;
}

.modal-fullscreen .btn-close::before,
.modal-fullscreen .btn-close-white::before {
    content: '✕' !important;
    font-size: 22px !important;
    font-weight: bold !important;
    color: #333 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    line-height: 1 !important;
    display: block !important;
}

/* Gallery Close Button */
.gallery-close-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 99999;
    font-size: 18px;
    font-weight: normal;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.gallery-close-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #000;
}

.gallery-close-btn:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5) !important;
    outline: 2px solid #fff !important;
}

/* Loading State */
.gallery-slide-container.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.gallery-slide-container.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.gallery-slide-container.loaded::before,
.gallery-slide-container.loaded::after {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Error State */
.gallery-slide-container.error {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.05));
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Focus and High Contrast Support */
@media (prefers-reduced-motion: reduce) {
    .gallery-swiper,
    .room-gallery-swiper,
    .gallery-slide-image,
    .swiper-button-next,
    .swiper-button-prev,
    .modal-fullscreen .btn-close {
        transition: none !important;
        animation: none !important;
    }
}

@media (prefers-contrast: high) {
    .modal-fullscreen .btn-close {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #fff !important;
    }
    
    .gallery-slide-counter {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #fff;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #fff !important;
    }
}

/* Enhanced Focus States */
.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible,
.modal-fullscreen .btn-close:focus-visible {
    outline: 3px solid #fff !important;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3) !important;
}

.swiper-pagination-bullet:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .modal-fullscreen {
        display: none !important;
    }
}

/* Responsive Gallery Styles */
@media (max-width: 1200px) {
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev,
    .room-gallery-swiper .swiper-button-next,
    .room-gallery-swiper .swiper-button-prev {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 992px) {
    .gallery-swiper, .room-gallery-swiper {
        height: 75vh;
    }
    
    .gallery-slide-counter {
        top: 80px;
        right: 20px;
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .modal-fullscreen .modal-header {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .gallery-swiper, .room-gallery-swiper {
        height: 70vh;
    }
    
    .gallery-slide-image {
        max-width: 98%;
        max-height: 98%;
    }
    
    .gallery-slide-counter {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 12px;
        min-width: 60px;
        text-align: center;
    }
    
    .gallery-swiper .swiper-button-next, 
    .gallery-swiper .swiper-button-prev,
    .room-gallery-swiper .swiper-button-next,
    .room-gallery-swiper .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
    
    .gallery-swiper .swiper-button-next:after, 
    .gallery-swiper .swiper-button-prev:after,
    .room-gallery-swiper .swiper-button-next:after,
    .room-gallery-swiper .swiper-button-prev:after {
        font-size: 18px;
    }
    
    .modal-fullscreen .modal-header {
        padding: 10px 15px;
    }
    
    .modal-fullscreen .modal-header .modal-title {
        font-size: 1rem;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .modal-fullscreen .btn-close {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }
    
    .swiper-pagination {
        bottom: 15px !important;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    .swiper-pagination-bullet-active {
        width: 28px !important;
        height: 10px !important;
    }
}

@media (max-width: 576px) {
    .gallery-swiper, .room-gallery-swiper {
        height: 65vh;
    }
    
    .gallery-slide-counter {
        position: fixed;
        top: 60px;
        right: 10px;
        z-index: 1060;
        font-size: 11px;
        padding: 4px 8px;
        min-width: 50px;
    }
    
    .modal-fullscreen .modal-header {
        padding: 8px 12px;
        min-height: 50px;
    }
    
    .modal-fullscreen .modal-header .modal-title {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .modal-fullscreen .btn-close,
    .modal-fullscreen .btn-close-white {
        width: 34px !important;
        height: 34px !important;
        position: fixed !important;
        top: 8px !important;
        right: 12px !important;
        z-index: 1080 !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .gallery-close-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 16px !important;
    }
    
    .gallery-swiper .swiper-button-next, 
    .gallery-swiper .swiper-button-prev,
    .room-gallery-swiper .swiper-button-next,
    .room-gallery-swiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .gallery-swiper .swiper-button-next:after, 
    .gallery-swiper .swiper-button-prev:after,
    .room-gallery-swiper .swiper-button-next:after,
    .room-gallery-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }
    
    .swiper-pagination-bullet-active {
        width: 20px !important;
        height: 8px !important;
    }
}

@media (max-width: 480px) {
    .gallery-swiper, .room-gallery-swiper {
        height: 60vh;
    }
    
    .gallery-slide-image {
        max-width: 100%;
        max-height: 100%;
        border-radius: 4px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .modal-fullscreen .modal-content {
        background: #000 !important;
    }
    
    .modal-fullscreen .modal-header {
        background: rgba(0, 0, 0, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .gallery-swiper .swiper-button-next, 
    .gallery-swiper .swiper-button-prev,
    .room-gallery-swiper .swiper-button-next,
    .room-gallery-swiper .swiper-button-prev {
        opacity: 0.8;
    }
    
    .gallery-swiper .swiper-button-next:active, 
    .gallery-swiper .swiper-button-prev:active,
    .room-gallery-swiper .swiper-button-next:active,
    .room-gallery-swiper .swiper-button-prev:active {
        opacity: 1;
        transform: scale(0.95);
    }
    
    .modal-fullscreen .btn-close:active {
        transform: scale(0.9);
    }
}

/* Similar Hotels Swiper */
.similar-hotels-swiper, .recently-viewed-swiper {
    padding: 20px 5px 40px;
}

.similar-hotels-swiper .swiper-button-next,
.similar-hotels-swiper .swiper-button-prev {
    color: var(--secondary-color);
}

.similar-hotels-swiper .swiper-pagination-bullet-active,
.recently-viewed-swiper .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

/* Animated Button Effect */
.animated-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.animated-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1;
}

.animated-btn:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

.loading-shimmer {
    position: relative;
    overflow: hidden;
}

.loading-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmerMove 1s infinite;
}

@keyframes shimmerMove {
    0% { left: -150%; }
    100% { left: 150%; }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 113, 194, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 113, 194, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 113, 194, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Generic fade-out helper for temporary notices */
.fade-out {
    opacity: 0 !important;
    transition: opacity 0.4s ease;
}

/* Share Modal Icons */
.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-icon:hover {
    transform: translateY(-5px);
}

.share-icon.facebook {
    background-color: #3b5998;
    color: white;
}

.share-icon.twitter {
    background-color: #1da1f2;
    color: white;
}

.share-icon.whatsapp {
    background-color: #25d366;
    color: white;
}

.share-icon.telegram {
    background-color: #0088cc;
    color: white;
}

.share-icon.email {
    background-color: #ea4335;
    color: white;
}

.share-icon i {
    color: white;
}

/* Confirmation Icon */
.confirmation-icon {
    font-size: 60px;
    color: var(--success-color);
    margin-bottom: 20px;
    animation: scaleUp 0.5s ease;
}

@keyframes scaleUp {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* AOS Animation Customization */
[data-aos] {
    pointer-events: auto !important;
}

/* Image Hover Zoom Effect */
.gallery-img {
    transition: transform 0.5s ease;
    cursor: pointer;
}

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

/* Room Gallery Styles */
.room-gallery-preview {
    position: relative;
    width: 100%;
    margin-top: 1rem;
}

.room-preview-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #f8f9fa;
    min-height: 150px;
}

.room-preview-image:hover {
    transform: scale(1.02);
}

.room-gallery-info {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    pointer-events: none;
}

.room-gallery-info i {
    margin-right: 4px;
}

.room-thumbnails {
    display: flex;
    gap: 4px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.room-thumbnail {
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-right: 4px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    min-width: 40px;
    min-height: 40px;
    flex-shrink: 0;
}

.room-thumbnail:hover {
    border-color: #007bff;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.room-thumbnail:last-child {
    margin-right: 0;
}

.room-gallery-preview-mobile .room-preview-image {
    height: 180px;
    min-height: 180px;
}

@media (max-width: 768px) {
    .room-preview-image {
        height: 120px;
        min-height: 120px;
    }
    
    .room-thumbnail {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
    }
}

@media (max-width: 576px) {
    .room-preview-image {
        height: 100px;
        min-height: 100px;
    }
    
    .room-thumbnail {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
    }
}

.no-images-available {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 14px;
}

/* Hero Section */
.hero-section {
    background-image: url('../media/uploads/2025/03/hero-luxury-hotel.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -25px;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Destination Cards */
.destination-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    height: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.destination-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.destination-overlay h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.destination-overlay p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Hotel Cards */
.hotel-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hotel-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.image-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: opacity 0.5s ease, transform 0.7s ease;
}

.main-image {
    opacity: 1;
    position: relative;
    z-index: 1;
    transform: scale(1);
}

.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 2;
    transform: scale(1.05);
}

.hotel-card:hover .main-image {
    opacity: 0;
    transform: scale(1.08);
}

.hotel-card:hover .hover-image-1 {
    opacity: 1;
    animation: fadeInZoom 0.5s ease forwards;
}

@keyframes fadeInZoom {
    0% { opacity: 0; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hotel-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #FFD700;
    color: #333;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 3;
}

.hotel-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.hotel-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.hotel-image-link:hover {
    text-decoration: none;
    color: inherit;
}

.hotel-title-link {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hotel-title-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Popular Destinations Section */
.popular-destinations-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 300px;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
    transform: translateY(0);
}

.destination-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.destination-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.destination-overlay .btn {
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.destination-overlay .btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hotel-card-location {
    color: #6b6b6b;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hotel-card-price {
    margin-top: auto;
    margin-bottom: 15px;
}

.hotel-card-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066B2;
}

.hotel-card-amenities {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 8px;
}

.hotel-card-amenities span {
    font-size: 0.8rem;
    color: #555;
    background-color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.hotel-card-amenities span i {
    color: #0066B2;
    margin-right: 4px;
}

/* Why Choose Us Section */
.why-choose-item {
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0066B2;
}

.why-choose-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Text splitting efekti için */
.word {
    display: inline-block;
    overflow: hidden;
}

.char {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.swiper-slide-active .char {
    transform: translateY(0);
    transition-delay: calc(0.05s * var(--char-index));
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 4px;
    padding: 10px 20px;
}

/* Section Styles */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b6b6b;
}

/* All Hotels Section */
.all-hotels-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.hotels-filter {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.hotels-filter .form-control,
.hotels-filter .form-select {
    height: 50px;
    border-radius: 4px;
}

.hotels-filter .input-group-text {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.hotel-item {
    transition: all 0.5s ease;
}

/* Responsive Rooms Table Styles */
.rooms-table-container {
    width: 100%;
    margin-bottom: 30px;
}

/* Desktop Table Styles */
.rooms-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rooms-table thead {
    background-color: #f7f9fc;
}

.rooms-table th {
    color: #445578;
    font-weight: 600;
    text-align: left;
    padding: 16px 20px;
    border-bottom: 1px solid #eaedf2;
    white-space: nowrap;
}

.rooms-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eaedf2;
    vertical-align: top;
}

.rooms-table tbody tr {
    transition: all 0.2s ease;
}

.rooms-table tbody tr:hover {
    background-color: #f9fafd;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.rooms-table tbody tr:last-child td {
    border-bottom: none;
}

/* Room Name Styles */
.room-name-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.room-name {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.room-specs {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Capacity Styles */
.capacity-column {
    min-width: 160px;
}

.capacity-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.capacity-item:last-child {
    margin-bottom: 0;
}

.capacity-icon {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 14px;
    width: 16px;
}

/* Amenities Styles */
.amenities-column {
    min-width: 220px;
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amenity-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.amenity-icon {
    color: var(--success-color);
    margin-right: 8px;
    font-size: 14px;
    width: 16px;
}

.additional-amenities {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eaedf2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.show-more-container {
    margin-top: 5px;
}

.show-more-btn {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 2px 0;
    transition: all 0.2s ease;
}

.show-more-btn:hover {
    color: var(--primary-color);
}

.show-more-icon {
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.2s ease;
}

.show-more-btn[aria-expanded="true"] .show-more-icon {
    transform: rotate(180deg);
}

/* Action Column Styles */
.action-column {
    text-align: right;
    white-space: nowrap;
    min-width: 120px;
}

.reserve-btn {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 53, 128, 0.2);
}

/* Mobile Card Styles */
.rooms-table-mobile {
    display: none;
}

.room-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.room-card-header {
    padding: 16px;
    border-bottom: 1px solid #eaedf2;
    background-color: #f7f9fc;
}

.room-card-body {
    padding: 16px;
}

.room-card-section {
    margin-bottom: 16px;
}

.room-card-section:last-child {
    margin-bottom: 0;
}

.room-card-section .section-title {
    color: #445578;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #eaedf2;
}

.room-card-footer {
    padding: 12px 16px;
    background-color: #f9fafd;
    border-top: 1px solid #eaedf2;
    text-align: right;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .rooms-table th,
    .rooms-table td {
        padding: 12px 16px;
    }
    
    .capacity-column,
    .amenities-column {
        min-width: auto;
    }
}

@media (max-width: 767px) {
    .rooms-table-desktop {
        display: none;
    }
    
    .rooms-table-mobile {
        display: block;
    }
    
    .room-card-footer {
        text-align: center;
    }
    
    .room-card-footer .reserve-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 1rem;
    }
}

/* Animation for the Show More Toggle */
.collapse {
    transition: all 0.3s ease-out;
}

.collapsing {
    transition: all 0.3s ease-out;
}

/* Experience Another World Section - Special Styling */
.prices-hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 53, 128, 0.3);
    transition: all 0.5s ease;
}

.prices-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="none"><path d="M0,0 Q250,50 500,20 T1000,10 L1000,100 L0,100 Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat-x;
    background-size: 100px 100%;
    animation: wave 8s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25px); }
}

.prices-hero-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 53, 128, 0.4);
}

.prices-animated-text {
    position: relative;
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: -1px;
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@keyframes text-focus-in {
    0% {
        filter: blur(12px);
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        filter: blur(0px);
        opacity: 1;
        transform: scale(1);
    }
}

.prices-cta-btn {
    position: relative;
    background: linear-gradient(45deg, var(--accent-color), #ffcc33);
    color: #000 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(254, 186, 2, 0.3);
    overflow: hidden;
}

.prices-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.prices-cta-btn:hover::before {
    left: 100%;
}

.prices-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(254, 186, 2, 0.5);
    background: linear-gradient(45deg, #ffcc33, var(--accent-color));
    color: #000 !important;
}

.price-banner-tag {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 186, 2, 0.2);
    transition: all 0.3s ease;
}

.price-banner-tag:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Enhanced Tab Styling - Clean active indicator */
.nav-tabs .nav-link.active {
    border: none !important;
    border-bottom: 3px solid var(--secondary-color) !important;
    color: var(--secondary-color) !important;
    background-color: transparent !important;
    font-weight: 700 !important;
    position: relative;
}

/* Hero Section Enhanced Animations */
.fullscreen-slider {
    opacity: 1 !important;
}

.slide-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg, 
        rgba(0, 53, 128, 0.1) 0%, 
        transparent 50%, 
        rgba(0, 113, 194, 0.1) 100%
    );
    pointer-events: none;
    animation: heroShimmer 8s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 53, 128, 0.9), rgba(0, 113, 194, 0.8));
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Prices sayfası için özel feature icon */
.prices-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white !important;
    font-size: 2rem !important;
    position: relative;
    z-index: 1;
}

.prices-feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

/* Prices feature item styling */
.prices-feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.prices-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.prices-feature-item .feature-text {
    width: 100%;
}

.prices-feature-item .feature-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.prices-feature-item .feature-text p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-main {
    background: white;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-description {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 53, 128, 0.25);
    background: white;
}

.contact-form .form-control::placeholder {
    color: #999;
    font-style: italic;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

.form-actions {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 53, 128, 0.3);
}

.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-header {
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-card.whatsapp {
    background: linear-gradient(135deg, #f0fff4, #e6ffed);
    border-color: #25d366;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-card.whatsapp .info-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-value {
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.info-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.whatsapp-link {
    color: #25d366 !important;
    font-weight: 600;
}

.whatsapp-note {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

.contact-map {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.map-container iframe {
    border-radius: 20px;
}

#form-messages {
    display: none;
}

#form-messages.alert {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
}

#form-messages.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-messages.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info-wrapper {
        position: static;
        margin-top: 3rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}