* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   MODERN HEADER - Transparent Over Slider
   ============================================ */

/* Ana sayfada header transparan ve slider üzerinde */
.home-page .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.home-page .header.scrolled {
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Diğer sayfalarda header her zaman sabit ve koyu */
body:not(.home-page) .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-top {
    display: none; /* Hide contact info in modern design */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo h1 {
    color: #fff;
    font-size: 24px;
    margin: 0;
    font-family: 'Trajan', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

.nav-menu a:hover:after {
    width: 100%;
}

.nav-menu a:hover {
    color: #d4af37;
}

/* Language Switcher in Menu */
.language-switcher {
    display: flex;
    gap: 10px;
}

.language-switcher a {
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    color: #fff !important;
    font-size: 12px;
    text-shadow: none !important;
}

.language-switcher a:after {
    display: none;
}

.language-switcher a.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #d4af37 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

/* ============================================
   FULL SCREEN SLIDER WITH OVERLAY INFO
   ============================================ */
.slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
}

.slide.fade-out {
    opacity: 0;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurnsZoom 10s ease-out forwards;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Slider Overlay Info - Top Right */
.slider-info {
    position: absolute;
    top: 120px;
    right: 60px;
    z-index: 100;
    text-align: right;
    color: #fff;
}

.slider-time {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.slider-time svg {
    width: 40px;
    height: 40px;
}

.slider-date {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* Weather Widget in Slider */
.weather-widget {
    position: absolute;
    bottom: 200px;
    right: 60px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 25px;
    color: white;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weather-icon i {
    font-size: 50px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.weather-info {
    flex: 1;
}

.weather-temp {
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.weather-city {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.weather-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: capitalize;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ============================================
   BOOKING FORM - Over Slider Bottom
   ============================================ */
.booking-form {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    width: calc(100% - 120px);
}

.booking-form form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
}

.booking-form label {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-form input,
.booking-form select {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: all 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255,255,255,0.15);
}

.booking-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.booking-form select option {
    background: #2a2a2a;
    color: #fff;
}

.booking-form button,
.booking-form .btn-primary {
    flex-shrink: 0;
    padding: 14px 40px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.booking-form button:hover,
.booking-form .btn-primary:hover {
    background: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 200px;
    left: 10px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 55px;
    height: 55px;
}

/* Mobilde WhatsApp butonu daha aşağıda */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

/* ============================================
   SECTIONS - Keep existing styles
   ============================================ */
.about-section-home,
.rooms-section,
.facilities-section,
.map-section,
.newsletter-section {
    padding: 80px 0;
}

/* Section Titles */
h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #2c5f5d;
    font-family: 'Trajan', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 2px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .slider-info {
        right: 30px;
        top: 100px;
    }
    
    .weather-widget {
        right: 30px;
        bottom: 180px;
    }
    
    .booking-form {
        width: calc(100% - 60px);
        padding: 25px 30px;
    }
    
    .booking-form form {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Logo küçült */
    .logo img {
        max-width: 80px !important;
        height: auto !important;
    }
    
    .logo h1 {
        font-size: 18px !important;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .slider {
        min-height: 600px;
    }
    
    .slider-info {
        top: 80px;
        right: 20px;
    }
    
    .slider-time {
        font-size: 36px;
    }
    
    .slider-time svg {
        width: 30px;
        height: 30px;
    }
    
    .weather-widget {
        right: 5px;
        bottom: 196px;
        padding: 15px 20px;
        min-width: 160px;
    }
    
    .weather-icon i {
        font-size: 40px;
    }
    
    .weather-temp {
        font-size: 24px;
    }
    
    /* Mobile Booking Form - Fixed Bottom */
    .booking-form {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0;
        border-radius: 0;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 -5px 30px rgba(0,0,0,0.5);
        transform: none;
        z-index: 999;
    }
    
    .booking-form form {
        display: grid;
        grid-template-columns: 1fr 1fr 0.7fr 0.7fr;
        gap: 0;
        padding: 10px 8px;
        align-items: stretch;
    }
    
    .booking-form .form-group {
        min-width: auto;
        border-right: 1px solid rgba(255,255,255,0.1);
        padding: 0 6px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .booking-form .form-group:last-of-type {
        border-right: none;
    }
    
    .booking-form label {
        font-size: 8px;
        margin-bottom: 3px;
        letter-spacing: 0.5px;
        color: rgba(255,255,255,0.6);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .booking-form input,
    .booking-form select {
        padding: 6px 2px;
        font-size: 12px;
        background: transparent;
        border: none;
        color: #fff;
        font-weight: 600;
        width: 100%;
    }
    
    .booking-form input:focus,
    .booking-form select:focus {
        background: transparent;
        border: none;
        outline: none;
    }
    
    .booking-form button,
    .booking-form .btn-primary {
        grid-column: 1 / -1;
        padding: 12px 16px;
        margin: 8px 0 0 0;
        border-radius: 4px;
        font-size: 11px;
        letter-spacing: 1px;
        white-space: nowrap;
        width: 100%;
    }
    
    /* Adjust slider for mobile fixed form */
    .slider {
        margin-bottom: 100px;
    }
    
    /* Adjust body padding for fixed form */
    body {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    /* Logo daha da küçült */
    .logo img {
        max-width: 60px !important;
        height: auto !important;
    }
    
    .logo h1 {
        font-size: 16px !important;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    /* Küçük ekranlarda form düzeni */
    .booking-form form {
        grid-template-columns: 1fr 1fr 0.6fr 0.6fr;
        padding: 8px 6px;
    }
    
    .booking-form .form-group {
        padding: 0 4px;
    }
    
    .booking-form label {
        font-size: 7px;
        margin-bottom: 2px;
    }
    
    .booking-form input,
    .booking-form select {
        padding: 5px 2px;
        font-size: 11px;
    }
    
    .booking-form button,
    .booking-form .btn-primary {
        padding: 10px;
        font-size: 10px;
        margin-top: 6px;
    }
}


/* ============================================
   MOBILE MENU - Slide from Right
   ============================================ */
@media (max-width: 768px) {
    /* Menü gizli - sağda */
    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 70%;
        max-width: 400px;
        background: rgba(30, 40, 45, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        gap: 0;
        padding: 100px 40px 40px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    }
    
    /* Menü açık */
    .nav-menu.mobile-active {
        right: 0;
    }
    
    /* Overlay arka plan */
    .nav-menu.mobile-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    /* Close button */
    .nav-menu.mobile-active::after {
        content: '×';
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 40px;
        color: #fff;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        animation: fadeIn 0.5s ease 0.2s forwards;
    }
    
    /* Menü öğeleri */
    .nav-menu li {
        width: 100%;
        text-align: right;
        opacity: 0;
        transform: translateX(30px);
    }
    
    .nav-menu.mobile-active li {
        animation: slideInRight 0.4s ease forwards;
    }
    
    .nav-menu.mobile-active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.mobile-active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.mobile-active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.mobile-active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.mobile-active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.mobile-active li:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu.mobile-active li:nth-child(7) { animation-delay: 0.4s; }
    .nav-menu.mobile-active li:nth-child(8) { animation-delay: 0.45s; }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Menü linkleri */
    .nav-menu a {
        display: block;
        padding: 18px 0;
        font-size: 18px;
        letter-spacing: 2px;
        color: rgba(255,255,255,0.9) !important;
        text-shadow: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s;
        text-align: right;
        font-weight: 500;
    }
    
    .nav-menu a:hover {
        color: #d4af37 !important;
        padding-right: 10px;
    }
    
    .nav-menu a:after {
        display: none;
    }
    
    /* Dil seçici */
    .nav-menu .language-switcher {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.2);
        width: 100%;
        justify-content: flex-end;
        gap: 15px;
    }
    
    .nav-menu .language-switcher a {
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 4px;
        width: 50px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
    }
    
    .nav-menu .language-switcher a.active {
        background: rgba(212, 175, 55, 0.2);
        border-color: #d4af37;
        color: #d4af37 !important;
    }
    
    .nav-menu .language-switcher a:hover {
        padding: 0;
        transform: scale(1.05);
    }
    
    /* Hamburger menü animasyonu */
    .mobile-menu-toggle {
        z-index: 1001;
        position: relative;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .nav-menu {
        width: 80%;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 16px 0;
    }
}


/* ============================================
   INNER PAGES - Minimal Page Header
   ============================================ */

/* Page header - Sadece yazı, arka plan yok */
.page-header {
    background: transparent !important;
    padding: 110px 0 30px !important;
    text-align: center !important;
    margin: 0 !important;
    display: block !important;
}

.page-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 42px !important;
    color: var(--secondary-color) !important;
    font-family: 'Trajan', 'Georgia', serif !important;
    font-weight: 400 !important;
    letter-spacing: 2px !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    text-shadow: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* İçerik için üst boşluk - banner var artık */
.about-page,
.rooms-page,
.rooms-page-detailed,
.gallery-page,
.contact-page,
.booking-page,
.blog-page,
.facility-detail-page,
.room-detail-page,
.sustainability-page {
    padding-top: 0;
}

/* About Section - Full width without extra margin */
.about-section-home,
.about-page-full {
    margin-top: 0;
}

/* Rooms Page */
.rooms-section {
    padding-top: 0;
}

/* Gallery Page */
.gallery-page {
    padding-top: 0;
}

/* Contact Page */
.contact-page {
    padding-top: 0;
}

/* Blog Page */
.blog-page {
    padding-top: 0;
}

/* Booking Page */
.booking-page {
    padding-top: 0;
}

/* Sustainability Page */
.sustainability-page {
    padding-top: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 85px 0 25px;
    }
    
    .page-header h1 {
        font-size: 28px;
        letter-spacing: 1.5px;
    }
}


/* ============================================
   ABOUT PAGE ADJUSTMENTS
   ============================================ */
.about-page-full {
    padding-top: 0;
    margin-top: 0;
}

.about-page-full .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.about-page-full .about-left {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.about-page-full .about-right {
    display: flex;
    align-items: center;
    padding: 60px;
    background: #fff;
}

.about-page-full .about-title {
    font-size: 36px;
    color: #2c5f5d;
    margin-bottom: 20px;
    font-family: 'Trajan', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.about-page-full .about-welcome {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
}

.about-page-full .about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* About Slider */
.about-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.about-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.about-slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
}

.about-slide.fade-out {
    opacity: 0;
    z-index: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurnsZoom 10s ease-out forwards;
}

.about-prev,
.about-next {
    position: absolute;
    bottom: 20px;
    background: rgba(44, 95, 93, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.about-prev:hover,
.about-next:hover {
    background: rgba(44, 95, 93, 1);
    transform: scale(1.1);
}

.about-prev {
    right: 80px;
}

.about-next {
    right: 20px;
}

/* Single Image */
.about-single-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.about-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 1024px) {
    .about-page-full .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-page-full .about-left {
        min-height: 400px;
    }
    
    .about-page-full .about-right {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-page-full .about-left {
        min-height: 300px;
    }
    
    .about-page-full .about-right {
        padding: 30px 20px;
    }
    
    .about-page-full .about-title {
        font-size: 28px;
    }
    
    .about-slider,
    .about-single-image {
        min-height: 300px;
    }
}


/* ============================================
   LOCATION & MAP SECTION
   ============================================ */
.map-section h2,
.video-section h2 {
    color: var(--secondary-color) !important;
}

/* ============================================
   ABOUT PAGE - Slider Buttons Secondary Color
   ============================================ */
.about-prev,
.about-next {
    background: var(--secondary-color) !important;
}

.about-prev:hover,
.about-next:hover {
    background: var(--secondary-color) !important;
    opacity: 0.85;
}

/* Ana sayfadaki about slider butonları da */
.about-prev-home,
.about-next-home {
    background: var(--secondary-color) !important;
}

.about-prev-home:hover,
.about-next-home:hover {
    background: var(--secondary-color) !important;
    opacity: 0.85;
}


/* ============================================
   CONTACT PAGE - Secondary Color Headings
   ============================================ */
.contact-item h3,
.contact-form h2 {
    color: var(--secondary-color) !important;
}

/* ============================================
   ROOMS SLIDER - Mobile Responsive
   ============================================ */

/* Mobil için rooms slider düzeni */
@media (max-width: 1024px) {
    .slider-rooms {
        margin-right: 0;
    }
    
    .slider-rooms .slider__slides {
        gap: 20px;
    }
    
    .slider-rooms .slider__slide {
        min-width: 100%;
    }
    
    .halfpane {
        flex-direction: column;
        height: auto;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .halfpane__image {
        width: 100%;
        height: 300px;
        order: 1;
    }
    
    .halfpane__content {
        width: 100%;
        padding: 30px;
        order: 2;
    }
    
    .slider-rooms .paging__prev {
        left: 20px;
        top: 150px;
    }
    
    .slider-rooms .paging__next {
        right: 20px;
        top: 150px;
        left: auto;
    }
}

@media (max-width: 768px) {
    /* Rooms section başlığı */
    .rooms-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    /* Slider container */
    .slider-rooms {
        padding: 0 10px;
    }
    
    /* Room card */
    .halfpane {
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .halfpane__image {
        height: 350px;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .halfpane__content {
        padding: 25px 20px;
        text-align: left;
    }
    
    .halfpane__title {
        font-size: 24px;
        margin-bottom: 1px;
        line-height: 1.3;
        text-align: left;
    }
    
    .halfpane__entry p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
        text-align: left;
    }
    
    .halfpane__link {
        margin: -10px 0;
        text-align: left;
    }
    
    .halfpane__rate {
        margin-bottom: -10px;
        text-align: left;
    }
    
    .halfpane__rate p {
		 margin-bottom: -1px;
        text-align: left;
    }
    
    .halfpane__rate strong {
		margin-bottom: -5px;
        font-size: 28px;
    }
    
    .halfpane__actions {
        margin-top: 10px;
        text-align: left;
    }
    
    .halfpane__actions .btn {
        padding: 14px 30px;
        font-size: 11px;
        width: 100%;
        max-width: 250px;
    }
    
    /* Navigation buttons */
    .slider-rooms .paging-circle button {
        width: 45px;
        height: 45px;
        background: rgba(44, 122, 123, 0.95) !important;
    }
    
    .slider-rooms .paging__prev,
    .slider-rooms .paging__next {
        top: 125px;
    }
    
    .slider-rooms .paging__prev {
        left: 15px;
    }
    
    .slider-rooms .paging__next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .rooms-section h2 {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .slider-rooms {
        padding: 0 5px;
    }
    
    .halfpane__image {
        height: 220px;
    }
    
    .halfpane__content {
        padding: 20px 15px;
        text-align: left;
    }
    
    .halfpane__title {
        font-size: 20px;
        text-align: left;
    }
    
    .halfpane__entry p {
        font-size: 13px;
        text-align: left;
    }
    
    .halfpane__link {
        text-align: left;
    }
    
    .halfpane__rate {
        text-align: left;
    }
    
    .halfpane__rate p {
        text-align: left;
    }
    
    .halfpane__rate strong {
        font-size: 24px;
    }
    
    .halfpane__actions {
        text-align: left;
    }
    
    .halfpane__actions .btn {
        padding: 12px 25px;
        font-size: 10px;
    }
    
    /* Navigation buttons - smaller */
    .slider-rooms .paging-circle button {
        width: 40px;
        height: 40px;
    }
    
    .slider-rooms .paging__prev,
    .slider-rooms .paging__next {
        top: 110px;
    }
    
    .slider-rooms .paging__prev {
        left: 10px;
    }
    
    .slider-rooms .paging__next {
        right: 10px;
    }
}

/* Rooms slider - Ensure proper image display */
.halfpane__image {
    position: relative;
    overflow: hidden;
}

.halfpane__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}


/* ============================================
   BOOKING PAGE - Available Rooms Display
   ============================================ */
.available-rooms-section {
    margin-bottom: 60px;
}

.rooms-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.room-card-compact {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.room-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.room-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card-compact:hover .room-card-image img {
    transform: scale(1.1);
}

.room-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-card-title {
    font-size: 24px;
    color: #2c5f5d;
    margin-bottom: 15px;
    font-family: 'Trajan', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.room-specs-compact {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.room-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.room-spec-item svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.room-features-compact {
    margin-bottom: 20px;
    flex: 1;
}

.room-features-compact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-features-compact li {
    padding: 6px 0;
    color: #555;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.room-features-compact li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.room-card-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: auto;
}

.room-price-compact {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
}

.price-label {
    font-size: 11px;
    color: #999;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-period {
    font-size: 14px;
    color: #666;
}

.room-card-actions {
    display: flex;
    gap: 10px;
}

.btn-outline-compact,
.btn-primary-compact {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-outline-compact {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-compact:hover {
    background: var(--secondary-color);
    color: #fff;
}

.btn-primary-compact {
    background: var(--secondary-color);
    color: #fff;
}

.btn-primary-compact:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Booking Form Full */
.booking-form-full {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 93, 0.1);
}

.btn-large {
    width: 100%;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary.btn-large {
    background: var(--secondary-color);
    color: #fff;
}

.btn-primary.btn-large:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rooms-grid-compact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-card-image {
        height: 220px;
    }
    
    .room-card-body {
        padding: 20px;
    }
    
    .room-card-title {
        font-size: 20px;
    }
    
    .room-card-actions {
        flex-direction: column;
    }
    
    .btn-outline-compact,
    .btn-primary-compact {
        width: 100%;
    }
    
    .booking-form-full {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-section h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .room-card-image {
        height: 200px;
    }
    
    .room-card-body {
        padding: 15px;
    }
    
    .room-card-title {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 24px;
    }
    
    .booking-form-full {
        padding: 20px 15px;
    }
}
