

/*--------------------------------------------------------------

--------------------------------------------------------------*/
/* ====== CSS VARIABLES ====== */
:root {
  --navy:   #0d1e35;
  --blue:   #1a3a5c;
  --mid:    #2563b0;
  --sky:    #01a7eb;
  --gold:   #c8860a;
  --goldlt: #f0b840;
  --white:  #ffffff;
  --bg:     #f5f7fa;
  --text:   #2c3e50;
  --muted:  #7a8a9a;
  --border: #e2e8f0;
  --heading-color:#1b9edc;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}


/* ============================================================
   LOCAL FONTS (Optimized)
   ============================================================ */

/* --- Cormorant Garamond (Sadece Başlıklar İçin Kullanılıyor) --- */

/* cormorant-garamond-700 - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/cormorant-garamond-v21-latin_latin-ext-700.woff2') format('woff2'); 
}

/* --- DM Sans (Gövde ve Metinler İçin Kullanılıyor) --- */

/* dm-sans-regular (400) - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/dm-sans-v17-latin_latin-ext-regular.woff2') format('woff2'); 
}

/* dm-sans-500 - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/dm-sans-v17-latin_latin-ext-500.woff2') format('woff2'); 
}

/* dm-sans-600 - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/dm-sans-v17-latin_latin-ext-600.woff2') format('woff2'); 
}

/* dm-sans-700 - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/dm-sans-v17-latin_latin-ext-700.woff2') format('woff2'); 
}

/* dm-sans-800 - latin_latin-ext */
@font-face {
  font-display: swap; 
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/dm-sans-v17-latin_latin-ext-800.woff2') format('woff2'); 
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size:1.6rem ;
}

/* ============================================================
       HEADER – Transparan → Scroll'da Koyu
       ============================================================ */

    #header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: transparent;
        transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    /* Video üzerinde okunabilirlik için gradient overlay */
    #header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 110px;
        background: linear-gradient(
            180deg,
            rgba(10, 20, 40, 0.72) 0%,
            rgba(10, 20, 40, 0.0) 100%
        );
        z-index: -1;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    /* Scroll'da sabit koyu arka plan */
    #header.scrolled {
        background: #1a2e4a;
        box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    }

    #header.scrolled::before {
        opacity: 0;
    }

    /* ============================================================
       HEADER İÇ YAPI: 3 Sütun Grid
       ============================================================ */

    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        height: 72px;
        padding: 0 20px;
    }

    /* Sol: Hamburger */
    .header-left {
        display: flex;
        align-items: center;
    }

    /* Orta: Logo */
    .header-center {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-center .logo img {
        height: 52px;
        width: auto;
        object-fit: contain;
        transition: height 0.3s ease;
    }

    #header.scrolled .header-center .logo img {
        height: 44px;
    }

    /* Sağ: Rezervasyon + Dil */
    .header-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }



/* Oda detay  */

.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--mid); display: block; margin-bottom: 10px;
}
.divider { display: flex; gap: 5px; margin: 14px 0 22px; }
.divider span { display: block; height: 3px; border-radius: 3px; }
.d1 { width: 40px; background: var(--navy); }
.d2 { width: 26px; background: var(--sky); }
.d3 { width: 14px; background: var(--gold); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 0.88rem;
  padding: 13px 28px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--mid); color: var(--white); transform: translateY(-2px); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: 0.88rem;
  padding: 13px 28px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .3s, transform .2s;
}
.btn-gold:hover { background: var(--goldlt); color: var(--navy); transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: var(--white);
  font-weight: 700; font-size: 0.88rem;
  padding: 13px 28px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .3s, transform .2s;
}
.btn-whatsapp:hover { background: #1ebe5d; color: var(--white); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-weight: 700; font-size: 0.88rem;
  padding: 12px 26px; border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: border-color .3s, color .3s, transform .2s;
}
.btn-outline:hover { border-color: var(--mid); color: var(--mid); transform: translateY(-2px); }

/* BREADCRUMB */
.breadcrumb-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.breadcrumb-bar nav { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); flex-wrap: wrap; }
.breadcrumb-bar a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb-bar a:hover { color: var(--mid); }
.breadcrumb-bar .sep { font-size: 0.7rem; opacity: .5; }
.breadcrumb-bar .current { color: var(--navy); font-weight: 600; }

/* 1 HERO — visual only, no overlay, no text */
#room-hero {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
#room-hero img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 768px) { #room-hero { height: 240px; } }

/* 2 ROOM NAME */
.room-title-block {
  padding: 24px 0 0;
}
.room-title-block h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--navy); line-height: 1.1;
}

/* 3 PHOTO GALLERY — main photo + thumb navigator */
.photo-gallery-wrap { padding: 18px 0 0; }

/* Big main photo */
.gallery-main {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
}
.gallery-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity .3s ease;
}
.gallery-main a.gallery-main-link {
  display: block; width: 100%; height: 100%;
}
/* Lightbox zoom icon container */
.zoom-overlay {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(8,18,30,.55); backdrop-filter: blur(4px);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

/* Thumbnail navigator — Swiper */
.gallery-thumbs-wrap { margin-top: 10px; }
.thumb-swiper { width: 100%; }
.thumb-swiper .swiper-slide {
  width: 100px !important;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: .55;
  transition: opacity .25s;
  border: 2px solid transparent;
}
.thumb-swiper .swiper-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.thumb-swiper .swiper-slide.active-thumb {
  opacity: 1;
  border-color: var(--gold);
}
.thumb-swiper .swiper-slide:hover { opacity: .85; }

@media (max-width: 768px) {
  .gallery-main { height: 260px; }
  .thumb-swiper .swiper-slide { width: 72px !important; height: 52px; }
}

/* 4 QUICK INFO */
.quick-info {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  margin: 18px 0 0;
}
.qi-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 22px 14px;
  border-right: 1px solid var(--border);
  gap: 8px;
}
.qi-item:last-child { border-right: none; }
.qi-icon {
  width: 46px; height: 46px;
  background: #eef4ff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.qi-icon i { font-size: 2rem; color: var(--mid); }
.qi-item:hover .qi-icon { background: var(--navy); }
.qi-item:hover .qi-icon i { color: var(--white); }
.qi-val { font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.qi-lbl { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
@media (max-width: 768px) {
  .quick-info { grid-template-columns: repeat(3, 1fr); }
  .qi-item:nth-child(3) { border-right: none; }
  .qi-item:nth-child(4), .qi-item:nth-child(5) { border-top: 1px solid var(--border); }
}
@media (max-width: 480px) { .quick-info { grid-template-columns: repeat(2, 1fr); } }

/* 5 MAIN LAYOUT */
.room-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 32px 0 80px;
  align-items: start;
}

.room-section { margin-bottom: 36px; }
.room-section h2 {
  font-family: var(--font-head);
  font-size: 1.7rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.room-section p {
  color: var(--muted); font-size: 0.97rem; line-height: 1.8;
  margin-bottom: 12px;
}

/* FEATURES CHECKLIST */
.features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.feat-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.feat-item:nth-child(2n) { border-right: none; }
.feat-item:nth-last-child(-n+2) { border-bottom: none; }
.feat-item:hover { background: var(--bg); }
.feat-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #eef4ff; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon i { font-size: 1.5rem; color: var(--mid); }
.feat-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.feat-sub { font-size: 0.75rem; color: var(--muted); }

/* BED LAYOUT */
.bed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 4px; }
.bed-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 22px 16px; text-align: center;
  transition: border-color .25s, transform .25s;
}
.bed-card:hover { border-color: var(--mid); transform: translateY(-3px); }
.bed-card i { font-size: 2rem; color: var(--mid); display: block; margin-bottom: 10px; }
.bed-card h5 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.bed-card p { font-size: 0.78rem; color: var(--muted); }

/* TECH INFO TABLE */
.tech-table {
  width: 100%; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; border-collapse: collapse;
}
.tech-table tr { border-bottom: 1px solid var(--border); }
.tech-table tr:last-child { border-bottom: none; }
.tech-table td { padding: 13px 18px; font-size: 0.9rem; }
.tech-table td:first-child {
  font-weight: 700; color: var(--navy);
  background: var(--bg); width: 44%;
  border-right: 1px solid var(--border);
}
.tech-table td:last-child { color: var(--muted); }

/* GALLERY THUMBNAILS */
.thumb-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px; gap: 8px; margin-top: 4px;
}
.thumb-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
.thumb-item:first-child { grid-column: span 2; grid-row: span 2; }
.thumb-item a { display: block; height: 100%; }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.thumb-item:hover img { transform: scale(1.07); }
.thumb-icon-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  background: rgba(8,18,30,.32); opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.thumb-item:hover .thumb-icon-overlay { opacity: 1; }
@media (max-width: 768px) {
  .thumb-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .thumb-item:first-child { grid-column: span 2; grid-row: span 1; }
}

/* STICKY SIDEBAR */
.sidebar { position: sticky; top: 80px; }

/* RESERVATION CARD */
.res-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 30px rgba(13,30,53,.08); margin-bottom: 20px;
}
.res-card-head { background: var(--navy); padding: 22px 24px; }
.res-card-head h3 {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.res-card-head p { color: rgba(255,255,255,.55); font-size: 0.82rem; }
.res-card-body { padding: 22px 24px; }
.res-cta-stack { display: flex; flex-direction: column; gap: 11px; }
.res-cta-stack a, .res-cta-stack button { width: 100%; justify-content: center; text-align: center; }
.res-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 4px 0; color: var(--muted); font-size: 0.78rem;
}
.res-divider::before, .res-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.res-note {
  margin-top: 14px; font-size: 0.78rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: 7px; line-height: 1.5;
}
.res-note i { font-size: 0.88rem; flex-shrink: 0; margin-top: 2px; color: var(--mid); }

/* INFO CARD */
.info-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px; margin-bottom: 20px;
}
.info-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.info-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.86rem;
}
.info-row:last-child { border-bottom: none; }
.info-row i { font-size: 1rem; color: var(--mid); flex-shrink: 0; width: 20px; text-align: center; }
.info-row strong { color: var(--navy); font-weight: 600; }
.info-row span { color: var(--muted); margin-left: auto; font-size: 0.82rem; }

/* FORM SECTION */
#reservation-form {
  background: var(--bg); padding: 60px 0; border-top: 1px solid var(--border);
}
#reservation-form h2 {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.form-full { grid-column: span 2; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 0.95rem; color: var(--navy); background: var(--white);
  outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--mid); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit-row { margin-top: 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 0.8rem; color: var(--muted); }

/* FOOTER */
footer { background: #070f1c; color: rgba(255,255,255,.5); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-top: 14px; max-width: 260px; }
.footer-logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--white); text-decoration: none; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 0.9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--goldlt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 8px;
}
.footer-line { width: 40px; height: 2px; background: linear-gradient(90deg,var(--mid),var(--gold)); border-radius: 2px; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .room-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .bed-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feat-item:nth-child(2n) { border-right: 1px solid var(--border); }
  .feat-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .feat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: span 1; }
  .bed-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .quick-info { grid-template-columns: repeat(2, 1fr); }
  .qi-item:nth-child(2n) { border-right: none; }
  .qi-item { border-bottom: 1px solid var(--border); }
  .qi-item:nth-last-child(-n+1) { border-bottom: none; }
}



    /* ============================================================
       HAMBURGEr BUTONU
       ============================================================ */

    .hamburger-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        border-radius: 8px;
        transition: background 0.2s;
    }

    .hamburger-btn:hover {
        background: rgba(255,255,255,0.12);
    }

    .hamburger-btn span {
        display: block;
        width: 26px;
        height: 3px;
        background: #ffffff;
        border-radius: 3px;
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* X hali */
    .hamburger-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .hamburger-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* ============================================================
       REZERVASYon BUTONU
       ============================================================ */

    .btn-rezervasyon {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: linear-gradient(90deg, #e8a020, #f0b840);
        color: #1a2e4a;
        font-weight: 700;
        font-size: 0.82rem;
        padding: 9px 18px;
        border-radius: 50px;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
        box-shadow: 0 3px 12px rgba(232,160,32,0.35);
    }

    .btn-rezervasyon:hover {
        background: linear-gradient(90deg, #d4911a, #e8a020);
        transform: translateY(-1px);
        box-shadow: 0 5px 18px rgba(232,160,32,0.45);
        color: #1a2e4a;
    }

    .btn-rezervasyon i {
        font-size: 0.9rem;
    }

    /* ============================================================
       DİL SEÇİCİ
       ============================================================ */

    .lang-switcher {
        position: relative;
    }

    .lang-toggle {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.25);
        color: #ffffff;
        font-weight: 600;
        font-size: 0.82rem;
        padding: 8px 13px;
        border-radius: 50px;
        cursor: pointer;
        transition: background 0.2s, border-color 0.2s;
        white-space: nowrap;
    }

    .lang-toggle:hover {
        background: rgba(255,255,255,0.22);
        border-color: rgba(255,255,255,0.45);
    }

    .lang-toggle .fi {
        font-size: 1rem;
        line-height: 1;
    }

    .lang-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        min-width: 130px;
        padding: 6px;
        display: none;
        z-index: 999;
        animation: langFadeIn 0.2s ease;
    }

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

    .lang-dropdown.open {
        display: block;
    }

    .lang-dropdown a {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 9px 12px;
        border-radius: 8px;
        color: #1a2e4a;
        font-weight: 600;
        font-size: 0.85rem;
        text-decoration: none;
        transition: background 0.2s;
    }

    .lang-dropdown a:hover {
        background: #f0f4ff;
    }

    .lang-dropdown a.active {
        background: #e8f0ff;
        color: #2563b0;
    }

    /* ============================================================
       TAM EKRAN FULLSCREEN MENÜ (Yukarıdan Aşağıya)
       ============================================================ */

    /* Overlay artık yok — menünün kendisi tam ekran */

    #navmenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0d1e35;           /* koyu navy */
        z-index: 1200;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        /* Kapalı hali: yukarıda gizli */
        clip-path: inset(0 0 100% 0);
        transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
        pointer-events: none;
    }

    #navmenu.active {
        clip-path: inset(0 0 0% 0);   /* aşağıya açılır */
        pointer-events: all;
    }

    /* Kapat butonu — sağ üst köşe */
    .nav-close-btn {
        position: absolute;
        top: 20px;
        left: 24px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: #ffffff;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.3rem;
        transition: background 0.2s, transform 0.2s;
    }
    .nav-close-btn:hover {
        background: rgba(255,255,255,0.22);
        transform: rotate(90deg);
    }

    /* Logo — sol üst */
    .nav-panel-header {
        position: absolute;
        top: 20px;
       right: 20px;
   /* transform: translateX(-50%);*/
    }
   .nav-panel-header img {
        height: 42px;
        width: auto;
       /* filter: brightness(0) invert(1);  
        opacity: 0.9;*/
    }

    /* Ana menü linkleri — ortalı, büyük */
    .nav-panel-body {
        text-align: center;
        width: 100%;
    }

    #navmenu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    #navmenu ul li a,
    #navmenu ul li > .nav-link {
        color: rgba(255,255,255,0.85) !important;
        font-weight: 700;
        font-size: 1.6rem;
        letter-spacing: 0.02em;
        padding: 10px 30px;
        border-radius: 12px;
        display: block;
        text-decoration: none;
        text-align: center;
        transition: color 0.2s, letter-spacing 0.2s;
        line-height: 1.2;
    }

    #navmenu ul li a:hover {
        color: #f0b840 !important;
        letter-spacing: 0.06em;
        background: transparent;
    }

    /* Dropdown alt menü — fullscreen içinde */
    #navmenu .dropdown-menu {
        position: static !important;
        float: none;
        box-shadow: none;
        border: none;
        background: transparent;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin: 4px 0;
        padding: 6px 0;
        display: none;
    }
    #navmenu .dropdown-menu li a {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: rgba(255,255,255,0.6) !important;
        padding: 7px 20px;
    }
    #navmenu .dropdown-menu li a:hover {
        color: #f0b840 !important;
    }
    #navmenu .dropdown.dropdown-open > .dropdown-menu {
        display: block;
    }

    /* Staggered animasyon — linkler birer birer çıkar */
    #navmenu.active ul li {
        animation: navItemIn 0.4s ease forwards;
        opacity: 0;
        transform: translateY(20px);
    }
    #navmenu.active ul li:nth-child(1)  { animation-delay: 0.15s; }
    #navmenu.active ul li:nth-child(2)  { animation-delay: 0.22s; }
    #navmenu.active ul li:nth-child(3)  { animation-delay: 0.29s; }
    #navmenu.active ul li:nth-child(4)  { animation-delay: 0.36s; }
    #navmenu.active ul li:nth-child(5)  { animation-delay: 0.43s; }
    #navmenu.active ul li:nth-child(6)  { animation-delay: 0.50s; }
    #navmenu.active ul li:nth-child(7)  { animation-delay: 0.57s; }
    #navmenu.active ul li:nth-child(8)  { animation-delay: 0.64s; }

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

    /* Panel alt: Dil + Rezervasyon — menü içinde alt kısım */
    .nav-panel-footer {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 0 20px;
    }

    .nav-panel-footer .btn-rezervasyon {
        font-size: 0.9rem;
        padding: 11px 28px;
    }

    .nav-panel-lang {
        display: flex;
        gap: 10px;
    }
    .nav-panel-lang a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 8px 18px;
        border-radius: 50px;
        border: 1px solid rgba(255,255,255,0.25);
        color: rgba(255,255,255,0.8);
        font-weight: 600;
        font-size: 0.85rem;
        text-decoration: none;
        transition: all 0.2s;
    }
    .nav-panel-lang a:hover,
    .nav-panel-lang a.active {
        border-color: #f0b840;
        color: #f0b840;
        background: rgba(240,184,64,0.1);
    }

    /* Dekoratif ince çizgi — menü arka plan */
    #navmenu::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #2563b0, #01a7eb, #e8a020);
    }

    body.nav-open {
        overflow: hidden;
    }

    /* ============================================================
       RESPONSIVE: Geniş ekranda rezervasyon metni tam
       ============================================================ */
    @media (max-width: 480px) {
        .btn-rezervasyon .btn-text {
            display: none;
        }
        .btn-rezervasyon {
            padding: 9px 13px;
        }
        .header-inner {
            padding: 0 14px;
        }
    }


/* ====== TYPOGRAPHY ====== */
.bg-beyaz{background: #fff!important}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 10px; 
}
h1.display {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
h2.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
  position: relative; /* Çizginin hizalanması için eklendi */
  padding-bottom: 15px;
}
/* Son istediğin 3 renkli gradyan çizgi efekti */
h2.section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 90px; 
  height: 3px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: linear-gradient(
    to right,
    #2563b0 0px,       #2563b0 40px,
    transparent 40px,  transparent 43px,
    #01a7eb 43px,      #01a7eb 68px,
    transparent 68px,  transparent 71px,
    #e8a020 71px,      #e8a020 90px
  );
  border-radius: 2px;
}

.sectionok p{
   padding-bottom: 10px;}

.sectionok h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a2e4a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 90px;
    height: 3px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(to right, #2563b0 0px, #2563b0 40px, transparent 40px, transparent 43px, #01a7eb 43px, #01a7eb 68px, transparent 68px, transparent 71px, #e8a020 71px, #e8a020 90px);
    border-radius: 2px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 540px;
}
.divider {
  display: flex; gap: 5px; margin: 16px 0 24px;
}
.divider span { display: block; height: 3px; border-radius: 3px; }
.d1 { width: 40px; background: var(--navy); }
.d2 { width: 26px; background: var(--sky); }
.d3 { width: 14px; background: var(--gold); }

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 0.88rem;
  padding: 13px 30px; border-radius: 50px;
  text-decoration: none;
  transition: background .3s, transform .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--mid); color: var(--white); transform: translateY(-2px); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: 0.88rem;
  padding: 13px 30px; border-radius: 50px;
  text-decoration: none;
  transition: background .3s, transform .2s;
  border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--goldlt); color: var(--navy); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 0.88rem;
  padding: 12px 28px; border-radius: 50px;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.45);
  transition: background .3s, border-color .3s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); color: var(--white); }

/* Son istediğin mavi gradyanlı buton */
.btn-view {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background .3s ease, box-shadow .3s ease, transform .2s ease;
  text-decoration: none;
}
.btn-view:hover {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  box-shadow: 0px 3px 5px rgba(30, 60, 180, 0.14);
  color: #fff;
}


/* ======================================================
   WELCOME — Sol metin + Sağ fotoğraf kolonu (Meltem stili)
   ====================================================== */
.sb-welcome { padding: 200px 0 80px; background: #ffffff; }
.sb-eyebrow { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #2563b0; margin-bottom: 14px; }
.sb-title { font-size: 2rem; font-weight: 800; color: #1a2e4a; line-height: 1.15; margin-bottom: 18px; }
.sb-divider { display: flex; gap: 4px; margin-bottom: 24px; }
.sb-divider .d-blue  { display:block; width:44px; height:3px; background:#2563b0; border-radius:2px; }
.sb-divider .d-mid   { display:block; width:28px; height:3px; background:#01a7eb; border-radius:2px; }
.sb-divider .d-gold  { display:block; width:18px; height:3px; background:#e8a020; border-radius:2px; }
.sb-body { color:#666; font-size:1.05rem; line-height:1.8; }
.sb-body p { margin-bottom: 14px; }

/* Fotoğraf grid */
.sb-photo-grid { display: flex; gap: 14px; height: 520px; }
.sb-photo-col { display: flex; flex-direction: column; gap: 14px; }
.sb-col-tall  { flex: 1.2; }
.sb-col-stack { flex: 0.8; }
.sb-photo-item { display: block; border-radius: 16px; overflow: hidden; flex: 1; }
.sb-col-tall .sb-photo-item  { flex: 1; }
.sb-col-stack .sb-photo-item { flex: 1; }
.sb-photo-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.sb-photo-item:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
    .sb-welcome { padding: 160px 0 60px; }
    .sb-title { font-size: 1.8rem; }
    .sb-photo-grid { height: 340px; }
}

/* ======================================================
   ODALAR — Swiper slider Buton Konumlandırması
   ====================================================== */
.slider-buttons { position: absolute; bottom: 10px; left: 49%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.slider-buttons .swiper-button-prev,
.slider-buttons .swiper-button-next { position: static !important; left: auto !important; right: auto !important; top: auto !important; transform: none !important; }

/* ======================================================
   PARALLAX GALLERY & FACILITY CARDS
   ====================================================== */
.parallax-gallery { position: relative; background-image: url("../img/paralax.jpg?v2"); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; padding: 80px 0; }
.parallax-gallery::before { content: ""; position: absolute; inset: 0; background: rgb(0 0 0 / 70%); z-index: 0; }
.parallax-gallery > * { position: relative; z-index: 1; }
.parallax-gallery p{ color:white }

.facalities i { color: #1b9edc; font-size: 3rem; }
.facility-card.text-center.p-4.border.rounded.shadow-sm {
    background: rgba(44,88,150,1);
    background: -moz-linear-gradient(top, rgba(44,88,150,1) 0%, rgba(10,22,39,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(44,88,150,1)), color-stop(100%, rgba(10,22,39,1)));
    background: -webkit-linear-gradient(top, rgba(44,88,150,1) 0%, rgba(10,22,39,1) 100%);
    background: -o-linear-gradient(top, rgba(44,88,150,1) 0%, rgba(10,22,39,1) 100%);
    background: -ms-linear-gradient(top, rgba(44,88,150,1) 0%, rgba(10,22,39,1) 100%);
    background: linear-gradient(to bottom, rgba(44,88,150,1) 0%, rgba(10,22,39,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c5896', endColorstr='#0a1627', GradientType=0 );
}

/* ======================================================
   SERVİSLER — 2 büyük kart: Hamam & Wedding
   ====================================================== */
.sb-section-head { text-align: center; margin-bottom: 48px; }
.sb-section-title { font-size: 2rem; font-weight: 800; color: #1a2e4a; margin-bottom: 10px; }
.sb-section-sub { color: #888; font-size: 1rem; max-width: 560px; margin: 0 auto; }
.sb-services { padding: 80px 0; background: #f7f9fc; }
.sb-service-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 2px 20px rgba(30,60,120,0.07); transition: transform .3s, box-shadow .3s; height: 100%; }
.sb-service-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(30,60,120,0.13); }
.sb-service-img { position: relative; height: 280px; overflow: hidden; }
.sb-service-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.sb-service-card:hover .sb-service-img img { transform: scale(1.05); }
.sb-service-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,40,0.65), transparent); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity .3s; }
.sb-service-card:hover .sb-service-overlay { opacity: 1; }
.sb-service-overlay i { color: #fff; font-size: 2rem; }
.sb-service-body { padding: 28px 28px 32px; }
.sb-service-body h3 { font-size: 1.25rem; font-weight: 800; color: #1a2e4a; margin-bottom: 12px; }
.sb-service-body p { color: #888; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.sb-service-link { display: inline-flex; align-items: center; gap: 7px; color: #2563b0; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: gap .2s, color .2s; }
.sb-service-link:hover { gap: 12px; color: #e8a020; }

/* ======================================================
   ÖDÜLLER & PUANLAR (Awards & Ratings)
   ====================================================== */
.sb-awards { padding: 80px 0; background: #f7f9fc; }
#awardsSwiper { overflow: hidden; position: relative; }
.award-slide-item { display: block; border-radius: 14px; overflow: hidden; border: 2px solid #e2e8f0; transition: border-color .3s, transform .3s; background: #fff; }
.award-slide-item:hover { border-color: #2563b0; transform: translateY(-1px); }
.award-slide-item img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: contain; display: block; background: #fff; }
#awardsSwiper .swiper-button-prev,
#awardsSwiper .swiper-button-next { top: 50% !important; bottom: auto !important; width: 38px !important; height: 38px !important; background: #1a2e4a; border-radius: 50%; color: #fff !important; margin-top: -19px !important; position: absolute !important; }
#awardsSwiper .swiper-button-prev { left: 8px !important; right: auto !important; }
#awardsSwiper .swiper-button-next { right: 8px !important; left: auto !important; }
#awardsSwiper .swiper-button-prev::after,
#awardsSwiper .swiper-button-next::after { font-size: 0.72rem !important; font-weight: 700; }
.awards-ratings { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.rating-card { background: #fff; border-radius: 14px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; box-shadow: 0 2px 14px rgba(30,60,120,0.07); border: 1px solid #e2e8f0; transition: transform .25s, box-shadow .25s; }
.rating-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(30,60,120,0.12); }
.rating-logo { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.85rem; color: #1a2e4a; min-width: 110px; }
.rating-stars { color: #e8a020; font-size: 0.9rem; letter-spacing: 1px; }
.rating-score { font-size: 1.4rem; font-weight: 800; color: #1a2e4a; line-height: 1; margin-left: auto; }
.rating-score span { font-size: 0.8rem; color: #888; font-weight: 500; }
.rating-count { font-size: 0.75rem; color: #888; white-space: nowrap; }
@media (max-width: 767px) {
  .award-slide-item img { aspect-ratio: 4 / 3; }
  .rating-card { flex-wrap: wrap; gap: 8px; }
  .rating-score { margin-left: 0; }
}
/* ======================================================
   GALERİ — Masonry tarzı grid (Meltem stili)
   ====================================================== */
.sb-gallery { padding: 80px 0; background: #fff; }
.sb-gallery-grid { display: flex; flex-direction: column; gap: 8px; }
.sb-gallery-row--2col { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; }
.sb-gallery-row--3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.sb-gallery-item { border-radius: 14px; overflow: hidden; position: relative; }
.sb-gallery-item a { display: block; width: 100%; height: 100%; }
.sb-gallery-item img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform .45s ease; }
.sb-gallery-item:hover img { transform: scale(1.06); }
.sb-gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.45), transparent); opacity: 0; transition: opacity .35s; pointer-events: none; }
.sb-gallery-item:hover::after { opacity: 1; }

.sb-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: #1a2e4a; color: #fff; font-weight: 700; font-size: 0.9rem; padding: 13px 32px; border-radius: 50px; text-decoration: none; transition: background .3s, transform .2s; }
.sb-btn-primary:hover { background: #2563b0; color: #fff; transform: translateY(-2px); }

@media (max-width: 768px) {
    .sb-gallery-row--2col,
    .sb-gallery-row--3col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .sb-gallery-row--2col,
    .sb-gallery-row--3col { grid-template-columns: 1fr; }
}

/* ============================================================
   ODA DETAY SAYFASI ÖZEL STİLLERİ
   ============================================================ */

/* Özel Butonlar (WhatsApp ve Çizgili Buton) */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: .88rem;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: border-color .3s, color .3s, transform .2s;
}
.btn-outline:hover {
  border-color: var(--mid);
  color: var(--mid);
  transform: translateY(-2px);
}

/* 1. ROOM HERO Bölümü */
#room-hero {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
#room-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2. ODA BAŞLIK BLOĞU */
.room-title-block {
  padding: 24px 0 0;
}
.room-title-block h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

/* 3. FOTOĞRAF GALERİSİ (Main Galeri & Swiper Thumbs) */
.photo-gallery-wrap {
  padding: 18px 0 0;
}
.gallery-main {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .3s ease;
}
.gallery-main a.gallery-main-link {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-thumbs-wrap {
  margin-top: 10px;
}
.thumb-swiper {
  width: 100%;
}
.thumb-swiper .swiper-slide {
  width: 100px !important;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: .55;
  transition: opacity .25s;
  border: 2px solid transparent;
}
.thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb-swiper .swiper-slide.active-thumb {
  opacity: 1;
  border-color: var(--gold);
}
.thumb-swiper .swiper-slide:hover {
  opacity: .85;
}

/* 4. HIZLI BİLGİ KARTLARI (Quick Info Grid) */
.quick-info {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  margin: 18px 0 0;
}
.qi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 14px;
  border-right: 1px solid var(--border);
  gap: 8px;
}
.qi-item:last-child {
  border-right: none;
}
.qi-icon {
  width: 46px;
  height: 46px;
  background: #eef4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.qi-icon i {
  font-size: 2rem;
  color: var(--mid);
}
.qi-item:hover .qi-icon {
  background: var(--navy);
}
.qi-item:hover .qi-icon i {
  color: var(--white);
}
.qi-val {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.qi-lbl {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
}

/* 5. ANA ODA DÜZENİ VE SEKSİYONLAR */
.room-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 32px 0 80px;
  align-items: start;
}
.room-section {
  margin-bottom: 36px;
}
.room-section h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.room-section p {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Özellikler Listesi (Features Grid) */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.feat-item:nth-child(2n) {
  border-right: none;
}
.feat-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.feat-item:hover {
  background: var(--bg);
}
.feat-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #eef4ff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon i {
  font-size: 1.5rem;
  color: var(--mid);
}
.feat-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
.feat-sub {
  font-size: .75rem;
  color: var(--muted);
}

/* Yatak Düzeni Kartları (Bed Cards) */
.bed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 4px;
}
.bed-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.bed-card:hover {
  border-color: var(--mid);
  transform: translateY(-3px);
}
.bed-card i {
  font-size: 2rem;
  color: var(--mid);
  display: block;
  margin-bottom: 10px;
}
.bed-card h5 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.bed-card p {
  font-size: .78rem;
  color: var(--muted);
}

/* Teknik Detay Tablosu (Tech Table) */
.tech-table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border-collapse: collapse;
}
.tech-table tr {
  border-bottom: 1px solid var(--border);
}
.tech-table tr:last-child {
  border-bottom: none;
}
.tech-table td {
  padding: 13px 18px;
  font-size: .9rem;
}
.tech-table td:first-child {
  font-weight: 700;
  color: var(--navy);
  background: var(--bg);
  width: 44%;
  border-right: 1px solid var(--border);
}
.tech-table td:last-child {
  color: var(--muted);
}

/* 6. YAN PANEL (Sticky Sidebar & Rezervasyon Kartı) */
.sidebar {
  position: sticky;
  top: 80px;
}
.res-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(13,30,53,.08);
  margin-bottom: 20px;
}
.res-card-head {
  background: var(--navy);
  padding: 22px 24px;
}
.res-card-head h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.res-card-head p {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}
.res-card-body {
  padding: 22px 24px;
}
.res-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.res-cta-stack a, .res-cta-stack button {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.res-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
  color: var(--muted);
  font-size: .78rem;
}
.res-divider::before, .res-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.res-note {
  margin-top: 14px;
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.res-note i {
  font-size: .88rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--mid);
}

/* Detay Bilgi Kartı (Info Card) */
.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 20px;
}
.info-card h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .86rem;
}
.info-row:last-child {
  border-bottom: none;
}
.info-row i {
  font-size: 1rem;
  color: var(--mid);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.info-row strong {
  color: var(--navy);
  font-weight: 600;
}
.info-row span {
  color: var(--muted);
  margin-left: auto;
  font-size: .82rem;
}

/* 7. REZERVASYON FORMU BÖLÜMÜ */
#reservation-form {
  background: var(--bg);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
#reservation-form h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.form-full {
  grid-column: span 2;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--mid);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.form-note {
  font-size: .8rem;
  color: var(--muted);
}

/* ============================================================
   RESPONSIVE (MOBIL UYUMLULUK) DÜZENLEMELERİ
   ============================================================ */
@media(max-width:992px) {
  .room-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .bed-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feat-item:nth-child(2n) { border-right: 1px solid var(--border); }
  .feat-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .feat-item:last-child { border-bottom: none; }
}

@media(max-width:768px) {
  #room-hero { height: 240px; }
  .gallery-main { height: 260px; }
  .thumb-swiper .swiper-slide { width: 72px !important; height: 52px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: span 1; }
  .bed-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width:576px) {
  .quick-info { grid-template-columns: repeat(2, 1fr); }
  .qi-item:nth-child(2n) { border-right: none; }
  .qi-item { border-bottom: 1px solid var(--border); }
  .qi-item:nth-last-child(-n+1) { border-bottom: none; }
}


/* ====== LAYOUT ====== */

.section--gray { background: var(--bg); }
.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 0 auto; }
.section-head.centered .divider { justify-content: center; }

/* ====== HERO ====== */
#hero {
  position: relative;
  width: 100%; height: 100vh;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-video-wrapper {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 0;
}
.hero-video-wrapper iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 177.78vh; height: 100vh;
  min-width: 100%; min-height: 56.25vw;
  pointer-events: none; border: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8,18,30,.92) 0%,
    rgba(8,18,30,.45) 40%,
    rgba(8,18,30,.18) 70%,
    transparent 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 0 120px;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end; gap: 40px;
}
.hero-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 14px; display: block;
}
h1.display { margin-bottom: 12px; }
.hero-tagline { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 28px; line-height: 1.6; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8); font-size: 0.78rem; font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero-chip i { font-size: 0.88rem; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 100px; right: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.45); font-size: 0.7rem; letter-spacing: .12em; text-transform: uppercase;
  writing-mode: vertical-lr;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent);
  margin-top: 8px;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.scroll-arrow {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,.6); font-size: 1.6rem; text-decoration: none;
  animation: bounce 2.2s infinite;
}

/* ====== BOOKING BAR ====== */
.booking-bar {
  background: var(--white);
  box-shadow: 0 8px 40px rgba(13,30,53,.1);
  border-radius: 0 0 var(--radius) var(--radius);
  position: relative; z-index: 10;
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0; align-items: stretch;
}
.bk-field {
  padding: 18px 22px;
  border-right: 1px solid var(--border);
}
.bk-field label {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 5px;
}
.bk-field input, .bk-field select {
  width: 100%; border: none; outline: none;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--navy); background: transparent; cursor: pointer;
}
.bk-submit {
  padding: 18px 28px;
  background: var(--gold); border: none; cursor: pointer;
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.88rem;
  color: var(--white); border-radius: 0 0 var(--radius) 0;
  transition: background .3s;
  white-space: nowrap;
}
.bk-submit:hover { background: var(--goldlt); color: var(--navy); }
@media (max-width: 768px) {
  .booking-inner { grid-template-columns: 1fr 1fr; }
  .bk-submit { grid-column: span 2; border-radius: 0 0 var(--radius) var(--radius); justify-content: center; }
}

/* ====== WELCOME ====== */
#welcome { padding: 90px 0; }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.welcome-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 32px;
}
.stat-box {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 20px; text-align: center;
  border: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.stat-lbl { font-size: 0.78rem; color: var(--muted); margin-top: 4px; display: block; }
.welcome-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 180px;
  gap: 10px;
}
.wp { border-radius: var(--radius); overflow: hidden; }
.wp img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.wp:hover img { transform: scale(1.04); }
.wp:first-child { grid-row: 1/3; }
.wp:first-child a { display: block; height: 100%; }
.wp a { display: block; height: 100%; }


/* ── CARD ── */
    .room-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(30, 60, 180, 0.08);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    /* ── IMAGE WRAPPER ── */
    .room-card .img-wrap {
      position: relative;
      overflow: hidden;
      height: 270px;
    }

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

    /* ── CARD BODY ── */
    .room-card .card-body {
      padding: 15px 15px 18px;
      margin: 0px!important;
    }

    .room-card .room-name {
      font-size: 1.2rem;
      font-weight: 800;
      color: #1e3a8a;
      margin-bottom: 6px;
    }

    .room-card .room-desc {
      font-size: 1rem;
      color: #64748b;
      margin-bottom: 18px;
      line-height: 1.7;
    }

   /* ── BADGE ROW ── */
    .badge-row {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .info-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #f0f4ff;
      border-radius: 50px;
      padding: 6px 10px 6px 8px;
      flex: 1;
      min-width: 0;
    }

    .badge-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: #fff;
      flex-shrink: 0;
    }

    .badge-icon.dblue  { background: #2563b0; }
    .badge-icon.blue   { background: #01a7eb; }
    .badge-icon.orange { background: #e8a020; }

    .badge-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .badge-text .label {
      font-size: .7rem;
      color: #5b5d5f;
      font-weight: 600;
    }

    .badge-text .value {
      font-size: .95rem;
      font-weight: 800;
      color: #1e293b;
    }
    /* ── BUTTON ── */
    .btn-view {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 13px;
      background: linear-gradient(90deg, #3b82f6, #60a5fa);
      color: #fff;
      font-weight: 700;
      font-size: .95rem;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: background .3s ease, box-shadow .3s ease, transform .2s ease;
      text-decoration: none;
    }

    .btn-view:hover {
      background: linear-gradient(90deg, #2563eb, #3b82f6);
      box-shadow: 0px 3px 5px rgba(30, 60, 180, 0.14);
      color: #fff;
    }

    /* ── HOVER EFFECTS ── */
    .room-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(30, 60, 180, 0.14);
    }

    .room-card:hover .img-wrap img {
      transform: scale(1.06);
    }

    /* ── MUTFAK VARSA 2x2 GRID DÜZENİ ── */
.badge-row.has-4-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Yan yana tam eşit 2 sütun yapar */
  gap: 8px; /* Rozetlerin arasındaki boşluk */
}

/* Grid yapısında rozetlerin genişlik dengesini korumak için */
.badge-row.has-4-badges .info-badge {
  flex: none; 
  width: 100%;
}

.badge-row.no-kitchen-badges {
  display: flex;
  flex-wrap: wrap; /* Sığmayan elemanın alta düşmesini sağlar */
  gap: 8px;
}

/* Kapasite ve Banyo yan yana tam %50 (boşluk düşülerek) yer kaplasın */
.badge-row.no-kitchen-badges .badge-capacity,
.badge-row.no-kitchen-badges .badge-bathroom {
  flex: 0 0 calc(50% - 4px);
  width: calc(50% - 4px);
}

/* Yatak (Bedroom) alt satıra tek başına insin ve %100 kaplasın */
.badge-row.no-kitchen-badges .badge-bedroom {
  flex: 0 0 100%;
  width: 100%;
}

/* ====== FACILITIES ====== */
#facilities { padding: 90px 0; }
.fac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
.fac-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 38px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}
.fac-item:nth-child(3n) { border-right: none; }
.fac-item:nth-child(7), .fac-item:nth-child(8), .fac-item:nth-child(9) { border-bottom: none; }
.fac-item:hover { background: var(--bg); }
.fac-icon {
  width: 60px; height: 60px;
  background: #eef4ff;
  border-radius: 14px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.fac-icon i { font-size: 1.6rem; color: var(--mid); transition: color .3s, transform .3s; }
.fac-item:hover .fac-icon { background: var(--navy); }
.fac-item:hover .fac-icon i { color: var(--white); transform: scale(1.15); }
.fac-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.fac-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 768px) { .fac-grid { grid-template-columns: repeat(2,1fr); } }

/* ====== SERVICES ====== */
#services { padding: 90px 0; background: var(--bg); }
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 80px;
}
.svc-row:last-child { margin-bottom: 0; }
.svc-row.reverse { direction: rtl; }
.svc-row.reverse > * { direction: ltr; }
.svc-img {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 440px;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.svc-row:hover .svc-img img { transform: scale(1.04); }
.svc-img-tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(8,18,30,.65); backdrop-filter: blur(6px);
  color: var(--white); font-size: 0.75rem; font-weight: 700;
  letter-spacing: .06em; padding: 7px 14px; border-radius: 50px;
  display: flex; align-items: center; gap: 7px;
}
.svc-text h3 {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 14px; line-height: 1.2;
}
.svc-text p { color: var(--muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 20px; }
.svc-list { list-style: none; margin-bottom: 28px; }
.svc-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy); font-size: 0.93rem; font-weight: 600;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li i { color: var(--mid); font-size: 0.75rem; flex-shrink: 0; }
@media (max-width: 768px) {
  .svc-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .svc-row.reverse { direction: ltr; }
  .svc-img { height: 280px; }
}

/* ====== GALLERY ====== */
#gallery { padding: 90px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px; margin-top: 40px;
}
.g-item {
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
}
.g-item a { display: block; width: 100%; height: 100%; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.g-item:hover img { transform: scale(1.08); }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(8,18,30,.28); opacity: 0; transition: opacity .3s; pointer-events: none;
}
.g-item:hover::after { opacity: 1; }
.gallery-more { text-align: center; margin-top: 36px; }
@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; } }

/* ====== CTA BAND ====== */
#cta-band {
  background: var(--navy);
  padding: 80px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,.55); font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ====== FOOTER ====== */
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: #ffffff;
  background: rgba(30,59,138,1);
background: -moz-linear-gradient(top, rgba(30,59,138,1) 0%, rgba(0,2,5,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(30,59,138,1)), color-stop(100%, rgba(0,2,5,1)));
background: -webkit-linear-gradient(top, rgba(30,59,138,1) 0%, rgba(0,2,5,1) 100%);
background: -o-linear-gradient(top, rgba(30,59,138,1) 0%, rgba(0,2,5,1) 100%);
background: -ms-linear-gradient(top, rgba(30,59,138,1) 0%, rgba(0,2,5,1) 100%);
background: linear-gradient(to bottom, rgba(30,59,138,1) 0%, rgba(0,2,5,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e3b8a', endColorstr='#000205', GradientType=0 );
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

footer {
  background: #070f1c;
  color: rgba(255,255,255,.5);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-top: 14px; max-width: 260px; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 0.9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--goldlt); }
.footer-logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 8px;
}
.footer-line { width: 40px; height: 2px; background: linear-gradient(90deg,var(--mid),var(--gold)); border-radius: 2px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .hero-content .container { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
  .welcome-photos { height: 320px; grid-template-rows: 1fr 1fr; }
}
@media (max-width: 576px) {
  .hero-cta { flex-direction: column; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Ana sayfa odalar
--------------------------------------------------------------*/
/* Okları slider container üstünde ve sağda yan yana */
/* Okları slider container üstünde ve sağda hizala */
.swiper-button-prev,
.swiper-button-next,.carousel-prev-btn {
 top: auto !important;   /* top: 30px'i ezmek için */
  bottom: 10px;           /* slide'ların altına al */
  width: 60px;
  height: 35px;
  color: #fff;
  background: rgb(0 178 246);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
}

/* Önceki ok sağda */
.swiper-button-prev {
    right: 72px; /* Sağa biraz boşluk */
}

/* Sonraki ok hemen yanına */
.swiper-button-next {
    right: 10px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 26px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #1e3a8a;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Opsiyonel: Ok simgelerini de hafif büyütebilirsin */
.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
/* Küçük ekranlar için responsive */
@media (max-width: 768px) {
    .swiper-button-prev {
        right: 40px;
    }
    .swiper-button-next {
        right: 10px;
    }
}

/* RTL veya varsayılan ayarlar ile çakışmayı önle */
.swiper-button-prev,
.swiper-button-next {
    left: auto !important;
}
.card-body.rounded i {
    font-size: 1.5rem;
  }
/*.col p > i.hgi, i.hgi.hgi-stroke.hgi-bed-double {
  color: #0099bd; /* Bootstrap danger kırmızısı */
}/*



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #08657b;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color:#dc3545;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #818181;
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/*.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #0099bd;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
    margin-top: -125px;
}

.hero .carousel {
  width: 100%;
  min-height: 60vh;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 580px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}



.hero h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.3s;
  margin: 10px;
  border-radius: 5px;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--contrast-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}


/* ======================================================
   SIDEBAR (ENQUIRY) FORM STİLLERİ
   ====================================================== */
.form-card {
  padding: 35px 30px;
}

.sidebar-form-wrapper label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy, #0d1e35);
  margin-bottom: 6px;
  display: block;
}

.sidebar-form-wrapper .wpcf7-form-control-wrap input,
.sidebar-form-wrapper .wpcf7-form-control-wrap select,
.sidebar-form-wrapper .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: #f8fafc;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-form-wrapper .wpcf7-form-control-wrap input:focus,
.sidebar-form-wrapper .wpcf7-form-control-wrap select:focus,
.sidebar-form-wrapper .wpcf7-form-control-wrap textarea:focus {
  border-color: var(--mid, #2563b0);
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 176, 0.1);
}

.sidebar-form-wrapper textarea {
  min-height: 100px;
  resize: vertical;
}

/* Yan Panelde form inputlarının taşmasını engellemek için */
.sidebar-form-wrapper .wpcf7 {
  margin: 0;
}

@media (max-width: 992px) {
  .form-card { padding: 30px 20px; }
}


/* ======================================================
   İÇ SAYFALAR ÖZEL STİLLERİ (SUB PAGE)
   ====================================================== */

/* Hero Üst Bölüm */
.sub-hero-section {
  position: relative;
  height: 380px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* Parallax hissi verir */
  margin-top: -72px; /* Header transparanlığı korunsun diye yukarı çeker */
  padding-top: 72px;
}
.sub-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,30,53,0.25) 0%, rgba(13,30,53,0.4) 100%);
  z-index: 1;
}
.sub-hero-section .container {
  position: relative;
  z-index: 2;
}
.sub-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--goldlt, #f0b840);
  display: block;
  margin-bottom: 12px;
}
.sub-page-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white, #ffffff);
  line-height: 1.2;
}

/* 3 Renkli Çizgi Senkronizasyonu */
.sub-title-divider {
  display: flex; 
  gap: 4px; 
  margin-top: 16px;
  justify-content: center;
  width: 90px;
}
.sub-title-divider span { display: block; height: 3px; border-radius: 2px; }
.sub-title-divider .line-blue { width: 44px; background: #2563b0; }
.sub-title-divider .line-sky  { width: 28px; background: #01a7eb; }
.sub-title-divider .line-gold { width: 18px; background: #e8a020; }

/* İçerik Yazı Alanı */
.entry-content {
  font-family: var(--font-body);
  color: #555555;
  font-size: 1.08rem;
  line-height: 1.85;
}
.entry-content p { margin-bottom: 20px; }
.entry-content h2, .entry-content h3 {
  color: var(--navy, #0d1e35);
  font-family: var(--font-head);
  font-weight: 700;
  margin: 35px 0 15px;
}

/* Sayfa İçi Fotoğraf Galerisi */
.sub-gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,30,53,0.06);
  background: #ffffff;
}
.sub-gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sub-gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 176, 0.45); /* Temanın mid blue rengi transparan */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}
.sub-gallery-hover i {
  color: #ffffff;
  font-size: 1.8rem;
  transform: scale(0.7);
  transition: transform 0.35s ease;
}
.sub-gallery-card:hover img {
  transform: scale(1.05);
}
.sub-gallery-card:hover .sub-gallery-hover {
  opacity: 1;
}
.sub-gallery-card:hover .sub-gallery-hover i {
  transform: scale(1);
}

@media (max-width: 768px) {
  .sub-hero-section { height: 300px; }
  .sub-gallery-card img { height: 200px; }
}

/* ======================================================
   EFEKTLER VE İKONLAR (ESKİ KODLARDAN KURTARILANLAR)
   ====================================================== */

/* Odalar bölümü görsel üzerine gelince kararma efekti */
.image-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-wrapper:hover::after {
  opacity: 1;
}

/* Header Tripadvisor İkon Animasyonu */
.header-tripadvisor img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1); 
  transition: transform .2s ease, filter .2s ease;
}

.header-tripadvisor:hover img {
  transform: scale(1.1);
}