/* VE Hotels Adakale - Main Stylesheet */

:root {
    --primary-color: #c9a86a;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #b5935a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-block { display: block; width: 100%; text-align: center; }

/* Header */
.top-bar {
    background: var(--secondary-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

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

.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img { height: 50px; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown li { padding: 10px 20px; }

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s 0.3s backwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections */
.welcome-section, .features-section, .rooms-section, .location-section {
    padding: 80px 0;
}

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

.section-icon img {
    height: 40px;
    margin-bottom: 20px;
}

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

.text-center { text-align: center; }

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

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-card:hover { transform: translateY(-10px); }

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

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

.room-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.room-card:hover { transform: translateY(-5px); }

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Room Slider Specific Styles - Override for Index Page */
.rooms-slider .room-slide {
    display: none !important;
}

.rooms-slider .room-slide.active {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 470px !important;
    gap: 0 !important;
    background: #fff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
}

.rooms-slider .room-slide .room-image {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.rooms-slider .room-slide .room-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: transform 0.5s ease;
}

.room-price, .room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
}

.room-info { padding: 25px; }

.room-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: #666;
    font-size: 14px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201,168,106,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    font-size: 2rem;
}

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

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* Footer */
.site-footer {
    background: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3, .footer-col h4 { margin-bottom: 20px; color: var(--primary-color); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: white; text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary-color); }
.footer-social a { margin-right: 15px; font-size: 1.5rem; }

/* Contact Info - İkon ve Text Yan Yana */
.contact-info { 
    list-style: none; 
    padding: 0; 
}
.contact-info li { 
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.contact-info i { 
    color: var(--primary-color);
    font-size: 16px;
    min-width: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

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

.cta-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1566665797739-1674de7a421a');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 { font-size: 3rem; margin-bottom: 20px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 30px; }

.page-header {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-header h1 { 
    font-size: clamp(1.8rem, 5vw, 3.5rem); 
    margin-bottom: 10px; 
    line-height: 1.2;
    word-break: break-word;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success { background: #d4edda; color: #155724; border-left: 4px solid var(--success); }
.alert-error { background: #f8d7da; color: #721c24; border-left: 4px solid var(--danger); }

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
}

/* Slider Controls */
.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
    transform: translateY(-50%);
}

.slider-btn {
    background: rgba(201,168,106,0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: rgba(201,168,106,1);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: white;
    transform: scale(1.3);
}

/* Header Buton Düzeltmeleri */
.btn-reserve {
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    padding: 10px 25px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    display: inline-block !important;
}

.btn-reserve:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.top-bar .contact-info a {
    font-weight: 500;
}

/* WhatsApp Buton */
.btn-whatsapp {
    background: #25d366 !important;
    color: white !important;
    border: none !important;
}

.btn-whatsapp:hover {
    background: #20ba5a !important;
}

/* Room Detail Butonları */
.reservation-box .btn-primary,
.reservation-box .btn-secondary,
.reservation-box .btn-whatsapp {
    margin-bottom: 10px;
}

/* Room Detail Görsel Düzeltmeleri */
.room-detail .room-gallery {
    max-width: 100%;
}

.room-detail .main-image {
    max-height: 500px;
    overflow: hidden;
}

.room-detail .main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.room-detail .thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.room-detail .thumbnail {
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
}

.room-detail .thumbnail.active {
    border-color: var(--primary-color);
}

.room-detail .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   HERO SLIDER IMPROVEMENTS
   ========================================== */
.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 106, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.4s both;
    font-size: 1.2rem;
    margin: 20px 0;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(201, 168, 106, 0.3);
}

.btn-hero-primary:hover {
    background: #b8955a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.5);
}

.btn-hero-primary i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ==========================================
   ROOMS SLIDER SECTION
   ========================================== */
.rooms-slider-container {
    position: relative;
    margin: 40px 0;
    padding: 20px;
}

.rooms-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.room-slide {
    display: none;
    background: white;
    animation: slideIn 0.5s ease-out;
}

.room-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.room-slide-image {
    position: relative;
    overflow: hidden;
}

.room-slide-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-slide:hover .room-slide-image img {
    transform: scale(1.05);
}

.room-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.room-slide-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-slide-content h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.room-slide-content .room-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.room-slide-content .room-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.room-slide-content .room-meta i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.room-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.room-amenities-preview {
    margin: 20px 0;
}

.room-amenities-preview h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.room-amenities-preview ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.room-amenities-preview ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.room-amenities-preview ul li i {
    color: var(--primary-color);
}

.room-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.room-buttons a {
    flex: 1;
    text-align: center;
    padding: 14px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.room-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
}

.room-buttons .btn-primary:hover {
    background: #b8955a;
    transform: translateY(-2px);
}

.room-buttons .btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.room-buttons .btn-secondary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

/* Slider Controls */
.room-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

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

.room-slider-btn.prev {
    left: 20px;
}

.room-slider-btn.next {
    right: 20px;
}

/* Slider Dots */
.room-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.room-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.room-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.btn-outline-primary {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   LOCATION SECTION IMPROVEMENTS
   ========================================== */
.location-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.location-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.location-header h2 {
    margin: 0;
}

/* ==========================================
   CONTACT PAGE IMPROVEMENTS
   ========================================== */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.contact-info-card .info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-card .info-content {
    flex: 1;
}

.contact-info-card h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: #666;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.working-hours {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.working-hours h3 {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.working-hours h3 i {
    color: var(--primary-color);
}

.working-hours ul {
    list-style: none;
}

.working-hours ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}

.working-hours ul li:last-child {
    border-bottom: none;
}

/* ==========================================
   ROOMS PAGE MODERN LAYOUT
   ========================================== */
.rooms-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.room-card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.room-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.room-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

.room-card-modern:hover .room-image-wrapper img {
    transform: scale(1.1);
}

.room-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.room-price-tag span {
    font-size: 0.8rem;
    font-weight: 400;
}

.room-card-content {
    padding: 25px;
}

.room-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.room-specs-row {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 15px;
}

.room-specs-row .spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 500;
}

.room-specs-row .spec-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.room-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.room-amenities-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.room-amenities-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
}

.room-amenities-list li i {
    color: var(--primary-color);
}

.room-card-actions {
    display: flex;
    gap: 10px;
}

.room-card-actions a {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-view-details {
    background: var(--primary-color);
    color: white;
}

.btn-view-details:hover {
    background: #b8955a;
    transform: translateY(-2px);
}

.btn-reserve {
    background: var(--secondary-color);
    color: white;
}

.btn-reserve:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.btn-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #b8955a;
    transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .room-slide.active {
        grid-template-columns: 1fr;
    }
    
    .room-slide-image img {
        height: 400px;
    }
    
    .rooms-grid-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .room-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .room-buttons {
        flex-direction: column;
    }
    
    .room-amenities-preview ul {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-specs-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .room-card-actions {
        flex-direction: column;
    }
}

/* ===========================================
   ENHANCED HERO SLIDER STYLES
   =========================================== */
.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

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

.hero-content .animate-text {
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .animate-text {
    animation: slideUpFade 0.8s ease forwards;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 106, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 106, 0.3);
}

.btn-hero-primary:hover {
    background: #b5935a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(201, 168, 106, 0.9);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ===========================================
   GALLERY SLIDER STYLES
   =========================================== */
.gallery-slider-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-slider {
    position: relative;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.gallery-slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-slide.active .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: white;
}

.gallery-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.gallery-slider-btn.prev {
    left: 20px;
}

.gallery-slider-btn.next {
    right: 20px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.gallery-thumb {
    flex: 0 0 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.gallery-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.gallery-thumb.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.4);
}

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

/* ===========================================
   ENHANCED LOCATION SECTION
   =========================================== */
.location-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-content-box {
    padding: 40px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 106, 0.1);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 2px solid rgba(201, 168, 106, 0.2);
}

.location-badge i {
    font-size: 1.2rem;
}

.location-content-box h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.location-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.location-highlights {
    display: grid;
    gap: 20px;
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.highlight-text h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.location-address {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(201, 168, 106, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 30px;
}

.location-address i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.location-address strong {
    color: var(--secondary-color);
}

.location-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.location-map-box {
    position: relative;
}

.location-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.location-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.location-pin-marker {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(201, 168, 106, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(201, 168, 106, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(201, 168, 106, 0.6);
    }
}

/* ===========================================
   RESPONSIVE - LOCATION & GALLERY
   =========================================== */
@media (max-width: 968px) {
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-content-box {
        padding: 20px;
    }
    
    .location-image {
        height: 400px;
    }
    
    .gallery-slider {
        height: 400px;
    }
    
    .gallery-thumb {
        flex: 0 0 100px;
        height: 70px;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 640px) {
    .location-highlights {
        gap: 15px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .location-buttons {
        flex-direction: column;
    }
    
    .location-buttons a {
        text-align: center;
    }
    
    .gallery-slider {
        height: 300px;
    }
    
    .gallery-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-slider-btn.prev {
        left: 10px;
    }
    
    .gallery-slider-btn.next {
        right: 10px;
    }
    
    .gallery-thumb {
        flex: 0 0 80px;
        height: 60px;
    }
}

/* ===========================================
   ROOMS PAGE - MODERN DESIGN
   =========================================== */
.rooms-page-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a252f 100%);
    overflow: hidden;
}

.page-header-bg {
    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 1200 120"><path fill="rgba(255,255,255,0.05)" d="M0,0 L1200,0 L1200,120 L0,60 Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}

.header-content {
    position: relative;
    text-align: center;
    color: white;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 106, 0.2);
    border: 2px solid rgba(201, 168, 106, 0.5);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.rooms-page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: white;
}

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

.rooms-listing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.rooms-count-info {
    text-align: center;
    margin-bottom: 50px;
}

.count-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.rooms-count-info p {
    color: #666;
    font-size: 1.1rem;
}

.rooms-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.room-card-new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.room-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.room-card-new:hover .room-card-image img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.room-price-badge {
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.room-price-badge .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.room-price-badge .period {
    font-size: 0.9rem;
    color: #666;
    margin-left: 5px;
}

.room-quick-view {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.room-card-new:hover .room-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.quick-view-btn {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quick-view-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

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

.room-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.room-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.room-card-title a:hover {
    color: var(--primary-color);
}

.room-features-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.feature-badge i {
    color: var(--primary-color);
}

.room-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.room-amenities-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(201, 168, 106, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.amenity-tag i {
    font-size: 0.75rem;
}

.amenity-tag.more {
    background: var(--primary-color);
    color: white;
}

.room-card-footer {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.btn-room-details {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-room-details:hover {
    background: #b5935a;
    transform: translateX(5px);
}

.btn-room-reserve {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-room-reserve:hover {
    background: var(--primary-color);
    color: white;
}

.no-rooms-message {
    text-align: center;
    padding: 80px 20px;
}

.no-rooms-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #b5935a);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 25px;
}

.no-rooms-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.no-rooms-message p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* ===========================================
   ROOM DETAIL PAGE - MODERN DESIGN
   =========================================== */
.room-detail-section {
    padding: 40px 0 80px;
    background: #f8f9fa;
}

.breadcrumb-nav {
    margin-bottom: 30px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: #ccc;
}

.breadcrumb-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb-list .active {
    color: var(--primary-color);
    font-weight: 500;
}

.room-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-bottom: 50px;
}

.room-gallery-section {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.gallery-main {
    position: relative;
}

.main-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.fullscreen-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fullscreen-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.gallery-thumbnails-wrapper {
    padding: 15px;
    background: #f8f9fa;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.thumb-item {
    position: relative;
    flex: 0 0 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumb-item:hover {
    transform: translateY(-3px);
}

.thumb-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.4);
}

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

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s;
}

.thumb-item:hover .thumb-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.room-info-panel {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.room-header {
    margin-bottom: 20px;
}

.room-detail-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.room-rating {
    display: flex;
    gap: 5px;
    color: #ffc107;
}

.price-display {
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(201, 168, 106, 0.05));
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
    border: 2px solid rgba(201, 168, 106, 0.2);
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.price-main .currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.price-main .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    display: block;
    color: #666;
    font-size: 1rem;
    margin-top: 5px;
}

.room-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.spec-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.spec-box:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.spec-icon {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.spec-box:hover .spec-icon {
    background: var(--secondary-color);
    color: white;
}

.spec-details {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.spec-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.reservation-actions {
    margin-bottom: 25px;
}

.reservation-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.btn-call {
    background: var(--primary-color);
    color: white;
}

.btn-call:hover {
    background: #b5935a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
}

.btn-email {
    background: var(--secondary-color);
    color: white;
}

.btn-email:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.room-features-highlight {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.room-features-highlight h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.features-list i {
    color: var(--primary-color);
    width: 20px;
}

.room-description-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.description-header {
    margin-bottom: 20px;
}

.description-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
}

.description-content {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.amenities-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.amenities-header {
    text-align: center;
    margin-bottom: 40px;
}

.amenities-header h2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.amenities-header p {
    color: #666;
}

.amenities-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.amenity-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.amenity-box:hover {
    background: rgba(201, 168, 106, 0.1);
    transform: translateX(5px);
}

.amenity-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amenity-name {
    color: #333;
    font-weight: 500;
}

.similar-rooms-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.similar-rooms-header {
    text-align: center;
    margin-bottom: 40px;
}

.similar-rooms-header h2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.similar-rooms-header p {
    color: #666;
}

.similar-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.similar-room-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.similar-room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.similar-room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.similar-room-card:hover .similar-room-image img {
    transform: scale(1.1);
}

.similar-room-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.similar-room-price span {
    font-size: 0.85rem;
    color: #666;
}

.similar-room-content {
    padding: 20px;
}

.similar-room-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.similar-room-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.similar-room-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.similar-room-specs i {
    color: var(--primary-color);
}

.similar-room-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.similar-room-btn:hover {
    background: #b5935a;
    transform: translateX(5px);
}

/* ===========================================
   RESPONSIVE - ROOMS & ROOM DETAIL
   =========================================== */
@media (max-width: 1200px) {
    .room-detail-wrapper {
        grid-template-columns: 1fr 350px;
    }
    
    .rooms-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 968px) {
    .rooms-page-header h1 {
        font-size: 2.5rem;
    }
    
    .room-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .room-info-panel {
        position: static;
    }
    
    .main-image-container {
        height: 400px;
    }
    
    .room-specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rooms-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    /* Room Slider Mobile Override */
    .rooms-slider .room-slide.active {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
    
    .rooms-slider .room-slide .room-image {
        height: 320px !important;
        position: relative !important;
    }
}

@media (max-width: 640px) {
    .rooms-page-header {
        padding: 80px 0 50px;
    }
    
    .rooms-page-header h1 {
        font-size: 2rem;
    }
    
    .rooms-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .room-card-footer {
        flex-direction: column;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .room-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-box {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .room-detail-title {
        font-size: 1.5rem;
    }
    
    .price-main .amount {
        font-size: 2.5rem;
    }
    
    .amenities-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .similar-rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb-list {
        font-size: 0.9rem;
    }
}
/* ==========================================
   MOBİL MENU - Hamburger Menu Stilleri
   ========================================== */

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(0,0,0,0.7);
    z-index: 1080;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   MOBİL MENÜ CSS - FINAL ÇALIŞAN VERSİYON
   ============================================ */

/* Hamburger Butonu */

/* ============================================
   MODERN DRAWER MENU - SADECE MENU DEĞİŞTİ
   ============================================ */

/* Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.menu-btn-burger {
    width: 28px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-btn-burger::before,
.menu-btn-burger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-btn-burger::before {
    transform: translateY(-8px);
}

.menu-btn-burger::after {
    transform: translateY(8px);
}

.menu-btn.active .menu-btn-burger {
    background: transparent;
}

.menu-btn.active .menu-btn-burger::before {
    transform: rotate(45deg);
}

.menu-btn.active .menu-btn-burger::after {
    transform: rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), #b5935a);
    color: white;
    flex-shrink: 0;
}

.drawer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.drawer-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.drawer-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.drawer-nav {
    flex: 1;
    padding: 10px 0;
}

.drawer-item {
    border-bottom: 1px solid #f0f0f0;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    background: white;
}

.drawer-link:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

.drawer-item.has-children .drawer-link i {
    transition: transform 0.3s;
    color: #999;
    font-size: 14px;
}

.drawer-item.open .drawer-link i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: max-height 0.3s ease;
}

.drawer-item.open .drawer-submenu {
    max-height: 500px;
}

.drawer-sublink {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.drawer-sublink:hover {
    background: white;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 45px;
}

.drawer-footer {
    padding: 20px;
    background: #fafafa;
    border-top: 2px solid #e0e0e0;
    flex-shrink: 0;
}

.drawer-reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.drawer-reserve-btn:hover {
    background: #b5935a;
    transform: translateY(-2px);
}

.drawer-contact {
    margin-bottom: 15px;
}

.drawer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 0;
}

.drawer-phone:hover {
    color: var(--primary-color);
}

.drawer-phone i {
    color: var(--primary-color);
}

.drawer-social {
    display: flex;
    gap: 10px;
    justify-content: center;

}

.drawer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--text-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.drawer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(2px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Desktop Navigation - Eski haliyle */
.desktop-nav {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.desktop-nav .nav-item {
    position: relative;
}

.desktop-nav .nav-item > a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 0;
    display: block;
}

.desktop-nav .nav-item > a:hover { 
    color: var(--primary-color); 
}

.desktop-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 4px;
    z-index: 100;
}

.desktop-nav .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .submenu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.desktop-nav .submenu li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }
    
    .desktop-nav,
    .btn-reserve {
        display: none;
    }
    
    /* Footer Mobile Fixes */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-col h3,
    .footer-col h4 {
        font-size: 1.2rem;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--primary-color);
    }
    
    /* Contact Info Mobile - Email düzeltmesi */
    .contact-info li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
        word-break: break-word;
    }
    
    .contact-info i {
        min-width: 24px;
        font-size: 14px;
        margin-top: 2px;
    }
}

@media (min-width: 769px) {
    .menu-btn,
    .mobile-drawer,
    .drawer-overlay {
        display: none;
    }
}
