/* ============================================
   NUR SEYAHAT – HAC & ÜMRE ORGANİZASYONU
   Ana Stil Dosyası
   ============================================ */

:root {
  --gold:       #c9a84c;
  --gold-light: #f0d080;
  --green:      #1a5c3a;
  --green-dark: #0f3d26;
  --green-mid:  #2d7a52;
  --off-white:  #f9f7f2;
  --text-dark:  #1e2329;
  --radius:     14px;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
}

.font-serif { font-family: 'Playfair Display', Georgia, serif; }

/* ---- Utility ---- */
.text-gold { color: var(--gold) !important; }
.bg-green  { background: var(--green) !important; }

/* ---- Navbar ---- */
#mainNav {
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
  padding: .9rem 0;
}
#mainNav.scrolled {
  background: var(--green-dark) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
#mainNav .navbar-brand { font-family: 'Playfair Display', serif; }
.brand-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.brand-text { font-size: 1.25rem; font-weight: 700; letter-spacing: .5px; }
.nav-link {
  color: rgba(255,255,255,.88) !important;
  font-weight: 500;
  font-size: .92rem;
  transition: color .2s;
}
.nav-link:hover { color: var(--gold) !important; }

/* ---- Buttons ---- */
.btn-gold {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: #b08840; color: #fff; transform: translateY(-2px); }

.btn-primary-custom {
  background: var(--green);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: .65rem 1.6rem;
  transition: background .2s, transform .15s;
}
.btn-primary-custom:hover { background: var(--green-mid); color: #fff; transform: translateY(-2px); }

.btn-outline-primary-custom {
  background: transparent;
  color: var(--green);
  font-weight: 600;
  border: 2px solid var(--green);
  border-radius: 50px;
  padding: .65rem 1.6rem;
  transition: all .2s;
}
.btn-outline-primary-custom:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Hero ---- */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(145deg, #0f3d26 0%, #1a5c3a 50%, #0d2d1c 100%),
              url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?w=1600&q=80') center/cover no-repeat;
  background-blend-mode: multiply;
  position: relative;
  padding-top: 90px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(0,0,0,.35) 0%, transparent 70%);
}
.hero-section h1 { font-family: 'Playfair Display', serif; line-height: 1.15; }
.hero-label { font-size: 2rem; color: var(--gold); letter-spacing: 4px; }

.hero-stats { gap: 2rem; }
.stat-card {
  text-align: center;
  padding: 1.25rem 2rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
}
.stat-number { font-size: 2.2rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-label  { font-size: .85rem; color: rgba(255,255,255,.8); margin-top: .2rem; }

/* ---- Ticker ---- */
.ticker-band { background: var(--green); }

/* ---- Section Helpers ---- */
.section-padding { padding: 90px 0; }
.section-tag {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}
.section-tag--light { background: rgba(255,255,255,.15); color: var(--gold-light); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* ---- About ---- */
.about-img-wrapper { position: relative; }
.main-img { width: 100%; max-height: 480px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  max-width: 230px;
}

.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: .45rem 0;
  display: flex; align-items: center; gap: .6rem;
  font-size: .95rem;
}

/* ---- Service Cards ---- */
.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; margin-bottom: 1.25rem;
}
.service-card h5 { font-weight: 700; margin-bottom: .6rem; }
.service-card p  { color: #666; font-size: .92rem; margin: 0; }

/* ---- Pricing ---- */
.nav-pills .nav-link {
  color: var(--green) !important;
  border: 2px solid var(--green) !important;
  border-radius: 50px !important;
  font-weight: 600;
  background: transparent;
  transition: all .2s;
}
.nav-pills .nav-link.active {
  background: var(--green) !important;
  color: #fff !important;
}

.price-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fffdf5, #fff);
  box-shadow: 0 8px 40px rgba(201,168,76,.2);
}
.badge-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: .35rem 1rem; border-radius: 50px;
  white-space: nowrap;
}
.price-header { text-align: center; margin-bottom: 1.5rem; }
.price-header h5 { font-weight: 700; color: var(--green); margin-bottom: .5rem; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--text-dark); }
.price-amount span { font-size: 1rem; font-weight: 400; color: #999; }
.price-duration { font-size: .85rem; color: #888; margin-top: .3rem; }

.price-features {
  list-style: none; padding: 0;
  flex: 1; margin-bottom: 1.5rem;
}
.price-features li {
  padding: .45rem 0;
  font-size: .92rem;
  display: flex; align-items: center; gap: .6rem;
  border-bottom: 1px solid #f0f0f0;
}
.price-features li:last-child { border-bottom: none; }
.price-features li i.bi-check2 { color: var(--green); font-weight: 900; }
.price-features li.text-muted i { color: #bbb; }

/* ---- Why Section ---- */
.why-section {
  background: linear-gradient(145deg, var(--green-dark), var(--green));
}
.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  color: #fff;
  transition: background .25s;
}
.why-card:hover { background: rgba(255,255,255,.14); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  margin: 0 auto 1.25rem;
}
.why-card h6 { font-weight: 700; font-size: 1rem; margin-bottom: .6rem; }
.why-card p  { font-size: .88rem; color: rgba(255,255,255,.75); margin: 0; }

/* ---- Info Cards ---- */
.info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  border-left: 4px solid var(--gold);
}
.info-card h5 { font-weight: 700; margin-bottom: 1rem; }
.info-card ul { padding-left: 1.2rem; }
.info-card li { margin-bottom: .4rem; }

/* ---- Testimonials ---- */
.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.testimonial-card p { font-style: italic; color: #555; font-size: .95rem; }
.avatar-circle {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .85rem;
}

/* ---- Contact ---- */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: .95rem;
}
.contact-info-item i { font-size: 1.25rem; margin-top: .15rem; }

.contact-form-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #eee;
}
.form-control, .form-select {
  border-radius: 10px;
  border: 1.5px solid #ddd;
  font-size: .92rem;
  padding: .6rem .85rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,92,58,.12);
}
.form-label { font-weight: 600; font-size: .88rem; color: #444; margin-bottom: .35rem; }

/* ---- Footer ---- */
.footer {
  background: var(--green-dark);
  padding: 4rem 0 1.5rem;
  color: rgba(255,255,255,.75);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

.social-links { display: flex; gap: .6rem; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: 1rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--gold); color: #fff; }

/* ---- Scroll-to-top ---- */
.scroll-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 44px; height: 44px;
  background: var(--green);
  color: #fff; border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0; transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  cursor: pointer; z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); }

/* ---- Dil Seçici ---- */
.lang-switcher {
  display: flex; gap: .35rem; align-items: center;
}
.lang-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.8);
  font-size: .78rem; font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .5px;
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ---- RTL (Arapça) Genel ---- */
body.rtl {
  font-family: 'Noto Naskh Arabic', 'Inter', sans-serif;
}
body.rtl .font-serif,
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5, body.rtl h6 {
  font-family: 'Noto Naskh Arabic', serif;
  line-height: 1.6;
}

/* Navbar RTL */
body.rtl #mainNav .navbar-nav { margin-left: 0 !important; margin-right: auto !important; }
body.rtl .navbar-brand { flex-direction: row-reverse; }
body.rtl .lang-switcher { margin-left: 0 !important; margin-right: .75rem; }

/* Hero RTL */
body.rtl .hero-section { direction: rtl; }

/* Hakkımızda – about badge pozisyonu */
body.rtl .about-badge { right: auto; left: -20px; }

/* info-card border yönü */
body.rtl .info-card { border-left: none; border-right: 4px solid var(--gold); }

/* Feature list & contact items */
body.rtl .feature-list li,
body.rtl .contact-info-item { flex-direction: row-reverse; justify-content: flex-end; }
body.rtl .feature-list li { gap: .6rem; }

/* About CTA butonu */
body.rtl .btn-primary-custom .bi-arrow-right { transform: scaleX(-1); }

/* Footer */
body.rtl .footer-links { padding-right: 0; }
body.rtl .social-links { flex-direction: row-reverse; }
body.rtl .input-group { flex-direction: row-reverse; }
body.rtl .input-group .btn { border-radius: 6px 0 0 6px !important; }
body.rtl .input-group .form-control { border-radius: 0 6px 6px 0 !important; }

/* Price card – badge */
body.rtl .price-duration { direction: rtl; }

/* Scroll-to-top RTL konumu */
body.rtl .scroll-top { right: auto; left: 1.75rem; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .about-badge { position: static; margin-top: 1.5rem; max-width: 100%; }
  body.rtl .about-badge { left: auto; }
  .hero-section { padding-top: 100px; }
  .section-padding { padding: 60px 0; }
  .hero-stats { flex-direction: column; align-items: center; }
  .stat-card { width: 100%; max-width: 280px; }
}
