/* Bu stil, "Bize hemen yazın..." metninin altındaki çizgiyi kaldırır */
.section-description {
    /* Alt çizgiyi kesinlikle kaldırır */
    border-bottom: none !important; 
    /* Metnin hemen altında fazladan boşluk varsa onu da sıfırlar */
    margin-bottom: 0 !important; 
    padding-bottom: 0 !important;
}

/* Eğer çizgi, bir önceki öğeden (H2 başlığı) geliyorsa, o stili de kontrol edin */
.quick-contact-section h2 {
    /* Hızlı iletişim başlığının altındaki çizgiyi sıfırlamak için (önceki düzeltmede yaptığımız gibi) */
    border-bottom: none !important;
}

/* --- YENİ BUNGALOV STİLİ --- */
/* Ultra Lüks Panoramik Teras için özel vurgu */
.bungalow-listing .card-ultra-luxury {
    /* Özel bir arka plan rengi veya gölge ile dikkat çekin */
    border: 3px solid #ffd700; /* Altın Sarısı Çerçeve */
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3); /* Parlak Gölge */
}

.bungalow-listing .card-ultra-luxury h3 {
    color: #cc9900; /* Başlık Rengini Değiştirin */
}
/* Yeni etiket rengi */
.bungalow-listing .card-ultra-luxury .bungalow-tag {
    background-color: #ff0077; /* Parlak pembe/kırmızı etiket */
}

/* WhatsApp Butonu için Özel Stil veya Mevcut btn-primary Güncellemesi */

/* 1. Eğer Zaten btn-primary Tanımınız Varsa, Sadece Renk Ekleyin */
.btn-primary {
    /* Mevcut arka plan renginiz ve dolgunuz buradadır */
    background-color: #0077b6; /* Örnek Mavi */
    color: #FFFFFF !important; /* !!! Bu Satır Yazıyı Beyaz Yapar !!! */
    /* Diğer stiller... */
}

/* 2. Sadece WhatsApp Butonunu Hedeflemek İçin (Daha Kesin Yol) */
.main-nav .btn-primary {
    color: #FFFFFF !important; /* !!! Metin rengini Beyaz yapar !!! */
    border: none;
}

/* WhatsApp Rengi ile Farklı Bir Stil Kullanmak İsterseniz */
.btn-whatsapp {
    background-color: #25D366; /* WhatsApp Yeşili */
    color: #FFFFFF !important; /* Yazıyı Beyaz Yapar */
    /* Diğer stil ayarları... */
}

/* booking.html'deki bungalov önizleme kartı için stil */
.bungalow-card-preview {
    border: 3px solid #0077b6; /* Vurgu renginde kalın çerçeve */
    padding: 20px;
    background-color: #f0f8ff; /* Çok açık mavi arka plan */
}

.bungalow-card-preview h3 {
    color: #1a4314;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.bungalow-card-preview #bungalow-features li {
    padding: 3px 0;
    border-bottom: none; 
}

/* --- BOOKING SAYFASI ÖZEL STİLLERİ --- */

/* Booking Hero Alanı */
.booking-hero {
    background: linear-gradient(rgba(26, 67, 20, 0.7), rgba(26, 67, 20, 0.8)), url('https://picsum.photos/id/433/1600/600') no-repeat center center/cover;
    height: 35vh; /* Kısa ve Odaklanmış */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-attachment: fixed;
}

.booking-hero h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 5px;
}

.booking-hero p {
    font-size: 1.1em;
    font-weight: 300;
}

/* Ana İçerik Düzeni (Layout) */
.booking-main-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f4f4f9;
}

.booking-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* Yan kartı yukarı hizala */
}

/* Sol Taraf: Form Alanı */
.booking-form-area {
    flex: 2; /* Formun yan karttan daha geniş olması için (örn: %60) */
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.booking-form-area h2 {
    font-size: 2em;
    color: #0077b6;
    margin-bottom: 30px;
    text-align: left;
}

.booking-form-area h2::after {
    display: none;
}

/* Form Bölümleri */
.form-section {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.form-section h3 {
    color: #1a4314;
    font-size: 1.5em;
    margin-bottom: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.section-hint {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 20px;
}

/* Form Elemanları Ortak Stil */
.detailed-booking-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.detailed-booking-form input,
.detailed-booking-form select,
.detailed-booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.detailed-booking-form input:focus,
.detailed-booking-form select:focus,
.detailed-booking-form textarea:focus {
    border-color: #0077b6;
    outline: none;
}

.required {
    color: #d9534f; /* Kırmızı yıldız */
}

/* İki Sütunlu Tarih ve İletişim Grupları */
.date-group {
    display: flex;
    gap: 20px;
}

.input-half {
    flex: 1;
}

/* Checkbox Grubu */
.checkbox-group {
    margin-top: 20px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

/* Gönder Butonu */
.btn-submit {
    margin-top: 30px;
    padding: 15px 25px;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 50px;
    width: 100%;
    text-transform: none;
}

/* Sağ Taraf: Yan Bilgi Kartı (Sidebar) */
.booking-sidebar {
    flex: 1; /* Yan kartın formdan daha dar olması için (örn: %30) */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    color: #1a4314;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 0.95em;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list li::before {
    content: '';
    margin-right: 10px;
}

.contact-card {
    background-color: #e9f5e9; /* Açık Yeşil */
    text-align: center;
}

.contact-card p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 10px;
}

.phone-number {
    font-size: 1.5em;
    font-weight: 700;
    color: #0077b6;
    margin: 15px 0;
}


/* Mobil Uyumlu Tasarım (Responsive) */
@media (max-width: 992px) {
    .booking-layout {
        flex-direction: column; /* Tablet ve mobil cihazlarda alt alta sırala */
    }

    .booking-form-area {
        order: 1; /* Formu üste taşı */
    }

    .booking-sidebar {
        order: 2; /* Yan kartları alta taşı */
        flex-direction: row; /* Yan kartları yan yana yap */
    }

    .sidebar-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .date-group {
        flex-direction: column; /* Tarih ve iletişim alanlarını alt alta sırala */
        gap: 0;
    }

    .booking-form-area {
        padding: 20px;
    }

    .booking-sidebar {
        flex-direction: column; /* Yan kartları tekrar alt alta sırala */
    }

    .booking-hero h1 {
        font-size: 2.2em;
    }
}

/* Genel Ayarlar ve Fontlar (Öncekiyle Aynı Kalabilir) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}

a {
    text-decoration: none;
    color: #1a4314; /* Koyu Yeşil */
}

/* Header ve Navigasyon (Öncekiyle Aynı Kalabilir) */
.main-header {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 1.8em;
    font-weight: 800;
    color: #1a4314; 
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    font-weight: 600;
    color: #555;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #0077b6; /* Mavi Vurgu */
}

/* Butonlar (Güncellendi) */
.btn {
    padding: 10px 20px;
    border-radius: 50px; /* Daha modern, yuvarlak buton */
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: #1a4314;
    color: #fff;
}

.btn-primary:hover {
    background-color: #3b7b2f;
    box-shadow: 0 4px 10px rgba(26, 67, 20, 0.4);
}

.btn-secondary {
    background-color: #fff;
    color: #1a4314;
    border: 3px solid #1a4314;
    font-size: 1.1em;
}

.btn-secondary:hover {
    background-color: #1a4314;
    color: #fff;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
    background-color: #0077b6; 
    color: #fff;
}

.btn-small:hover {
    background-color: #005f96;
}

/* Section Ortak Stili */
.section-padded {
    padding: 80px 5%; /* Daha geniş boşluklar */
    text-align: center;
}

section h2 {
    font-size: 2.5em; /* Daha büyük başlık */
    color: #0077b6;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

section h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background-color: #1a4314;
    bottom: -15px;
    left: 20%;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://picsum.photos/id/1084/1600/1000') no-repeat center center/cover;
    height: 90vh; /* Daha yüksek */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    /* Parallax etkisi eklemek için: */
    background-attachment: fixed; 
}

.hero-overlay {
    padding: 40px;
    max-width: 800px;
}

.hero-section h1 {
    font-size: 4.5em; /* Daha büyük başlık */
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-section p {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Bungalov Listesi */
.bungalov-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.bungalov-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s;
    text-align: left;
}

.bungalov-card:hover {
    transform: translateY(-8px);
}

.bungalov-card img {
    height: 250px; /* Resim yüksekliği arttı */
    object-fit: cover;
}

.card-content {
    padding: 25px;
    position: relative;
}

.location-tag {
    position: absolute;
    top: -40px;
    right: 0px;
    background-color: #1a4314;
    color: white;
    padding: 5px 15px;
    font-size: 0.8em;
    font-weight: 600;
    border-radius: 10px 0 0 10px;
}

.card-content h3 {
    color: #0077b6;
    margin-bottom: 10px;
    font-size: 1.4em;
}

/* --- YENİ BÖLÜM STİLLERİ BAŞLANGIÇ --- */

/* 1. Hizmetler/Deneyimler Alanı */
.services-section {
    background-color: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.service-item:hover {
    background-color: #e9f5e9; /* Açık yeşil vurgu */
    transform: translateY(-5px);
}

.service-item .icon {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
    color: #0077b6;
}

.service-item h3 {
    color: #1a4314;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.9em;
    color: #666;
}


/* Ana Sayfa: Galeri Alanı */
.gallery-section {
    background-color: #fcfcfc; /* Daha açık bir arka plan */
    padding-top: 80px; /* Üstten boşluk */
    padding-bottom: 80px; /* Alttan boşluk */
}

.gallery-section .container {
    max-width: 1300px; /* Daha geniş bir konteyner */
    margin: 0 auto;
    padding: 0 20px; /* Küçük ekranlarda kenar boşluğu */
    text-align: center; /* Başlık ve açıklama ortalanır */
}

.gallery-section h2 {
    color: #1a4314; /* Koyu yeşil başlık */
    margin-bottom: 20px; /* Başlık ile açıklama arasına boşluk */
    font-size: 2.8em; /* Daha büyük başlık */
}

.gallery-section h2::after {
    background-color: #0077b6; /* Vurgu rengi alt çizgi */
    width: 30%; /* Daha kısa alt çizgi */
    left: 35%; /* Ortalanmış alt çizgi */
}

.section-description {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

.gallery-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Daha esnek grid */
    grid-auto-rows: minmax(280px, auto); /* Minimum satır yüksekliği */
    gap: 20px; /* Resimler arası boşluk */
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* Köşeleri daha yuvarlak */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Daha belirgin gölge */
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}

.gallery-item.large {
    grid-column: span 2; /* Büyük resim iki sütun kaplar */
    grid-row: span 2; /* İki satır kaplar */
    min-height: 580px; /* Büyük resim için min yükseklik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease-out, filter 0.6s ease-out; /* Resim için animasyon */
}

.gallery-item:hover img {
    transform: scale(1.08); /* Hover'da hafif büyüt */
    filter: brightness(0.8); /* Hover'da karart */
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); /* Gradyan arka plan */
    color: #fff;
    padding: 20px;
    font-size: 1.3em;
    font-weight: 600;
    transform: translateY(100%); /* Başlangıçta gizli */
    transition: transform 0.4s ease-out;
    text-align: left;
}

.gallery-item:hover .caption {
    transform: translateY(0); /* Hover'da görünür */
}

.gallery-btn {
    margin-top: 30px;
}

/* Mobil Uyumluluk (Responsive) */
@media (max-width: 992px) {
    .gallery-grid-enhanced {
        grid-template-columns: 1fr; /* Tek sütuna düşür */
        grid-auto-rows: minmax(250px, auto);
    }

    .gallery-item.large {
        grid-column: span 1; /* Artık sadece 1 sütun kaplar */
        grid-row: span 1; /* Sadece 1 satır kaplar */
        min-height: 250px;
    }

    .gallery-item .caption {
        font-size: 1.1em;
        padding: 15px;
    }

    .gallery-section h2 {
        font-size: 2.2em;
    }

    .gallery-section h2::after {
        width: 50%;
        left: 25%;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        border-radius: 8px;
    }
    .gallery-item .caption {
        font-size: 1em;
    }
}

/* Sağdaki küçük resimleri hizalama */
.gallery-item-2 {
    grid-row: 1 / 2;
}
.gallery-item-3 {
    grid-row: 2 / 3;
}
.gallery-item-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    /* Bu resim 3 ile aynı yere gelmesin diye grid yapısı gereği dikkat edilmeli */
    /* Yukarıdaki yapıda item 2 ve 3 sağ sütunu kaplar */
}

/* Galeri butonunu ortalama */
.gallery-btn {
    margin-top: 20px;
}


/* 3. Müşteri Yorumları Alanı */
.testimonials-section {
    background-color: #1a4314; /* Koyu Yeşil Arka Plan */
    color: #fff;
}

.testimonials-section h2 {
    color: #fff; /* Başlık rengi beyaz */
}

.testimonials-section h2::after {
    background-color: #0077b6; 
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.5;
}

.testimonial-card .author {
    font-weight: 700;
    color: #0077b6;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* Footer (Öncekiyle Aynı Kalabilir) */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 25px 5%;
    font-size: 0.9em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
}

/* --- YENİ BÖLÜM STİLLERİ SONU --- */


/* Küçük Ekranlar İçin (Responsive) */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-1 {
        grid-row: span 1;
    }
}

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

    .main-nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav li {
        margin: 5px 10px;
    }

    .hero-section h1 {
        font-size: 3em;
    }

    .hero-section p {
        font-size: 1.2em;
    }

    .bungalov-grid, .service-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-1, .gallery-item-2, .gallery-item-3, .gallery-item-4 {
        grid-column: 1 / 2;
        grid-row: auto;
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
    }

    .social-links {
        margin-top: 15px;
    }
}

/* --- BUNGALOVLAR SAYFASI ÖZEL STİLLERİ --- */

/* Hero Alanı */
.rooms-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('https://picsum.photos/id/1053/1600/800') no-repeat center center/cover;
    height: 40vh; /* Daha kısa bir hero */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.rooms-hero .overlay h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 700;
}

.rooms-hero .overlay p {
    font-size: 1.2em;
    font-weight: 300;
}

/* Detaylı Filtreleme Çubuğu */
.filter-bar-detailed {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.filter-bar-detailed h2 {
    font-size: 1.5em;
    color: #1a4314;
    margin-bottom: 20px;
    text-align: center;
}

.filter-bar-detailed h2::after {
    display: none; /* Alt çizgiyi kaldır */
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: flex-end; /* Butonu aşağı hizalamak için */
}

.filter-group label {
    display: block;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

.filter-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    background-color: #f9f9f9;
}

.filter-btn {
    width: 100%;
    height: 40px;
    margin-top: 25px; /* Buton hizalaması için */
}


/* Detaylı Bungalov Kartları */
.rooms-grid-detailed {
    display: grid;
    grid-template-columns: 1fr; /* Tüm kartları alt alta sırala */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.room-card-detailed {
    display: flex; /* Kartı yan yana iki bölüme ayır */
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.room-img-wrapper {
    flex: 1; /* Resim alanı yarıyı kaplar */
    position: relative;
    max-width: 50%;
}

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

.room-info-detailed {
    flex: 1; /* Bilgi alanı yarıyı kaplar */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-info-detailed h2 {
    color: #0077b6;
    font-size: 1.8em;
    margin-bottom: 10px;
    text-align: left;
}

.room-info-detailed h2::after {
    display: none;
}

.location-tag-small {
    display: inline-block;
    color: #1a4314;
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.description {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Özellikler listesi */
.features-detailed {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    border-top: 1px dashed #eee;
    padding-top: 15px;
}

.features-detailed li {
    font-size: 0.95em;
    margin-bottom: 5px;
    color: #333;
}

.icon-label {
    font-weight: 600;
    color: #1a4314;
    margin-right: 5px;
}

/* Fiyat ve Rezervasyon */
.price-book-detailed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.price-big {
    font-size: 1.6em;
    font-weight: 700;
    color: #d9534f; /* Kırmızı/Vurgu Rengi */
}

/* Karttaki Rozetler */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: 700;
    color: #fff;
    z-index: 10;
}

.badge-popular {
    background-color: #ffc107; /* Sarı */
    color: #333;
}

.badge-family {
    background-color: #0077b6; /* Mavi */
}

.badge-luxury {
    background-color: #8d5700; /* Altın/Kahve */
}

.badge-new {
    background-color: #5cb85c; /* Yeşil */
}


/* Mobil Uyumlu Tasarım (Responsive) */
@media (max-width: 900px) {
    .room-card-detailed {
        flex-direction: column; /* Mobil cihazlarda kartları alt alta sırala */
    }

    .room-img-wrapper {
        max-width: 100%;
        height: 250px;
    }
    
    .room-info-detailed {
        padding: 20px;
    }

    .price-big {
        font-size: 1.4em;
    }

    .filter-form {
        grid-template-columns: 1fr; /* Filtre alanlarını alt alta sırala */
    }

    .filter-btn {
        margin-top: 10px;
    }
}

@media (max-width: 500px) {
    .rooms-hero .overlay h1 {
        font-size: 2.2em;
    }
    
    .price-book-detailed {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-big {
        margin-bottom: 10px;
    }
}

/* --- İLETİŞİM SAYFASI ÖZEL STİLLERİ --- */

/* Hero Alanı */
.contact-hero {
    background: linear-gradient(rgba(0, 119, 182, 0.7), rgba(0, 119, 182, 0.8)), url('https://picsum.photos/id/1053/1600/800') no-repeat center center/cover;
    height: 35vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-hero p {
    font-size: 1.2em;
    font-weight: 300;
}

/* Ana İçerik Düzeni */
.contact-main-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f4f4f9;
}

.contact-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sol Sütun: Form Alanı */
.contact-form-area {
    flex: 2; /* Formun daha geniş olması için */
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-area h2 {
    font-size: 2em;
    color: #1a4314;
    margin-bottom: 10px;
    text-align: left;
}
.contact-form-area h2::after {
    display: none;
}

.form-hint {
    color: #888;
    margin-bottom: 30px;
    text-align: left;
}

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

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .date-group {
    display: flex;
    gap: 20px;
}

.contact-form .input-half {
    flex: 1;
}

/* Sağ Sütun: Detaylar ve Harita */
.contact-details-area {
    flex: 1; /* Detay alanının dar olması için */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.details-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.details-card h2 {
    font-size: 1.5em;
    color: #0077b6;
    margin-bottom: 20px;
    text-align: left;
}
.details-card h2::after {
    display: none;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-icon {
    font-size: 1.8em;
    color: #1a4314;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.detail-label {
    font-weight: 600;
    color: #333;
    width: 120px;
}

.detail-value {
    color: #555;
    flex-grow: 1;
}

.map-placeholder {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}


/* Mobil Uyumlu Tasarım (Responsive) */
@media (max-width: 992px) {
    .contact-layout {
        flex-direction: column; /* Alt alta sırala */
    }
    
    .contact-details-area {
        order: -1; /* İletişim detaylarını formdan önce göster */
    }

    .contact-form-area, .details-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .contact-form .date-group {
        flex-direction: column; 
        gap: 0;
    }
    .contact-hero h1 {
        font-size: 2.2em;
    }
}

/* --- GÜNCELLENMİŞ HIZLI İLETİŞİM FORMU STİLLERİ --- */

/* Mevcut stili güçlendir */
.quick-contact-section {
    background: linear-gradient(to top, #e9f5e9, #f7fff7); /* Hafif gradyan ekledik */
    padding-top: 80px; 
    padding-bottom: 80px;
}

.quick-contact-section h2 {
    color: #0077b6; /* Vurgu Rengi */
    font-size: 3em;
    margin-bottom: 5px;
}

.quick-contact-section .section-description {
    font-weight: 500;
    color: #333;
    font-size: 1.2em;
    margin-bottom: 40px; /* Highlights alanına boşluk */
}

/* YENİ: Vurgu Alanı Stilleri */
.contact-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 15px 0;
}

.highlight-item {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    width: 200px;
}

.highlight-item:hover {
    transform: translateY(-5px); /* Hafif yukarı kayma efekti */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 1.8em;
    display: block;
    margin-bottom: 5px;
}

.highlight-item p {
    margin: 0;
    font-size: 0.95em;
    font-weight: 600;
    color: #1a4314; /* Koyu yeşil metin */
}

.quick-contact-form {
    padding: 40px; /* Daha fazla iç boşluk */
    border: 1px solid #dcdcdc; /* Hafif çerçeve */
}

.btn-submit-small {
    background-color: #d9534f; /* Kırmızımsı Vurgu */
    border-color: #d9534f;
    transition: background-color 0.3s;
}

.btn-submit-small:hover {
    background-color: #c9302c;
}

/* Mobil Uyumlu Düzenleme */
@media (max-width: 768px) {
    .contact-highlights {
        flex-direction: column; /* Mobil cihazlarda alt alta sırala */
        gap: 15px;
    }
    .highlight-item {
        width: 90%;
        margin: 0 auto;
    }
    .quick-contact-section h2 {
        font-size: 2.2em;
    }
}