@import url('https://cdnjs.cloudflare.com/ajax/libs/hamburgers/1.2.1/hamburgers.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* ===== SCROLLBAR FIX ===== */
body.modal-open {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 0px);
    /* Prevent layout shift */
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Color Palette - Cappadocia Inspired */
    --primary: #8B4513;
    --primary-light: #A0522D;
    --primary-dark: #5D2E0C;
    --secondary: #D4A574;
    --accent: #E8B86D;
    --accent-light: #F5DEB3;

    /* Neutral Colors */
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(26, 26, 46, 0.8) 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.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: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-video {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
}

.btn-video::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: left 0.5s ease;
}

.btn-video:hover::before {
    left: 100%;
}

.btn-video:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-video i {
    animation: pulse-play 2s infinite;
}

@keyframes pulse-play {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-normal);
}

/* Header Gradient Scrim - Okunabilirlik için */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.header.scrolled::before {
    opacity: 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-600);
    font-family: var(--font-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 36px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.header:not(.scrolled) .nav-link {
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
    color: #E67E22;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.header:not(.scrolled) .nav-link::after {
    background: #E67E22;
}

.header:not(.scrolled) .logo-text {
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.header:not(.scrolled) .logo-text span {
    color: rgba(255, 255, 255, 0.85);
}

/* Dropdown Menu */
.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 240px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 10px 0;
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--gray-100);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 25px;
}

.header:not(.scrolled) .nav-item .nav-link {
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.header:not(.scrolled) .nav-item:hover .nav-link {
    color: #E67E22;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.header:not(.scrolled) .nav-toggle span {
    background: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--dark);
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.slide.active {
    opacity: 1;
    z-index: 5;
}

/* Content Positioning */
.slide.content-center {
    justify-content: center;
    text-align: center;
}

.slide.content-left {
    justify-content: flex-start;
    text-align: left;
}

.slide.content-right {
    justify-content: flex-end;
    text-align: right;
}

.hero-content {
    color: var(--white);
    z-index: 10;
    max-width: 800px;
    position: relative;
    padding: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    opacity: 0;
    /* Hidden by default, shown by animation */
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0;
}

.content-center .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.content-right .hero-subtitle {
    margin-right: 0;
    margin-left: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
}

.content-center .hero-buttons {
    justify-content: center;
}

.content-right .hero-buttons {
    justify-content: flex-end;
}

/* Active Slide Animations */
.slide.active .hero-badge {
    animation: fadeInUpHero 0.8s ease both 0.4s;
}

.slide.active h1 {
    animation: slideInFromLeft 1s cubic-bezier(0.23, 1, 0.32, 1) both 0.7s;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.slide.active.content-center h1 {
    animation: fadeInUpHero 1s cubic-bezier(0.23, 1, 0.32, 1) both 0.7s;
}

.slide.active.content-right h1 {
    animation: slideInFromRight 1s cubic-bezier(0.23, 1, 0.32, 1) both 0.7s;
}

.slide.active .hero-subtitle {
    animation: fadeInUpHero 0.8s ease both 1s;
}

.slide.active .hero-buttons {
    animation: fadeInUpHero 0.8s ease forwards 1.4s;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Tweaks */
@media (max-width: 1200px) {
    .slide {
        padding: 0 20px;
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin: 0 auto 30px !important;
    }

    .hero-buttons {
        justify-content: center !important;
    }

    /* Mobilde sadece ilk slide görünsün, diğerleri gizlensin */
    .slide:not(:first-child) {
        display: none !important;
    }

    .slide:first-child {
        opacity: 1 !important;
        z-index: 5 !important;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.85rem;
}

.hero-scroll i {
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== SECTION STYLES ===== */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-light);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* ===== FEATURES/SERVICES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===== SERVICES GRID (Yeni Görselli Kartlar) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.service-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-badge {
    transform: scale(1.1) rotate(10deg);
}

.service-card-body {
    padding: 25px;
}

.service-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-200);
}

.service-card-features li:last-child {
    border-bottom: none;
}

.service-card-features li i {
    width: 24px;
    height: 24px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.service-card-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
    color: white;
}

.service-card-btn i {
    transition: transform 0.3s ease;
}

.service-card-btn:hover i {
    transform: translateX(5px);
}

/* Services Grid Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-img {
        height: 180px;
    }

    .service-card-body {
        padding: 20px;
    }

    .service-card-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}

/* ===== ROOMS SECTION ===== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    margin-bottom: 12px;
}

.room-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.room-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-700);
}

.room-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.room-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.room-price .price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-600);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* ===== NEWS/BLOG SECTION ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: var(--transition-normal);
}

.news-card:hover .news-content h3 {
    color: var(--primary);
}

.news-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.read-more i {
    transition: var(--transition-normal);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 24px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background: var(--gradient-primary);
    padding: 50px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.8rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-item-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.contact-social a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-800);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== TRAVEL GUIDE SECTION ===== */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.guide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.guide-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.guide-card:hover img {
    transform: scale(1.1);
}

.guide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: var(--white);
}

.guide-content h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.guide-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
}

.guide-link i {
    transition: var(--transition-normal);
}

.guide-card:hover .guide-link i {
    transform: translateX(5px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-family: var(--font-secondary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== PAGE HERO ===== */
.page-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://i.hizliresim.com/7bo4mnm.jpg') center/cover no-repeat;
    padding-top: 80px;
    /* Header space */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.page-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: var(--accent);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.8s ease forwards;
}

/* Scroll Animations */
.js-enabled .reveal,
.js-enabled .reveal-left,
.js-enabled .reveal-right {
    opacity: 0;
    transition: all 0.8s ease;
}

.js-enabled .reveal {
    transform: translateY(50px);
}

.js-enabled .reveal-left {
    transform: translateX(-50px);
}

.js-enabled .reveal-right {
    transform: translateX(50px);
}

.js-enabled .reveal.active,
.js-enabled .reveal-left.active,
.js-enabled .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

.preloader-spinner {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-spinner::before,
.preloader-spinner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
}

.preloader-spinner::before {
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.preloader-spinner::after {
    width: 80%;
    height: 80%;
    border-top-color: var(--accent);
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) reverse infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image::before {
        display: none;
    }

    .about-stats {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1200px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        gap: 0;
        justify-content: flex-start;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 10px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--gray-200);
        color: var(--gray-800) !important;
        text-shadow: none !important;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary) !important;
    }

    .header:not(.scrolled) .nav-toggle.active span {
        background: var(--gray-800);
    }

    /* Hero */
    .hero {
        min-height: 100vh;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Grids */
    .rooms-grid,
    .news-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }

    .contact-map iframe {
        height: 350px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Stats */
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* Page Hero Mobile */
    .page-hero {
        height: auto;
        min-height: 250px;
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    /* Row/Col Mobile */
    .row {
        flex-direction: column;
        gap: 30px !important;
        margin-right: 0;
        margin-left: 0;
    }

    [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-right: 0;
        padding-left: 0;
        min-width: 0 !important;
        /* Reset inline min-width */
    }

    /* Animations Mobile Fix */
    .js-enabled .reveal-left,
    .js-enabled .reveal-right {
        transform: translateY(30px) !important;
        /* Switch to vertical on mobile */
    }

    .js-enabled .reveal-left.active,
    .js-enabled .reveal-right.active {
        transform: translateY(0) !important;
    }

    /* Breadcrumb Mobile */
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .room-content {
        padding: 20px;
    }

    .guide-card {
        height: 300px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.bg-light {
    background-color: var(--gray-100);
}

.bg-dark {
    background: var(--gradient-dark);
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* ===== LOGO IMAGES ===== */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* ===== FLOATING BUTTONS (RIGHT BOTTOM) ===== */
.floating-buttons {
    position: fixed;
    bottom: 90px;
    /* Back to top butonunun üstünde */
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
    align-items: flex-end;
    /* Sağa yaslı */
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    border: 3px solid white;
}

.whatsapp-btn {
    background-color: #25D366;
}

.phone-btn {
    background-color: var(--primary);
}

.floating-btn:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Hover'da açılan metin */
.floating-btn-text {
    position: absolute;
    right: 75px;
    /* Butonun solunda */
    background: white;
    padding: 8px 16px;
    border-radius: 10px;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.floating-btn-text::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.floating-btn:hover .floating-btn-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Back to Top konumu güncellemesi */
.back-to-top {
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
}

/* Mobil için ayarlamalar */
@media (max-width: 1200px) {
    .floating-buttons {
        bottom: 80px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}

/* Mobile Dropdown styles */
@media (max-width: 1200px) {
    .nav-item {
        flex-direction: column;
        align-items: flex-start !important;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        flex: 0 0 auto;
    }

    /* Parent Link wrapper */
    .nav-link {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding-right: 0;
        /* Remove default padding to accommodate the arrow button */
    }

    /* The text link part */
    .nav-link>span {
        /* If it's just text span */
        flex: 1;
        padding-right: 15px;
    }

    .nav-link {
        flex: 0 0 auto;
        /* Prevent vertical growth in nav-menu column */
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none !important;
        /* Force reset */
        left: auto !important;
        top: auto !important;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        background-color: #f8f9fa;
        /* Lighter background for contrast */
        padding: 5px 0;
        margin-top: 5px;
        border-radius: 0;
        transition: none;
        border: none;
        /* Visual indicator of subsection */
        box-sizing: border-box;
        /* Ensure padding doesn't overflow width */
        margin: 0;
    }

    .dropdown-menu.active {
        display: block;
        animation: none;
    }

    .dropdown-item {
        padding: 10px 15px;
        /* Better padding */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--gray-700);
        font-size: 0.95rem;
        font-weight: 500;
        display: block;
        /* Ensure block display */
        width: 100%;
        /* Full width */
        white-space: normal;
        /* Allow wrapping */
        line-height: 1.4;
        text-shadow: none !important;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:active,
    .dropdown-item:hover {
        background-color: rgba(0, 0, 0, 0.03);
        color: var(--primary);
    }

    /* Reset hover effects for mobile */
    .nav-item:hover .dropdown-menu {
        display: none;
    }

    .nav-item .dropdown-menu.active {
        display: block;
    }

    /* Improved Arrow Button - Distinct Click Area */
    .nav-link i {
        transition: transform 0.3s ease;
        padding: 10px 15px;
        /* Large touch target */
        margin-left: auto;
        /* Push to right */
        border-left: none;
        /* Stronger separator */
        color: var(--primary);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
        /* Match typical nav link height */
        background-color: transparent;
        /* Slight background to indicate button */
    }

    .nav-link i:active {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .nav-link.dropdown-active i {
        transform: rotate(180deg);
        background-color: transparent;
        /* Active state bg */
        color: var(--primary);
        /* Active state icon color */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lightbox System */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
    animation: fadeInLightbox 0.4s ease;
}

@keyframes fadeInLightbox {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    transition: opacity 0.3s ease;
}

.lightbox-image.fade-out {
    opacity: 0;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 1);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    font-size: 20px;
    color: var(--dark);
    transition: all 0.3s ease;
    z-index: 2100;
}

.lightbox-close {
    top: -60px;
    right: 0;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 1400px) {
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {

    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Service & Room Gallery Shared Styles */
.service-images-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.gallery-thumb {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.gallery-thumb:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* Nested Dropdown Styles */
.dropdown-item-group {
    position: relative;
    width: 100%;
}

.dropdown-item-group .dropdown-toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
    background: none;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.dropdown-item-group:hover .dropdown-toggle-item {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 25px;
}

/* Desktop Flyout */
@media (min-width: 992px) {
    .dropdown-submenu {
        position: absolute;
        top: 0;
        left: 100%;
        width: 310px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 10px 0;
        z-index: 1002;
        margin-left: 10px;
        white-space: nowrap;
    }

    .dropdown-item-group:hover .dropdown-submenu {
        opacity: 1;
        visibility: visible;
        margin-left: 0;
    }
}

/* Mobile Styling */
@media (max-width: 991px) {
    .dropdown-submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: var(--gray-50);
        opacity: 1;
        visibility: visible;
        padding: 0;
        border-radius: 0;
        /* Usually hidden and toggled, but for CSS-only simple solution, let's keep it visible or indented */
        display: block;
    }

    .dropdown-submenu .dropdown-item {
        padding-left: 40px;
        /* Indent sub-items */
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-item-group .dropdown-toggle-item {
        background: var(--gray-100);
        /* Highlight group header slightly */
    }
}