/* ============================================
   Sky Port Istanbul Hotel — Ana Stiller
   Tasarım: Lüks + sıcak + seyahat teması
   ============================================ */

:root {
  --navy: #0a3d62;
  --navy-deep: #062a45;
  --navy-light: #1d5a85;
  --amber: #e58e26;
  --amber-light: #f5a93f;
  --amber-soft: #fdf0dc;
  --cream: #faf7f2;
  --ink: #16222b;
  --gray: #5c6b75;
  --line: #e6ddd2;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(10, 61, 98, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 61, 98, 0.1);
  --shadow-lg: 0 20px 60px rgba(10, 61, 98, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", -apple-system, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--navy); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.section-intro { color: var(--gray); max-width: 620px; font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  border: none; transition: all .3s cubic-bezier(.2,.8,.2,1);
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--amber); color: var(--white);
  box-shadow: 0 8px 24px rgba(229, 142, 38, 0.35);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(229, 142, 38, 0.45); }
.btn-ghost { background: rgba(255,255,255,0.12); color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all .35s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm); padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--white); transition: color .3s; }
.scrolled .logo { color: var(--navy); }
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--amber); display: grid; place-items: center;
  color: #fff; font-size: 1.3rem; box-shadow: var(--shadow-sm);
}
.logo-mark svg { width: 26px; height: 26px; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 9px 16px; border-radius: 50px; font-weight: 500; font-size: 0.95rem;
  color: rgba(255,255,255,0.92); transition: all .25s;
}
.scrolled .nav a { color: var(--navy); }
.nav a:hover { background: rgba(255,255,255,0.16); }
.scrolled .nav a:hover { background: var(--amber-soft); color: var(--amber); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; gap: 4px; align-items: center; }
.lang-switch a {
  font-size: 0.82rem; font-weight: 600; padding: 6px 10px; border-radius: 8px;
  color: rgba(255,255,255,0.7);
}
.scrolled .lang-switch a { color: var(--gray); }
.lang-switch a.active { background: var(--amber); color: #fff; }
.nav-book { background: var(--amber); color: #fff !important; padding: 11px 24px !important; box-shadow: 0 6px 18px rgba(229,142,38,.4); }
.nav-book:hover { background: var(--amber-light) !important; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .3s; }
.scrolled .menu-toggle span { background: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease; transform: scale(1.05);
  animation: kenburns 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.14); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(6,42,69,0.92) 0%, rgba(10,61,98,0.7) 45%, rgba(10,61,98,0.25) 100%);
}
.hero-content { max-width: 680px; padding-top: 80px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(229,142,38,0.22); border: 1px solid rgba(245,169,63,0.5);
  padding: 9px 18px; border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  margin-bottom: 26px; backdrop-filter: blur(6px);
  animation: fadeUp .8s ease both;
}
.hero-badge .dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 4px rgba(74,222,128,0.3); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 4px rgba(74,222,128,0.3);} 50%{box-shadow:0 0 0 8px rgba(74,222,128,0);} }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); color: #fff; margin-bottom: 22px; animation: fadeUp .8s ease .1s both; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,0.9); margin-bottom: 36px; max-width: 560px; animation: fadeUp .8s ease .2s both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .8s ease .3s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-stats { display: flex; gap: 40px; margin-top: 54px; flex-wrap: wrap; animation: fadeUp .8s ease .4s both; }
.hero-stat .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--amber-light); }
.hero-stat .lbl { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 0.8rem; letter-spacing: .2em; text-transform: uppercase; animation: bob 2s infinite; }
@keyframes bob { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,8px);} }

/* ---------- About ---------- */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.about-text p { color: var(--gray); margin-bottom: 18px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.highlight-item { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.98rem; }
.highlight-item .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--amber-soft); color: var(--amber); display: grid; place-items: center; flex-shrink: 0; }
.highlight-item .ic svg { width: 20px; height: 20px; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.about-img .float-card {
  position: absolute; bottom: -26px; left: -26px; background: var(--navy); color: #fff;
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.about-img .float-card .big { font-family: var(--font-display); font-size: 2rem; color: var(--amber-light); }
.about-img .float-card .small { font-size: 0.85rem; opacity: .85; }

/* ---------- Rooms ---------- */
.rooms { background: var(--cream); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.room-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .4s cubic-bezier(.2,.8,.2,1);
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.room-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.room-card:hover .room-img img { transform: scale(1.08); }
.room-cap { position: absolute; top: 14px; left: 14px; background: rgba(6,42,69,0.85); color: #fff; padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; backdrop-filter: blur(4px); }
.room-body { padding: 24px; }
.room-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.room-body p { color: var(--gray); font-size: 0.95rem; margin-bottom: 18px; }
.room-card .btn { width: 100%; justify-content: center; }

/* ---------- Services ---------- */
.services { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.services::before { content:""; position:absolute; top:-100px; right:-100px; width:400px; height:400px; background: radial-gradient(circle, rgba(229,142,38,0.18), transparent 70%); }
.services .section-title { color: #fff; }
.services .section-intro { color: rgba(255,255,255,0.75); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; position: relative; }
.service-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 30px; transition: all .35s; backdrop-filter: blur(4px);
}
.service-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); border-color: rgba(245,169,63,0.4); }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--amber); display: grid; place-items: center; margin-bottom: 20px; }
.service-icon svg { width: 28px; height: 28px; color: #fff; }
.service-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: rgba(255,255,255,0.72); font-size: 0.94rem; }

/* ---------- Booking platforms ---------- */
.booking { background: var(--white); }
.booking-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-top: 50px; }
.booking-card {
  display: flex; align-items: center; gap: 18px; padding: 22px 24px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  transition: all .3s; position: relative; background: var(--white);
}
.booking-card:hover { border-color: var(--amber); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.booking-card.featured { border-color: var(--amber); background: var(--amber-soft); }
.booking-card .plat-logo {
  width: 54px; height: 54px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; color: #fff;
}
.plat-official { background: var(--navy); }
.plat-booking { background: #003580; }
.plat-expedia { background: #fc0; color: #00355f !important; }
.plat-agoda { background: #5c2d91; }
.plat-trip { background: #287dfa; }
.plat-tripadvisor { background: #34e0a1; color: #000 !important; }
.plat-hotels { background: #d32f2f; }
.booking-info { flex: 1; min-width: 0; }
.booking-info h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; color: var(--ink); margin-bottom: 2px; }
.booking-info .note { font-size: 0.82rem; color: var(--gray); }
.booking-card .arrow { color: var(--amber); flex-shrink: 0; transition: transform .3s; }
.booking-card:hover .arrow { transform: translateX(4px); }
.featured-badge { position: absolute; top: -10px; right: 16px; background: var(--amber); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; letter-spacing: .05em; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 50px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after { content:""; position:absolute; inset:0; background: rgba(6,42,69,0); transition: background .3s; }
.gallery-item:hover::after { background: rgba(6,42,69,0.2); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(6,42,69,0.95); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 24px; right: 30px; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ---------- Location ---------- */
.location { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; }
.location-info .addr-block { display: flex; gap: 16px; margin-bottom: 24px; }
.location-info .addr-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--amber-soft); color: var(--amber); display: grid; place-items: center; flex-shrink: 0; }
.location-info .addr-ic svg { width: 22px; height: 22px; }
.location-info .addr-block h4 { font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); margin-bottom: 4px; }
.location-info .addr-block p, .location-info .addr-block a { color: var(--ink); font-weight: 500; }
.location-info .addr-block a:hover { color: var(--amber); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--navy-deep), var(--navy-light)); color: #fff; text-align: center; padding: 70px 0; }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 30px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; padding: 5px 0; font-size: 0.92rem; transition: color .2s; }
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--amber-light); }

/* ---------- Floating actions ---------- */
.float-actions { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); transition: transform .3s; color: #fff; }
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25d366; }
.float-call { background: var(--amber); }
.float-btn svg { width: 26px; height: 26px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: all .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .rooms-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
}
@media (max-width: 820px) {
  .section { padding: 64px 0; }
  .nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: var(--white); flex-direction: column; align-items: flex-start; padding: 90px 30px 30px; gap: 6px; box-shadow: var(--shadow-lg); transition: right .4s ease; }
  .nav.open { right: 0; }
  .nav a { color: var(--navy); width: 100%; padding: 13px 16px; }
  .nav-book { width: 100%; justify-content: center; margin-top: 10px; }
  .menu-toggle { display: block; z-index: 1100; }
  .nav-actions .lang-switch { order: -1; }
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-img { max-width: 440px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .hero-stats { gap: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .rooms-grid, .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .container { padding: 0 18px; }
}

/* ============ EK BÖLÜMLER (Yorumlar + SSS + RTL) ============ */
.container-narrow { max-width: 820px; }
.section-head { margin-bottom: 44px; }

/* --- Misafir Yorumları --- */
.reviews { background: var(--cream); }
.reviews-summary {
  display: inline-flex; align-items: center; gap: 18px;
  background: #fff; border: 1px solid rgba(10,61,98,.1);
  padding: 18px 26px; border-radius: 16px; margin-bottom: 38px;
  box-shadow: 0 10px 30px rgba(10,61,98,.06);
}
.rs-score {
  font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 700;
  color: #fff; background: var(--navy); border-radius: 12px;
  width: 74px; height: 74px; display: flex; align-items: center; justify-content: center;
}
.rs-label { font-weight: 700; color: var(--navy); font-size: 1.15rem; }
.rs-count { color: var(--gray); font-size: .95rem; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: #fff; border-radius: 18px; padding: 28px;
  border: 1px solid rgba(10,61,98,.08);
  box-shadow: 0 14px 40px rgba(10,61,98,.06);
  display: flex; flex-direction: column; gap: 16px;
}
.review-stars { color: var(--amber); font-size: 1.15rem; letter-spacing: 2px; }
.review-card blockquote {
  margin: 0; color: #2a3b47; line-height: 1.7; font-size: 1.02rem; flex: 1;
}
.review-card figcaption { display: flex; flex-direction: column; gap: 3px; }
.review-name { font-weight: 700; color: var(--navy); }
.review-plat { font-size: .82rem; color: var(--gray); }

/* --- SSS (FAQ) --- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid rgba(10,61,98,.1);
  border-radius: 14px; overflow: hidden; transition: box-shadow .25s, border-color .25s;
}
.faq-item[open] { box-shadow: 0 12px 34px rgba(10,61,98,.08); border-color: rgba(229,142,38,.4); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  font-weight: 600; color: var(--navy); font-size: 1.06rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--amber);
  border-radius: 2px; transition: transform .25s;
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { margin: 0; color: var(--gray); line-height: 1.75; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* --- RTL (Arapça) --- */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .nav-actions, [dir="rtl"] .lang-switch { flex-direction: row-reverse; }
[dir="rtl"] .faq-item summary { flex-direction: row-reverse; }
[dir="rtl"] .review-card { text-align: right; }
[dir="rtl"] .section-intro { margin-left: auto; margin-right: 0; }
[dir="rtl"] .hero-stats, [dir="rtl"] .about-highlights { direction: rtl; }
[dir="rtl"] .reviews-summary { flex-direction: row-reverse; }
