:root {
  --navy: #0d1b2a;
  --navy-2: #16263a;
  --amber: #f59e0b;
  --amber-2: #fbbf24;
  --cream: #f6f4ef;
  --ink: #122033;
  --muted: #6b7787;
  --line: #e3ddd3;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "DM Sans", Arial, sans-serif; color: var(--ink); background: var(--cream); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* Topbar + header */
.topbar { background: var(--navy); color: #dbe3ee; font-size: 12px; }
.topbar-inner { height: 36px; display: flex; align-items: center; justify-content: space-between; }
.topbar a { font-weight: 700; color: var(--amber-2); }

.site-header {
  height: 88px; background: rgba(255, 255, 255, .97);
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid var(--line);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 58px; width: auto; }

.desktop-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; color: #3d4c61; }
.desktop-nav a:hover { color: #c27c00; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.whatsapp-pill {
  background: #22ba66; color: #fff; padding: 10px 14px;
  border-radius: 22px; font-size: 13px; font-weight: 700; white-space: nowrap;
}
.cta-button {
  background: var(--amber); color: #1a1403;
  padding: 13px 22px; border-radius: 4px;
  font-family: "Rajdhani", sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: .02em; display: inline-flex; align-items: center; gap: 8px;
  border: 0; cursor: pointer; transition: transform .18s cubic-bezier(.23,1,.32,1), background .18s, box-shadow .18s;
  box-shadow: 0 6px 18px rgba(245, 158, 11, .32);
  white-space: nowrap;
}
.cta-button:hover { background: var(--amber-2); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(245, 158, 11, .4); }
.cta-button:active { transform: scale(.97); }
.cta-button.big { font-size: 19px; padding: 16px 30px; }
.cta-button.wide { width: 100%; justify-content: center; margin-top: 22px; }
.ghost-button {
  font-weight: 700; font-size: 14px; padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, .5); color: #fff;
}

.hamburger { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--navy); }
.mobile-nav {
  display: none; position: absolute; left: 0; right: 0; top: 88px;
  background: #fff; flex-direction: column; gap: 0;
  border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(13, 27, 42, .12);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 16px 24px; font-weight: 600; color: var(--ink); border-top: 1px solid var(--line); }
.mobile-nav a.mobile { margin: 6px 16px; justify-content: center; }

/* Hero */
.hero { min-height: 640px; position: relative; overflow: hidden; color: #fff; display: flex; align-items: center; }
.hero-backdrop {
  position: absolute; inset: 0;
  background: url("assets/hero-moto.jpg") center/cover no-repeat;
  background-color: #0a1522;
}
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 18, 30, .94) 0%, rgba(13, 27, 42, .72) 45%, rgba(13, 27, 42, .15) 100%); }
.hero-inner { position: relative; padding: 100px 0 66px; }
.eyebrow { font-size: 12px; letter-spacing: .22em; font-weight: 700; color: var(--amber); margin: 0 0 18px; }
.eyebrow.light { color: #fbd17a; }
.hero h1, .section-heading h2, .how-copy h2, .listing-intro h2 {
  font-family: "Rajdhani", sans-serif; font-weight: 700; letter-spacing: -.01em; line-height: 1.04;
}
.hero h1 { font-size: clamp(44px, 5.2vw, 74px); margin: 0; }
.hero h1 span, .section-heading h2 span, .how-copy h2 span, .listing-intro h2 span { color: var(--amber-2); display: block; }
.hero-copy { font-size: 17px; line-height: 1.65; max-width: 540px; color: #e6ecf5; margin: 24px 0 32px; }
.hero-actions { display: flex; gap: 13px; align-items: center; flex-wrap: wrap; }
.hero-credibility { border-top: 1px solid rgba(255, 255, 255, .22); margin-top: 84px; padding-top: 22px; display: flex; gap: 48px; }
.hero-credibility div { display: grid; gap: 5px; }
.hero-credibility b { font-family: "Rajdhani", sans-serif; font-size: 19px; color: #fff; }
.hero-credibility span { font-size: 11px; color: #b9c6d8; }

/* Search band */
.search-band { background: #fff; border-bottom: 1px solid var(--line); padding: 24px 0 20px; position: relative; z-index: 5; box-shadow: 0 8px 22px rgba(13, 27, 42, .07); }
.search-box { display: flex; gap: 12px; align-items: end; flex-wrap: wrap; }
.search-box label { display: grid; gap: 5px; min-width: 190px; flex: 1; }
.search-box small { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .05em; }
.search-box input { font: 400 13px "DM Sans", sans-serif; border: 1px solid var(--line); border-radius: 4px; padding: 11px 12px; background: var(--cream); }
.search-box input:focus { outline: none; border-color: var(--amber); background: #fff; }
.search-box button {
  background: var(--navy); color: #fff; border: 0; border-radius: 4px;
  padding: 11px 26px; font-family: "Rajdhani", sans-serif; font-size: 16px; font-weight: 700; cursor: pointer;
}
.search-box button:hover { background: var(--navy-2); }
.filter-row { display: flex; gap: 10px; margin-top: 16px; }
.chip {
  background: transparent; border: 1px solid var(--line); border-radius: 22px;
  padding: 7px 18px; font-size: 12px; font-weight: 700; color: var(--muted); cursor: pointer;
}
.chip.active, .chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Listings */
.listings { padding: 72px 0; }
.split-heading { display: flex; justify-content: space-between; gap: 56px; align-items: end; margin-bottom: 42px; }
.split-heading.center { display: block; text-align: center; }
.section-heading h2 { font-size: 40px; margin: 0; }
.section-heading h2 span { display: inline; color: #c27c00; }
.split-heading > p { max-width: 340px; color: var(--muted); line-height: 1.7; font-size: 14px; margin: 0; }
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.listing-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .22s, box-shadow .22s;
}
.listing-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(13, 27, 42, .13); }
.listing-thumb { height: 190px; position: relative; background: #132030 center/cover no-repeat; }
.listing-badge {
  position: absolute; top: 12px; left: 12px; background: var(--amber); color: #1a1403;
  font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 14px;
}
.listing-badge.kiralik { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.listing-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.listing-body h3 { font-family: "Rajdhani", sans-serif; font-size: 20px; margin: 0 0 6px; line-height: 1.2; }
.listing-meta { font-size: 12px; color: var(--muted); margin: 0 0 12px; display: flex; gap: 12px; flex-wrap: wrap; }
.listing-price { font-family: "Rajdhani", sans-serif; font-size: 22px; font-weight: 700; color: #c27c00; margin-top: auto; }
.listing-cta {
  margin-top: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: #22ba66; color: #fff; font-size: 12px; font-weight: 700;
  padding: 9px 12px; border-radius: 20px;
}
.empty-state { text-align: center; color: var(--muted); padding: 34px 0 8px; }
.hidden { display: none; }

/* Categories */
.categories { padding: 72px 0; background: var(--navy); color: #fff; }
.categories .section-heading h2 span { color: var(--amber-2); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.cat-card { position: relative; height: 235px; border-radius: 10px; overflow: hidden; background: #132030 center/cover no-repeat; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-card .cat-label {
  position: absolute; inset: auto 0 0 0; padding: 14px 16px;
  background: linear-gradient(transparent, rgba(8, 14, 24, .92));
}
.cat-card b { display: block; font-family: "Rajdhani", sans-serif; font-size: 20px; }
.cat-card span { font-size: 11px; color: #c8d4e3; }
.cat-card:hover img + .cat-label, .cat-card:hover { box-shadow: 0 0 0 3px var(--amber); }

/* How section */
.how-section { padding: 86px 0; background: var(--cream); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.how-image { height: 480px; position: relative; border-radius: 10px; overflow: hidden; }
.image-panel { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13, 27, 42, .12), rgba(13, 27, 42, .35)), url("assets/hero-moto.jpg") 60% center/cover no-repeat; }
.how-copy h2 { font-size: 40px; margin: 0 0 20px; }
.how-copy h2 span { color: #c27c00; display: inline; }
.how-copy > p { font-size: 15px; line-height: 1.75; color: var(--muted); max-width: 500px; margin: 0; }
.how-copy ul { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 20px; }
.how-copy li { display: flex; gap: 14px; }
.how-copy li > span { font-family: "Rajdhani", sans-serif; color: var(--amber); font-size: 22px; line-height: 1; font-weight: 700; }
.how-copy li b { font-size: 15px; }
.how-copy li p { font-size: 12.5px; line-height: 1.6; color: var(--muted); margin: 4px 0 0; }

/* Listing form */
.listing-section { background: var(--navy); padding: 86px 0; }
.listing-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.listing-intro { color: #fff; padding-top: 20px; }
.listing-intro h2 { font-size: 44px; margin: 0; }
.listing-intro p { color: #c3cfdf; font-size: 15px; line-height: 1.7; max-width: 400px; margin: 24px 0 0; }
.direct-contact { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.mini-phone { background: var(--amber); height: 40px; width: 40px; display: grid; place-items: center; border-radius: 50%; font-size: 18px; }
.direct-contact small { display: block; color: #c3cfdf; font-size: 11px; margin-bottom: 3px; }
.direct-contact a { font-family: "Rajdhani", sans-serif; font-size: 22px; font-weight: 700; }

.listing-form { background: #fff; padding: 34px 36px 28px; border-radius: 10px; }
.form-title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.form-title span {
  height: 30px; width: 30px; border-radius: 50%; background: var(--amber); color: #1a1403;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.form-title b { display: block; font-size: 15px; }
.form-title small { font-size: 11px; color: var(--muted); }
.form-title.second { margin-top: 26px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.compact-grid { gap: 14px; }
.listing-form label { font-size: 11px; font-weight: 700; color: #3d4c61; display: grid; gap: 6px; }
.listing-form input, .listing-form select, .listing-form textarea {
  font: 400 13px "DM Sans", sans-serif; color: var(--ink); background: var(--cream);
  border: 1px solid var(--line); border-radius: 4px; padding: 11px 12px; outline: none;
}
.listing-form input:focus, .listing-form select:focus, .listing-form textarea:focus { border-color: var(--amber); background: #fff; }
.wide-label { margin-top: 14px; }
.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: start; gap: 9px !important; margin: 18px 0; color: #5b6879 !important; font-size: 10.5px !important; font-weight: 400 !important; line-height: 1.5; }
.consent input { margin: 1px 0 0; }
.form-submit { width: 100%; margin-top: 0; }
.form-note { text-align: center; font-size: 10.5px; color: var(--muted); margin: 12px 0 0; }

/* Footer */
footer { background: #08101b; color: #d8e1ee; }
.footer-top { padding: 62px 0 44px; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 72px; }
.footer-logo-link { display: inline-block; }
.footer-logo-img { height: 110px; width: auto; background: var(--navy); padding: 8px 12px; border-radius: 6px; }
.footer-brand > p { font-size: 13px; line-height: 1.7; color: #9dadc2; max-width: 290px; margin: 20px 0 16px; }
.group-note { font-size: 12px; color: #f3c463; letter-spacing: .04em; }
.footer-column { display: grid; align-content: start; gap: 12px; }
.footer-column h3 { font-size: 13px; color: #fff; margin: 2px 0 6px; }
.footer-column a, .footer-column span { font-size: 12.5px; color: #b6c3d6; }
.footer-column a:hover { color: #f3c463; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); height: 62px; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: #7d8fa6; }
.footer-bottom a { color: #f3c463; }

/* Responsive */
@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .hamburger { display: block; }
  .hero-credibility { gap: 22px; }
  .listing-wrap { gap: 40px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { gap: 36px; }
}
@media (max-width: 720px) {
  .shell { width: min(100% - 32px, 620px); }
  .site-header { height: 66px; }
  .brand-logo { height: 42px; }
  .nav-actions .whatsapp-pill { padding: 8px 9px; font-size: 0; }
  .nav-actions .whatsapp-pill::after { content: "WA"; font-size: 11px; }
  .hero { min-height: 660px; }
  .hero-inner { padding: 72px 0 36px; }
  .hero h1 { font-size: 42px; }
  .hero-copy { font-size: 15px; }
  .hero-credibility { margin-top: 56px; gap: 16px; flex-wrap: wrap; }
  .hero-credibility div { width: 45%; }
  .listings, .categories, .listing-section, .how-section { padding: 56px 0; }
  .split-heading { display: block; }
  .section-heading h2, .how-copy h2, .listing-intro h2 { font-size: 32px; }
  .split-heading > p { margin-top: 16px; }
  .search-box { flex-direction: column; align-items: stretch; }
  .search-box label { min-width: 0; }
  .listing-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { display: block; }
  .how-image { height: 300px; margin-bottom: 44px; }
  .how-copy > p { font-size: 14px; }
  .listing-wrap { display: block; }
  .listing-intro { margin-bottom: 30px; }
  .listing-form { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; padding: 48px 0 32px; }
  .footer-bottom { height: auto; padding: 18px 0; gap: 12px; }
  .hero-backdrop { background-position: 60% center; }
}
