:root {
    --primary-color: #c5a059;
    /* Gold */
    --secondary-color: #1a1a1a;
    /* Dark */
    --text-color: #333;
    --light-text: #fff;
    --bg-light: #f9f9f9;
    --transition: all 0.3s ease;
    --header-height: 80px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

/* --- Top Bar --- */
.top-bar {
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    margin-right: 20px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.social-links a {
    margin-left: 15px;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* --- Main Header --- */
.main-header {
    background: #fff;
    height: var(--header-height);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
}

.nav-menu>li {
    position: relative;
    padding: 0 15px;
}

.nav-menu>li>a {
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-menu>li>a:hover {
    color: var(--primary-color);
}

/* Mega Menu */
.has-mega-menu {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 40px 0;
}

.nav-menu>li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mega-menu-col {
    flex: 1;
}

.mega-menu-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.mega-menu-col ul li {
    margin-bottom: 10px;
}

.mega-menu-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* --- Slider Section --- */
.hero-slider {
    height: calc(100vh - 120px);
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: relative;
    color: #fff;
    z-index: 1;
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    border-radius: 50%;
    opacity: 0;
}

.hero-slider:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

/* Slider Pagination */
.slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-bullet.active,
.slider-bullet:hover {
    background: var(--primary-color);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
        opacity: 1;
        /* Always visible on mobile */
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .slider-pagination {
        bottom: 20px;
    }
}

/* --- Rooms Section --- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .divider {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.room-img {
    height: 250px;
    background: #eee;
    position: relative;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.room-features-short {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #888;
    font-size: 14px;
}

/* --- Features Modülleri --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* --- Parallax Modülleri --- */
.parallax-section {
    height: 400px;
    background-attachment: scroll; /* Changed from fixed for better JS control */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.parallax-overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    height: 100%;
}

.parallax-content {
    position: relative;
    z-index: 1;
}

.parallax-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* --- Footer --- */
.main-footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* --- Responsive --- */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 992px) {

    .nav-menu,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Page --- */
.page-banner {
    height: 300px;
}

.page-banner h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact-page {
    background: var(--bg-light);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-cards {
    flex: 1;
    min-width: 300px;
}

.info-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
    margin-right: 20px;
}

.info-card .details h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.info-card .details p,
.info-card .details a {
    color: #666;
    margin: 0;
    font-size: 15px;
}

.info-card .details a:hover {
    color: var(--primary-color);
}

.social-links-contact {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    font-size: 18px;
}

.social-links-contact a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-box {
    flex: 1.2;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: #fdfdfd;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}

.w-100 {
    width: 100%;
}

.contact-map {
    line-height: 0;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

/* ===================================================
   ODA KARTI - ANA SAYFA GÜNCELLEMELERİ
   =================================================== */
.room-img-link {
    display: block;
    text-decoration: none;
}

.room-img {
    position: relative;
    overflow: hidden;
}

.room-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
}

.room-img-link:hover .room-img-overlay {
    background: rgba(197, 160, 89, 0.25);
}

.room-img-link:hover .room-img {
    transform: scale(1.03);
    transition: transform 0.5s ease;
}

.room-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.room-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 10px 24px;
}

.room-badge-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* ===================================================
   SAYFA BANNER - ODA İÇ SAYFALARI
   =================================================== */
.page-banner {
    height: 420px;
    background-attachment: scroll; /* Changed from fixed for better JS control */
    background-position: center var(--parallax-offset, center);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    position: relative;
}

.page-banner h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-nav i {
    font-size: 10px;
    opacity: 0.6;
}

/* ===================================================
   ODA DETAY SAYFASI - ANA LAYOUT
   =================================================== */
.room-detail-section {
    background: var(--bg-light);
}

.room-detail-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ===================================================
   GALERİ SÜTUNU
   =================================================== */
.room-gallery-col {
    position: sticky;
    top: 100px;
}

.room-main-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    margin-bottom: 15px;
    aspect-ratio: 4/3;
}

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

.room-main-img img:hover {
    transform: scale(1.03);
}

.room-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 35px;
}

.thumb {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s, transform 0.2s;
}

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

.thumb:hover {
    transform: scale(1.05);
}

.thumb.active {
    border-color: var(--primary-color);
}

/* ===================================================
   GALERI GRID
   =================================================== */
.room-gallery-grid {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-title i {
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0,0,0,0.4);
}

/* ===================================================
   ODA BİLGİ SÜTUNU
   =================================================== */
.room-info-col {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.room-badge {
    display: inline-block;
    background: rgba(197,160,89,0.12);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.suite-badge {
    background: linear-gradient(135deg, rgba(197,160,89,0.2), rgba(197,160,89,0.05));
    border: 1px solid var(--primary-color);
}

.room-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.room-detail-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

/* ===================================================
   HIZLI BİLGİ KUTUSU
   =================================================== */
.room-quick-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.quick-info-item i {
    color: var(--primary-color);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* ===================================================
   ODA ÖZELLİKLERİ
   =================================================== */
.room-features-detail {
    margin-bottom: 35px;
}

.room-features-detail h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-features-detail h3::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.features-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    padding: 6px 0;
}

.feature-check i {
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
}

/* ===================================================
   CTA BUTONLARI
   =================================================== */
.room-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.room-cta .btn {
    flex: 1;
    min-width: 160px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 15px;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: 1px solid #25d366;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: #fff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1da851;
    transform: translateY(-5px);
    color: #FFF;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* ===================================================
   HOMEPAGE SERVICE HIGHLIGHTS
   =================================================== */
.service-highlight-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-module {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-module:last-child {
    margin-bottom: 0;
}

.service-module.reverse {
    flex-direction: row-reverse;
}

.service-module-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-module-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.service-module-content {
    flex: 1;
}

.service-module-content .badge {
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.service-module-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-module-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .service-module {
        flex-direction: column !important;
        gap: 30px;
    }
    .service-module-img {
        width: 100%;
    }
}

/* ===================================================
   DİĞER ODALAR BÖLÜMÜ
   =================================================== */
.other-rooms-section {
    background: #fff;
}

.other-rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.other-room-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.other-room-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

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

.other-room-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    background: #fff;
}

.other-room-label h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.other-room-label span {
    color: var(--primary-color);
    font-size: 14px;
    transition: transform 0.3s;
}

.other-room-card:hover .other-room-label span {
    transform: translateX(4px);
}

/* ===================================================
   LİGHTBOX
   =================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--primary-color);
}

/* ===================================================
   SUIT ODA - FOTOĞRAF BİLDİRİMİ
   =================================================== */
.photos-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(197,160,89,0.1);
    border: 1px dashed var(--primary-color);
    border-radius: 8px;
    padding: 12px 18px;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 25px;
}

/* ===================================================
   MOBİL RESPONSIVE - ODA SAYFALARI
   =================================================== */
@media (max-width: 1024px) {
    .room-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .room-gallery-col {
        position: static;
    }

    .other-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 320px;
        background-attachment: scroll;
    }

    .page-banner h1 {
        font-size: 2.2rem;
    }

    .room-info-col {
        padding: 25px;
    }

    .room-detail-title {
        font-size: 1.8rem;
    }

    .room-quick-info {
        grid-template-columns: 1fr 1fr;
    }

    .features-list-grid {
        grid-template-columns: 1fr;
    }

    .other-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-cta {
        flex-direction: column;
    }

    .room-cta .btn {
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .other-rooms-grid {
        grid-template-columns: 1fr;
    }
}