/* Şahinler İnşaat — Ankara kiralık manitou & kepçe */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600&display=swap");

:root {
  --bg: #0a0e14;
  --bg-elevated: rgba(22, 30, 42, 0.78);
  --surface: #1e293b;
  --surface-2: #273549;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --accent: #f5a623;
  --accent-hover: #ffc04d;
  --accent-glow: rgba(245, 166, 35, 0.35);
  --accent-dark: #c77f0a;
  --cyan: #38bdf8;
  --border: rgba(255, 255, 255, 0.09);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.25);
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --header-h: 76px;
  --max: 1140px;
  --fab-w: 168px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(245, 166, 35, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 10%, rgba(56, 189, 248, 0.07), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(245, 166, 35, 0.05), transparent 45%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 901px) {
  body {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 14, 20, 0.78);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  font-size: clamp(0.85rem, 0.75rem + 0.5vw, 1rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: min(280px, 55vw);
}

.logo-link img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-link:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-main a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--text);
  background: rgba(232, 163, 23, 0.12);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  background: linear-gradient(135deg, var(--accent) 0%, #e89410 100%);
  color: #0a0e14 !important;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-cta:hover {
  filter: brightness(1.06);
  color: #0a0e14 !important;
  box-shadow: 0 6px 28px var(--accent-glow);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-main {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    background: rgba(10, 14, 20, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .nav-main.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-main a {
    padding: 0.85rem 1rem;
  }

  .header-cta {
    display: none;
  }

  .nav-main.is-open .header-cta-mobile {
    display: flex;
    margin-top: 0.5rem;
    justify-content: center;
  }
}

.header-cta-mobile {
  display: none;
}

main {
  overflow-x: clip;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.section-title {
  font-size: clamp(1.75rem, 1.35rem + 1.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.section-lead {
  color: var(--text-muted);
  max-width: 65ch;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(10, 14, 20, 0.94) 0%,
    rgba(10, 14, 20, 0.72) 42%,
    rgba(10, 14, 20, 0.35) 100%
  );
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(245, 166, 35, 0.08), transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(245, 166, 35, 0.12);
  color: var(--accent-hover);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 166, 35, 0.35);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 18ch;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #e89410 100%);
  color: #0a0e14;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  filter: brightness(1.08);
  color: #0a0e14;
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: rgba(245, 166, 35, 0.45);
  color: var(--accent-hover);
  background: rgba(245, 166, 35, 0.08);
}

/* Cards grid */
.grid-2 {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.grid-3 {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.card {
  background: linear-gradient(155deg, rgba(30, 41, 59, 0.85) 0%, rgba(22, 30, 42, 0.65) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: rgba(245, 166, 35, 0.2);
  box-shadow: var(--shadow-soft), 0 0 40px rgba(245, 166, 35, 0.06);
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.card-body h2,
.card-body h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.card-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Feature row (image + text) */
.feature-row {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row.reverse .feature-row__media {
    order: 2;
  }
}

.feature-row__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.feature-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  pointer-events: none;
}

.feature-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.feature-row__content h2 {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  margin: 0 0 0.75rem;
}

.feature-row__content p,
.feature-row__content li {
  color: var(--text-muted);
}

.feature-row__content ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

/* Lists / checks */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--accent);
  border-radius: 2px;
}

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 2rem;
  background: rgba(22, 30, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 800;
}

.stat span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.15rem 0;
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item a {
  display: block;
  height: 100%;
}

/* Machine specs */
.spec-card {
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  backdrop-filter: blur(10px);
}

.spec-card h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--accent);
}

.spec-dl {
  margin: 0;
  display: grid;
  gap: 0.5rem 1rem;
}

.spec-dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
}

.spec-dl dt {
  color: var(--text-muted);
  font-weight: 500;
}

.spec-dl dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.contact-card {
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.75) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.contact-card p,
.contact-card a {
  margin: 0.35rem 0;
  display: block;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social-links a {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
}

.social-links a:hover {
  background: rgba(232, 163, 23, 0.2);
  color: var(--accent);
}

/* Sosyal — marka ikonlu butonlar */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff !important;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.social-icon-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  color: #fff !important;
}

.social-icon-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.social-icon-link--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon-link--facebook {
  background: #1877f2;
}

.social-icon-link--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  height: min(52vh, 480px);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  background: var(--surface);
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.map-section__caption {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.map-section__caption a {
  font-weight: 600;
}

/* Sabit hızlı iletişim (sağ alt) */
.fab-stack {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right));
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
  pointer-events: none;
}

.fab-stack > a {
  pointer-events: auto;
}

.fab {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  min-width: var(--fab-w);
  padding: 0.7rem 1rem 0.7rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff !important;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.fab:hover {
  filter: brightness(1.07);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.42);
  color: #fff !important;
}

.fab:active {
  transform: translateY(-1px) scale(0.99);
}

.fab svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.fab--phone {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.fab--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

@media (max-width: 380px) {
  :root {
    --fab-w: 148px;
  }

  .fab {
    font-size: 0.8125rem;
    padding: 0.6rem 0.85rem;
  }
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 1rem 0 0;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 2.5rem 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 14, 20, 0.98) 100%);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-inner p.footer-credit {
  width: 100%;
  flex-basis: 100%;
  margin: 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.page-hero {
  padding: clamp(2rem, 5vw, 3rem) 0 1rem;
  background: linear-gradient(180deg, rgba(22, 30, 42, 0.95) 0%, rgba(10, 14, 20, 0.4) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(50%, 420px);
  height: 120px;
  background: radial-gradient(ellipse at top right, rgba(245, 166, 35, 0.12), transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hero .lead {
  margin: 0;
  color: var(--text-muted);
  max-width: 60ch;
}

.prose {
  max-width: 70ch;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.layout-footer-flex {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.layout-footer-flex main {
  flex: 1;
}
