/* ============================================================
   TurcoTur – Style Sheet  |  Mobile-First
   ============================================================ */

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

:root {
  --navy:   #0D1B2A;
  --blue:   #1B4F72;
  --gold:   #C9A84C;
  --red:    #C0392B;
  --green:  #1A7A4A;
  --white:  #FFFFFF;
  --light:  #F5F7FA;
  --border: #E8ECF0;
  --text:   #2C3E50;
  --muted:  #6B7280;
  --radius: 12px;
  --shadow: 0 4px 32px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 48px rgba(0,0,0,0.18);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.tag {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.alt-bg { background: var(--light); }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy); color: rgba(255,255,255,0.8);
  font-size: 13px; padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-left a, .topbar-right a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.topbar-left a:hover, .topbar-right a:hover { color: var(--gold); }
.topbar-wa { background: #25D366; color: white !important; padding: 4px 12px; border-radius: 20px; font-weight: 600; }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7); padding: 2px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 600; cursor: pointer; font-family: 'Montserrat', sans-serif;
  transition: all var(--transition);
}
.lang-btn:hover, .lang-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 900;
  background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 0;
}
.nav-inner { display: flex; align-items: stretch; justify-content: space-between; min-height: 68px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 80px; width: 220px; object-fit: contain; object-position: left center; display: block; }
.nav-links { display: flex; align-items: stretch; gap: 0; }
.nav-links > li { position: relative; display: flex; align-items: center; }
.nav-links > li > a {
  display: flex; align-items: center; padding: 0 18px; font-size: 13px; font-weight: 600;
  color: var(--text); white-space: nowrap; transition: color var(--transition);
  border-bottom: 3px solid transparent;
}
.nav-links > li > a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-reserve {
  background: var(--gold); color: var(--navy) !important;
  border-radius: 0; margin-left: 8px; padding: 0 24px !important;
  font-weight: 700 !important;
}
.nav-reserve:hover { background: #b8922e !important; border-bottom-color: transparent !important; }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 220px;
  box-shadow: var(--shadow); border-radius: 0 0 var(--radius) var(--radius);
  border-top: 3px solid var(--gold); z-index: 999;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 12px 20px; font-size: 13px; font-weight: 500; color: var(--text);
  transition: background var(--transition), color var(--transition);
  border-bottom: 1px solid var(--border);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light); color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; margin-right: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1B3A6B 40%, #2E1B5E 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url('images/istanbul-hero.png') center/cover no-repeat;
  opacity: 0.55;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.75) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 20px; }
.hero-sub { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero-content h1 { font-size: clamp(36px, 7vw, 72px); color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,0.6); }
.hero-desc { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--navy);
  padding: 14px 32px; border-radius: 50px; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; font-family: 'Montserrat', sans-serif;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.5px;
}
.btn-primary:hover { background: #b8922e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-primary.full-w { width: 100%; text-align: center; border-radius: 8px; padding: 16px; }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 50px; font-size: 14px; font-weight: 700;
  border: 2px solid rgba(255,255,255,0.7); cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ── SCROLL INDICATOR ── */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero-scroll span {
  display: block; width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px; position: relative; margin: 0 auto;
}
.hero-scroll span::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: rgba(255,255,255,0.7); border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100%{opacity:1;transform:translateX(-50%) translateY(0)} 50%{opacity:0;transform:translateX(-50%) translateY(12px)} }

/* ── STATS BAR ── */
.stats-bar { background: var(--gold); padding: 24px 0; }
.stats-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 28px; font-family: 'Playfair Display', serif; color: var(--navy); font-weight: 700; }
.stat span { font-size: 12px; font-weight: 600; color: rgba(13,27,42,0.75); letter-spacing: 1px; text-transform: uppercase; }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; background: linear-gradient(135deg, var(--navy), var(--blue)); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: clamp(28px, 4vw, 42px); color: var(--navy); margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 24px; font-size: 15px; }
.about-checks { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.about-checks li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text); }
.about-checks li::before { content: '✓'; background: var(--gold); color: var(--navy); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }

/* ── SERVICES HEADING ── */
.services-heading { padding: 64px 0 0; text-align: center; }
.services-heading h2 { font-size: clamp(28px, 4vw, 42px); color: var(--navy); margin-top: 8px; }

/* ── SERVICE SECTIONS ── */
.service-section { padding: 80px 0; }
.service-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-inner.reverse { direction: rtl; }
.service-inner.reverse > * { direction: ltr; }
.service-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 400px; background: linear-gradient(135deg, var(--navy), var(--blue)); }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 20px;
}
.service-badge.green { background: var(--green); color: white; }
.service-badge.blue  { background: var(--blue);  color: white; }
.service-badge.gold  { background: var(--gold);  color: var(--navy); }

.service-text h2 { font-size: clamp(26px, 3.5vw, 38px); color: var(--navy); margin-bottom: 16px; }
.service-text p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.service-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.service-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.service-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* placeholder when image missing */
.img-placeholder { background: linear-gradient(135deg, #1B4F72 0%, #0D1B2A 100%) !important; }

/* ── VIP VITO 2x2 COLLAGE ── */
.vito-collage { padding: 0 !important; overflow: hidden; }
.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  min-height: 420px;
  gap: 4px;
}
.collage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.collage-grid img:hover { transform: scale(1.05); }

/* ── GALLERY ── */
.gallery { background: var(--light); text-align: center; }
.gallery h2 { font-size: clamp(26px, 4vw, 40px); color: var(--navy); margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--blue)); min-height: 200px; }
.gallery-item.large { grid-column: span 2; min-height: 300px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── RESERVE ── */
.reserve { background: var(--navy); }
.reserve-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.reserve-text .tag { color: var(--gold); }
.reserve-text h2 { font-size: clamp(28px, 4vw, 42px); color: var(--white); margin-bottom: 16px; }
.reserve-text p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 32px; }
.reserve-wa { margin-top: 8px; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 14px 28px; border-radius: 50px; font-size: 14px; font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}
.btn-wa:hover { background: #1EB558; transform: translateY(-2px); }

/* Form */
.reserve-form { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 14px; font-size: 14px; font-family: 'Montserrat', sans-serif;
  color: var(--text); background: var(--white); transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-row .form-group { margin-bottom: 0; }
.form-success { display: none; color: #1A7A4A; font-size: 14px; font-weight: 600; margin-top: 12px; text-align: center; }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 4vw, 38px); color: var(--navy); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--text); }
.contact-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-block; border: 1.5px solid var(--border);
  padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.map-placeholder { border-radius: var(--radius); overflow: hidden; min-height: 400px; box-shadow: var(--shadow); }
.map-placeholder iframe { width: 100%; height: 100%; min-height: 400px; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 20px 48px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 260px; line-height: 1.6; }
.tursab { margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; }
.footer-col h5 { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 20px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gold); }

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 96px; right: 30px; z-index: 998;
  background: var(--navy); color: white; width: 40px; height: 40px;
  border-radius: 50%; border: none; cursor: pointer; font-size: 18px;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: background var(--transition), transform var(--transition);
}
.back-top.show { display: flex; }
.back-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-inner  { gap: 40px; }
  .service-inner { gap: 40px; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .topbar-inner { justify-content: flex-end; }

  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 800; max-height: 80vh; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 16px 24px; border-bottom: 1px solid var(--border); border-right: none; border-left: 4px solid transparent; }
  .nav-links > li > a:hover { border-left-color: var(--gold); border-bottom-color: var(--border); }
  .nav-reserve { margin-left: 0; background: var(--gold) !important; border-left: 4px solid var(--gold) !important; color: var(--navy) !important; }
  .dropdown { position: static; box-shadow: none; border-top: none; border-radius: 0; background: var(--light); display: none !important; }
  .has-dropdown.open .dropdown { display: block !important; }
  .has-dropdown > a { cursor: pointer; }

  /* Sections */
  .section { padding: 56px 0; }
  .about-inner       { grid-template-columns: 1fr; }
  .about-img         { min-height: 260px; }
  .service-inner     { grid-template-columns: 1fr; }
  .service-inner.reverse { direction: ltr; }
  .service-img       { min-height: 260px; }
  .reserve-inner     { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid      { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .reserve-form { padding: 24px 20px; }

  /* Stats */
  .stats-inner { gap: 12px; }
  .stat strong { font-size: 22px; }

  /* Hero */
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; }
}

@media (max-width: 480px) {
  .footer-inner  { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .social-links  { flex-direction: column; }
}

/* ── RTL SUPPORT (Arabic) ── */
.rtl { direction: rtl; text-align: right; }
.rtl .nav-inner { flex-direction: row-reverse; }
.rtl .service-inner { direction: rtl; }
.rtl .topbar-inner { flex-direction: row-reverse; }
.lang-switcher { display: flex; gap: 4px; flex-wrap: wrap; }

/* ── PRICE TAG (FİYAT ETİKETİ) ── */
.price-tag {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  background: rgba(201, 168, 76, 0.15); /* Hafif Altın Rengi Arka Plan */
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 5px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
}