/* ===========================
   ALANYAEV – Global CSS (SEO Optimized & Clean)
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@400;500;600;700&display=swap');

/* -------- Variables -------- */
:root {
  --primary: #0f6cbf;
  --primary-dark: #0a4f8c;
  --primary-light: #2e8de0;
  --accent: #f5a623;
  --accent-dark: #d4861a;
  --gold: #c9962e;
  --wp-green: #25D366;
  --wp-green-dark: #1da851;
  --white: #ffffff;
  --dark: #0c1a2e;
  --dark-2: #132035;
  --dark-3: #1a2d4a;
  --text: #1f2937;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --card-bg: #ffffff;
  --section-bg: #f9fafb;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-serif: 'Plus Jakarta Sans', sans-serif;

  --nav-height: 70px;
}

/* -------- Reset & Base -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  padding-bottom: 70px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------- Scrollbar -------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(12, 26, 46, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.navbar:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent);
}

.nav-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.highlight-link {
  color: var(--accent) !important;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: transform var(--transition);
  white-space: nowrap;
}
.nav-cta-call {
  background: var(--accent);
  color: var(--dark) !important;
}
.nav-cta-call:hover { transform: translateY(-1px); }

.nav-cta-wp {
  background: var(--wp-green);
  color: var(--white) !important;
}
.nav-cta-wp:hover { transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ========================
   COMPACT HERO (NO SEARCH BOX)
   ======================== */
.hero-compact {
  position: relative;
  min-height: auto;
  padding: 110px 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,26,46,0.90) 0%,
    rgba(12,26,46,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.hero-tag {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(0.92rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  max-width: 660px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* Hero Quick Buttons */
.hero-quick-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.btn-hero-call {
  background: var(--accent);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 13px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
  transition: transform var(--transition);
}
.btn-hero-call:hover { transform: translateY(-2px); }

.btn-hero-wp {
  background: var(--wp-green);
  color: var(--white);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 13px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition);
}
.btn-hero-wp:hover { transform: translateY(-2px); }

/* ========================
   SECTION COMMONS
   ======================== */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-eyebrow.light { color: rgba(255,255,255,0.65); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}
.section-desc.light { color: rgba(255,255,255,0.7); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 30px;
  border-radius: 50px;
  transition: transform var(--transition);
  border: none;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary.w-full { width: 100%; }

/* ========================
   LISTINGS
   ======================== */
.listings-section {
  padding: 48px 0 54px;
  background: var(--section-bg);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.listing-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition);
  position: relative;
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}
.badge-new { background: var(--primary); color: var(--white); }
.badge-hot { background: #e53e3e; color: var(--white); }

.card-type {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

.card-fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  z-index: 2;
  color: #718096;
}

.card-body { padding: 18px 18px 20px; }
.card-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 4px;
}
.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.feat-item {
  background: var(--section-bg);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
}
.card-btn {
  background: var(--wp-green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 7px 14px;
  border-radius: 50px;
}
.card-btn:hover { background: var(--wp-green-dark); }

/* ========================
   MULKUNUZU SATIN BANNER
   ======================== */
.mulk-sat-section {
  padding: 36px 0;
  background: var(--white);
}

.sell-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.sell-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.sell-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.sell-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 22px;
}

.sell-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-secondary.sell-btn-wp {
  background: var(--wp-green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
}

/* ========================
   EXTENSIVE SEO GUIDE & FAQ SECTION
   ======================== */
.seo-guide-section {
  padding: 60px 0;
  background: var(--section-bg);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.seo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}

.seo-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.seo-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.seo-faq {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin-bottom: 32px;
}

.faq-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  text-align: center;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.faq-item summary {
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--dark-2);
  outline: none;
}
.faq-item summary:hover { color: var(--primary); }
.faq-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
}

.seo-tags-cloud {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.seo-tags-cloud h4 {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ========================
   BOLGELER
   ======================== */
.bolgeler-section {
  padding: 50px 0;
  background: var(--white);
}
.bolgeler-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bolge-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.bolge-img-wrap { position: relative; height: 260px; }
.bolge-img { width: 100%; height: 100%; object-fit: cover; }
.bolge-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
}
.bolge-name { font-family: var(--font-serif); font-size: 1.3rem; color: var(--white); }
.bolge-desc { font-size: 0.78rem; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.bolge-count {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  width: fit-content;
}

/* ========================
   WHY SECTION
   ======================== */
.why-section {
  position: relative;
  padding: 54px 0;
  background: var(--dark);
  color: var(--white);
}
.why-bg { position: absolute; inset: 0; background: var(--dark-2); z-index: 0; }
.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-list { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-icon {
  font-size: 1.5rem;
  min-width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.why-item strong { display: block; font-size: 0.95rem; color: var(--white); }
.why-item p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.why-visual { position: relative; }
.why-card-big { border-radius: var(--radius-lg); overflow: hidden; }
.why-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.why-badge-float {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
}
.why-badge-float strong { display: block; color: var(--dark); font-size: 1rem; }
.why-badge-float small { color: var(--text-muted); font-size: 0.75rem; }
.accent-text { color: var(--accent); }

/* ========================
   CONTACT
   ======================== */
.contact-section {
  padding: 54px 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-details { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.contact-details li { display: flex; gap: 12px; }
.contact-icon {
  font-size: 1.2rem;
  width: 38px; height: 38px;
  background: rgba(15,108,191,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
}
.form-success {
  background: rgba(72,187,120,0.1);
  border: 1px solid #48bb78;
  border-radius: var(--radius-sm);
  padding: 12px;
  color: #276749;
  font-size: 0.9rem;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 48px 20px 30px;
  max-width: 1240px;
  margin: 0 auto;
}
.footer-brand p { margin-top: 10px; font-size: 0.85rem; line-height: 1.5; }
.footer-links h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 12px; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; }
.footer-links a:hover { color: var(--accent); }
.footer-quick-contacts { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.btn-footer-contact {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}
.btn-footer-contact.wp { background: var(--wp-green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ========================
   STICKY MOBILE BOTTOM BAR
   ======================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: var(--dark-2);
  padding: 10px 14px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}
.bar-call {
  background: var(--accent);
  color: var(--dark);
}
.bar-wp {
  background: var(--wp-green);
  color: var(--white);
}

/* ========================
   RESPONSIVE (MOBILE OPTIMIZED)
   ======================== */
@media (max-width: 1024px) {
  .seo-grid { grid-template-columns: 1fr; }
  .bolgeler-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .mobile-sticky-bar { display: flex; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(12,26,46,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 20px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .hero-compact { padding: 80px 0 28px; }
  .hero-quick-btns { flex-direction: column; gap: 8px; width: 100%; }
  .btn-hero-call, .btn-hero-wp { width: 100%; text-align: center; justify-content: center; }

  .listings-grid { grid-template-columns: 1fr; }
  .bolgeler-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
