:root {
  --bg: #0b1220;
  --bg-soft: #101a2e;
  --surface: #111827;
  --surface-2: #182234;
  --card: #132033;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --accent: #f59e0b;
  --accent-2: #fbbf24;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 26%),
    linear-gradient(180deg, var(--bg), #09111d 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 11, 26, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 0.2s ease, background 0.2s ease;
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  border-radius: 999px;
}

.hero {
  padding: 88px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-2);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-copy p {
  margin: 20px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 62ch;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111827;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.point {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.point:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.point span {
  display: block;
  color: var(--muted-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-card {
  align-self: stretch;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.12), transparent 26%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card h2 {
  margin: 22px 0 0;
  font-size: 1.85rem;
  line-height: 1.2;
}

.hero-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.hero-meta-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-meta-item {
  display: grid;
  gap: 6px;
}

.meta-label {
  font-size: 0.82rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-meta-item a,
.hero-meta-item span:last-child {
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-meta-item a {
  color: var(--accent-2);
}

.hero-card-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.mini-stat {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.mini-stat strong {
  display: block;
  margin-bottom: 6px;
}

.mini-stat span {
  color: var(--muted-2);
  font-size: 0.92rem;
  line-height: 1.6;
}

.stats {
  padding: 16px 0 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card,
.service-card,
.reason-card,
.gallery-item,
.cta-box,
.process-card,
.review-card,
.review-score-card,
.gallery-page-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.stat-card span {
  color: var(--muted-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.025);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 100%),
    rgba(9, 16, 29, 0.72);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.04rem;
}

.services-grid,
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card,
.reason-card {
  padding: 26px;
  border-radius: 22px;
  background: var(--card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.reason-card:hover,
.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.14);
  color: var(--accent-2);
  font-weight: 800;
}

.service-card h3,
.reason-card h3,
.process-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.service-card p,
.reason-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.card-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.card-list li {
  color: var(--muted-2);
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.process-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(255, 255, 255, 0.04));
  color: var(--accent-2);
  font-weight: 800;
  font-size: 1rem;
}

/* === ANA SAYFA GALLERY SLIDER === */
.gallery-slider {
  position: relative;
  width: 100%;
  padding: 0 56px;
}

.gallery-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
}

.gallery-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 calc(100% / 3);
  min-width: calc(100% / 3);
  padding: 0 10px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.88);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}

.gallery-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.gallery-dot.is-active {
  background: var(--accent);
}
/* === /ANA SAYFA GALLERY SLIDER === */

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.areas-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

.areas-grid-cards span {
  min-height: 58px;
  padding: 0 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.areas-grid-cards span:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.trust-item {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 700;
}

.cta-section {
  padding-top: 30px;
}

.cta-box {
  padding: 32px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(255, 255, 255, 0.03)),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.cta-box p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 60ch;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  padding-top: 80px;
  padding-bottom: 90px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 30px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 42ch;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-badges span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1.02rem;
}

.footer-list,
.site-footer ul.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-bottom {
  padding: 20px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.94rem;
}

.mobile-contact-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(11, 18, 32, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.mobile-contact-bar a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
}

.mobile-contact-bar a:first-child {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111827;
}

.mobile-contact-bar a:last-child {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--line);
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.review-score-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.review-score-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.review-score-value {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  color: #fff;
}

.review-score-note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.review-score-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  margin-top: 10px;
  letter-spacing: 3px;
  color: #f7c948;
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.review-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}

.review-meta {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.review-card p:last-child {
  margin-bottom: 0;
}

.page-hero-references {
  position: relative;
  overflow: hidden;
  padding: 72px 0 52px;
  background:
    radial-gradient(circle at 0% 20%, rgba(247, 181, 0, 0.12), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(0, 87, 255, 0.14), transparent 35%),
    linear-gradient(180deg, #07101f 0%, #081327 55%, #07101d 100%);
}

.page-hero-references::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.12;
  pointer-events: none;
}

.hero-panel {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.page-hero-references .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(247, 181, 0, 0.12);
  border: 1px solid rgba(247, 181, 0, 0.2);
  color: #f7b500;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-hero-references h1 {
  margin: 0 0 18px;
  max-width: 840px;
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 820px;
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.review-summary-compact {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-score-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(247, 181, 0, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 50px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.review-score-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
}

.review-score-value {
  display: block;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}

.review-score-note {
  margin: 0;
  max-width: 30ch;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.74);
}

.review-score-card .stars {
  font-size: 26px;
  letter-spacing: 3px;
  color: #f7b500;
}

.review-score-card--action .btn {
  width: 100%;
  justify-content: center;
  min-height: 58px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
}

.hero-actions-spaced,
.contact-actions-spaced {
  margin-top: 24px;
}

/* === GALERI SAYFASI GRID === */
.gallery-page-section {
  padding-top: 56px;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-page-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
}

.gallery-page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-page-card:hover img {
  transform: scale(1.04);
}

.gallery-page-actions {
  justify-content: center;
}
/* === /GALERI SAYFASI GRID === */

@media (max-width: 1080px) {
  .hero-grid,
  .stats-grid,
  .footer-grid,
  .process-grid,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-points,
  .services-grid,
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-slide {
    flex: 0 0 50%;
    min-width: 50%;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .review-summary-compact {
    grid-template-columns: 1fr;
  }

  .review-score-card {
    min-height: auto;
  }

  .page-hero-references {
    padding-top: 48px;
  }

  .hero-lead {
    font-size: 18px;
  }
}

@media (max-width: 960px) {
  .review-summary,
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(11, 18, 32, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-points,
  .services-grid,
  .reasons-grid,
  .process-grid,
  .hero-card-mini,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .gallery-slider {
    padding: 0 44px;
  }

  .gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .gallery-item {
    aspect-ratio: 4 / 5;
  }

  .gallery-nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-card {
    aspect-ratio: 4 / 5;
  }

  .gallery-page-actions {
    justify-content: stretch;
  }

  .gallery-page-actions .btn {
    flex: 1 1 100%;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-card,
  .service-card,
  .reason-card,
  .cta-box,
  .process-card {
    padding: 22px;
  }

  .mobile-contact-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}
/* === GALERI SAYFASI HOVER + FULL IMAGE === */
.gallery-page-section {
  padding-top: 56px;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-page-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02)),
    #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.gallery-page-media {
  width: 100%;
  height: 320px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-page-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-page-card:hover .gallery-page-media img {
  transform: scale(1.02);
}

.gallery-page-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.04) 0%,
    rgba(2, 6, 23, 0.18) 35%,
    rgba(2, 6, 23, 0.72) 100%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-page-card:hover .gallery-page-overlay {
  opacity: 1;
}

.gallery-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.gallery-page-actions {
  justify-content: center;
}

@media (max-width: 1080px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-card {
    min-height: 280px;
  }

  .gallery-page-media {
    height: 280px;
    padding: 10px;
  }

  .gallery-page-overlay {
    opacity: 1;
    align-items: end;
    background: linear-gradient(
      180deg,
      rgba(2, 6, 23, 0.04) 0%,
      rgba(2, 6, 23, 0.14) 35%,
      rgba(2, 6, 23, 0.62) 100%
    );
  }

  .gallery-page-actions {
    justify-content: stretch;
  }

  .gallery-page-actions .btn {
    flex: 1 1 100%;
  }
}
/* === /GALERI SAYFASI HOVER + FULL IMAGE === */


