:root {
  --bg: #e9eceb;
  --panel: #f9fafb;
  --panel-alt: #edf3f8;
  --text: #13283c;
  --muted: #4e647a;
  --line: #cad7e2;
  --shadow: 0 16px 40px rgba(9, 28, 44, 0.12);
  --primary: #0a2d4d;
  --primary-dark: #071f36;
  --accent: #0d9ee8;
  --accent-soft: #dff5ff;
  --dark: #101c2a;
  --success: #1fa66a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(245, 245, 242, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  display: block;
  height: 68px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(12, 45, 77, 0.12));
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: none;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 12px 18px rgba(13, 158, 232, 0.25);
}

.main-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px 0 40px;
  min-width: 220px;
  height: 46px;
}

.search-box svg,
.cart-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.search-box svg {
  position: absolute;
  left: 14px;
  color: var(--muted);
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  color: var(--text);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  cursor: pointer;
  color: var(--text);
  box-shadow: var(--shadow);
}

section.hero {
  padding-top: 0;
}

.cart-button strong {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.76rem;
}

.hero {
  padding: 0px;
}

.hero-banner-wrap {
  margin-bottom: 30px;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 910px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(15, 32, 48, 0.18);
}

.fashion-slider {
  padding: 60px 0px;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 13, 24, 0.7), rgba(8, 13, 24, 0.15));
}

.hero-slide-content {
  position: absolute;
  z-index: 1;
  left: 6%;
  right: 56px;
  top: 38%;
  max-width: 50%;
  color: white;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.23);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-slide-content h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-slide-content p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-banner-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-banner-actions a {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(13, 158, 232, 0.25);
}

.hero-banner-actions span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 22px 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.primary-btn,
.secondary-btn,
.checkout-btn,
.filter-btn,
.add-btn {
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.checkout-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 16px 26px;
  box-shadow: 0 16px 28px rgba(13, 158, 232, 0.25);
}

.secondary-btn {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 16px 26px;
}

.primary-btn:hover,
.secondary-btn:hover,
.checkout-btn:hover,
.filter-btn:hover,
.add-btn:hover {
  transform: translateY(-1px);
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats strong {
  font-size: 1.5rem;
}

.hero-stats span {
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.card-stack {
  position: relative;
  width: min(480px, 100%);
  min-height: 520px;
}

.product-showcase {
  position: absolute;
  border-radius: 28px;
  padding: 20px;
  background: linear-gradient(140deg, #f4ebe2, #fff);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow);
}

.product-showcase-main {
  inset: 20px 0 0 30px;
  min-height: 420px;
}

.product-showcase-secondary {
  width: 200px;
  height: 200px;
  right: 18px;
  bottom: 20px;
  background: linear-gradient(135deg, #e9eff5, #ffffff);
}

.tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
}

.showcase-figure {
  position: relative;
  width: min(260px, 88%);
  height: 250px;
  margin: 28px auto 18px;
  border-radius: 22px;
  background: linear-gradient(140deg, #d9d0cb, #f5d990 52%, #d4dce8);
  box-shadow: inset 0 12px 18px rgba(255, 255, 255, 0.35);
}

.showcase-figure::before,
.showcase-figure::after {
  content: "";
  position: absolute;
  border-radius: 18px;
}

.showcase-figure::before {
  width: 140px;
  height: 180px;
  background: linear-gradient(180deg, #3d332d, #1d1d1d);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) rotate(12deg);
}

.showcase-figure::after {
  width: 96px;
  height: 138px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.16));
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%) rotate(12deg);
  border: 2px solid rgba(17, 18, 20, 0.08);
}

.showcase-info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 12px;
}

.showcase-info h3 {
  margin: 0;
  font-size: 1.8rem;
}

.showcase-info p {
  margin: 0;
  font-weight: 700;
  color: var(--primary-dark);
}

.mini-box {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(135deg, #f6d3a7, #f4f0ec);
  position: relative;
}

.mini-box::before {
  content: "";
  position: absolute;
  inset: 24px 32px;
  border-radius: 14px;
  background: linear-gradient(180deg, #252729, #0f1315);
}

.promo-strip {
  padding: 6px 0 30px;
}

.promo-row {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: white;
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 28px;
  box-shadow: 0 18px 35px rgba(9, 28, 44, 0.16);
}

.promo-row div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 14px;
}

.promo-row strong {
  font-size: 1.05rem;
}

.promo-row span {
  color: rgba(255, 255, 255, 0.7);
}

.services-section,
.story-section,
.process-section,
.testimonials-section {
  padding: 28px 0 8px;
}

.catalog {
  padding: 26px 0 50px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.center-head {
  justify-content: center;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.05em;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 11px 18px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--line);
  color: var(--muted);
}

.filter-btn.active {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.service-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.process-item,
.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 40, 60, 0.08);
  border-radius: 24px;
  padding: 62px 40px;
  box-shadow: 0 12px 26px rgba(15, 32, 48, 0.05);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-soft), #ffffff);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-card h3,
.process-item h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.service-card p,
.process-item p,
.testimonial-card p,
.story-content p,
.story-list {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: 22px 0 14px;
}

.story-photo {
  position: relative;
  min-height: 420px;
  border-radius: 30px;

  background:
    linear-gradient(135deg,
      rgba(13, 158, 232, 0.18),
      rgba(10, 45, 77, 0.92)),
    url('/img/lazer-kesim.jpg') center/cover no-repeat;

  box-shadow: 0 20px 40px rgba(10, 45, 77, 0.15);
}

.story-content h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.story-list {
  list-style: none;
  padding: 0;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-list li {
  position: relative;
  padding-left: 24px;
}

.story-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.process-item {
  text-align: center;
}

.process-item span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 800;
  margin-bottom: 12px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(18, 40, 60, 0.08);
  padding-top: 12px;
}

.testimonial-author strong {
  color: var(--text);
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.85rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 255, 0.95));
  border: 1px solid rgba(122, 152, 176, 0.18);
  border-radius: 28px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 30px rgba(15, 32, 48, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(15, 32, 48, 0.12);
  border-color: rgba(13, 158, 232, 0.28);
}

.product-image {
  height: 220px;
  border-radius: 22px;
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #edf3f8, #dfeaf5);
  border: 1px solid rgba(18, 40, 60, 0.05);
}

.product-image::before {
  content: "";
  position: absolute;
  inset: 26px 42px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1c2b3b, #0f1720);
  box-shadow: 0 16px 30px rgba(15, 23, 32, 0.18);
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 46px 62px 38px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.14));
}

.product-card:nth-child(2n) .product-image {
  background: linear-gradient(135deg, #e8eef3, #dfe8ef);
}

.product-card:nth-child(3n) .product-image {
  background: linear-gradient(135deg, #f2e2d2, #f9efe2);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  align-items: center;
}

.product-tag {
  background: var(--accent-soft);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.product-rating {
  color: #f59e0b;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-card h3 {
  margin: 0 0 20px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  min-height: 52px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 40, 60, 0.06);
}

.price {
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--primary);
}

.add-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 18px rgba(13, 158, 232, 0.18);
}

.features {
  padding: 10px 0 80px;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-boxes article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px 22px;
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  border-radius: 16px;
  background: #fff1e7;
  margin-bottom: 18px;
}

.feature-boxes h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
}

.feature-boxes p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(420px, 100%);
  height: 100vh;
  background: #fff;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 40;
  display: flex;
  flex-direction: column;
}

.cart-panel.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 22px 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header h3 {
  margin: 0;
  font-size: 1.7rem;
}

.close-cart {
  border: none;
  background: var(--panel-alt);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
}

.cart-thumb {
  width: 84px;
  aspect-ratio: 1;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0e0d5, #f8efe3);
  position: relative;
}

.cart-thumb::before {
  content: "";
  position: absolute;
  inset: 22px 20px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2f2b2f, #1a1d1f);
}

.cart-item-info h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.cart-item-info .qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}

.cart-item-price {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
}

.remove-item {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
}

.cart-summary {
  border-top: 1px solid var(--line);
  padding: 20px 22px 28px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: var(--muted);
}

.total-row {
  color: var(--text);
  font-size: 1.1rem;
  margin-top: 18px;
}

.checkout-btn {
  width: 100%;
  margin-top: 12px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 14, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 30;
}

.cart-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.site-footer {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: rgba(255, 255, 255, 0.9);
  padding: 38px 0 52px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer h4 {
  margin: 0;
  font-size: 1.05rem;
  color: white;
}

.empty-cart {
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 20px;
}

@media (max-width: 960px) {

  .hero-grid,
  .feature-boxes,
  .footer-wrap,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 992px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 16px 0;
    display: none;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .search-box {
    flex: 1;
    min-width: 0;
  }

  .promo-row,
  .product-grid,
  .feature-boxes,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .product-showcase-main {
    position: relative;
    inset: auto;
    min-height: 320px;
  }

  .product-showcase-secondary {
    display: none;
  }

  .card-stack {
    min-height: 260px;
  }
}

.hero {
  padding: 42px 0 36px;
}

.fashion-slider {
  overflow: hidden;
  padding: 26px 0 26px;
}

.fashion-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: sliderScroll 22s linear infinite;
}

.slide-card {
  position: relative;
  width: 600px;
  height: 350px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(14, 28, 44, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.slide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 45, 77, 0.24), rgba(0, 0, 0, 0.12));
}

.slide-one {
  background: url('https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

.slide-two {
  background: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

.slide-three {
  background: url('https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

.slide-content {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  z-index: 1;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slide-content span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.slide-content strong {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

@keyframes sliderScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.fashion-slider {
  padding: 80px 0px 25px;
}

.services-section {
  width: 100%;
  padding: 80px 0;
}

.services-container {
  width: min(1400px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: flex-end;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.72) 100%);
}

.service-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #fff;
}

.service-content span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

.service-content h3 {
  margin: 0 0 10px;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 700;
}

.service-content p {
  max-width: 430px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Tablet */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Telefon */
@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 380px;
  }

  .service-content {
    padding: 24px;
  }

  .service-content h3 {
    font-size: 23px;
  }
}

.cta-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/img/cta.png') center center / cover no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 20, 0.62);
}

.cta-content {
  position: relative;
  z-index: 2;
  width: min(850px, 90%);
  text-align: center;
  color: #fff;
}

.cta-eyebrow {
  display: block;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75);
}

.cta-content h2 {
  margin: 0 auto 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 700;
}

.cta-content p {
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.cta-btn {
  min-width: 160px;
  padding: 15px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary {
  background: #fff;
  color: #111;
}

.cta-primary:hover {
  transform: translateY(-3px);
  background: #f1f1f1;
}

.cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(5px);
}

.cta-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
}

/* Mobil */
@media (max-width: 600px) {
  .cta-section {
    min-height: 520px;
  }

  .cta-content h2 {
    font-size: 34px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    max-width: 260px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-logo {
  display: block;
  width: 110px;
  height: auto;
  margin: 25px auto 0;
  object-fit: contain;
  opacity: 0.85;
}

/* Yorum kartlarını eşit yükseklikte tut */
.testimonial-grid {
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
}

/* Yorum alanı eşit alan kaplasın */
.testimonial-card p {
  flex: 1;
}

/* İsim ve hizmet */
.testimonial-author {
  margin-top: auto;
}

/* Tüm logolar aynı boyutta ve aynı hizada */
.testimonial-logo {
  display: block;

  width: 110px;
  height: 45px;

  margin: 25px auto 0;

  object-fit: contain;
  object-position: center;

  opacity: 0.85;
  flex-shrink: 0;
}

section.testimonials-section {
  padding: 50px 0px;
}

.site-footer {
  position: relative;
  background: #101820;
  color: #fff;
  padding-top: 75px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 55px;
  padding-bottom: 60px;
}

/* Marka */
.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo img {
  width: 175px;
  height: auto;
  display: block;
}

.footer-brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.8;
}

/* Sosyal medya */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #0d9ee8;
  border-color: #0d9ee8;
  color: #fff;
  transform: translateY(-3px);
}

/* Kolonlar */
.footer-column h3 {
  margin: 5px 0 25px;
  font-size: 16px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 13px;
}

.footer-column li a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-column li a i {
  font-size: 9px;
  color: #0d9ee8;
}

.footer-column li a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* İletişim */
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(13, 158, 232, 0.1);
  color: #0d9ee8;
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.contact-item a:hover {
  color: #0d9ee8;
}

/* Alt footer */
.footer-bottom {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Tablet */
@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }
}

/* Mobil */
@media (max-width: 600px) {
  .site-footer {
    padding-top: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-logo img {
    width: 155px;
  }

  .footer-bottom {
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

.footer-logo img {
  width: 175px;
  height: auto;
  display: block;

  filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
}

.service-content {
  padding: 0px;
}

@media (max-width: 995px) {
.hero-slide-content {
    position: absolute;
    z-index: 1;
    left: 9%;
    right: 56px;
    top: 8%;
    max-width: 100%;
    color: white;
}
.hero-banner {
    height: 500px !important;
}
.service-grid, .process-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 22px;
}
.story-grid {
    display: block;
    padding: 0;
    margin-top: -64px;
}

.story-visual {
    display: none;
}

.services-section {
    padding: 0;
    margin-top: 30px;
}

.section-head.center-head h2 {
    font-size: 25px;
}
}

/* =========================================
   MOBİL HEADER
========================================= */

.mobile-header {
  display: none;
}


/* =========================================
   MOBİL MENÜ
========================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;

  width: min(380px, 88%);
  height: 100vh;

  z-index: 9999;

  display: flex;
  flex-direction: column;

  padding: 25px;

  background: #101820;

  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.35);

  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}


/* Menü üst */

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 22px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.mobile-menu-header button {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;

  background: rgba(255, 255, 255, 0.05);

  color: #fff;

  font-size: 18px;

  cursor: pointer;
}


/* =========================================
   MOBİL NAV
========================================= */

.mobile-nav {
  display: flex;
  flex-direction: column;

  margin-top: 20px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 19px 5px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);

  color: rgba(255, 255, 255, 0.85);

  font-size: 16px;
  font-weight: 500;

  text-decoration: none;

  transition: 0.25s ease;
}

.mobile-nav a i {
  color: #0d9ee8;

  font-size: 12px;

  transition: 0.25s ease;
}

.mobile-nav a:hover {
  color: #fff;
}

.mobile-nav a:hover i {
  transform: translateX(5px);
}


/* =========================================
   MOBİL ALT BUTONLAR
========================================= */

.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin-top: auto;
  padding-top: 25px;
}

.mobile-menu-actions a {
  min-height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  border-radius: 9px;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
}

.mobile-offer {
  background: #0d9ee8;
  color: #fff;
}

.mobile-phone {
  border: 1px solid rgba(255, 255, 255, 0.15);

  background: rgba(255, 255, 255, 0.05);

  color: #fff;
}


/* =========================================
   OVERLAY
========================================= */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;

  z-index: 9998;

  background: rgba(0, 0, 0, 0.55);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 768px) {

  /* Masaüstü navbarı gizle */
  .main-nav,
  .nav-actions {
    display: none;
  }

  /* Mobil header göster */
  .mobile-header {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;
  }


  /* Mobil logo */
  .mobile-logo img {
    width: 145px;
    height: auto;

    display: block;

    filter:
      drop-shadow(0 0 5px rgba(255, 255, 255, 0.6))
      drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
  }


  /* Hamburger */
  .mobile-menu-toggle {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 9px;

    background: transparent;

    color: #fff;

    font-size: 22px;

    cursor: pointer;
  }

}


/* =========================================
   MASAÜSTÜ
========================================= */

@media (min-width: 769px) {

  .mobile-menu,
  .mobile-menu-overlay {
    display: none;
  }

}

/* =========================================
   MOBİL BAR
========================================= */

.sac-mobile-bar {
    display: none;
}


/* =========================================
   MOBİL MENÜ PANELİ
========================================= */

.sac-mobile-panel {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 85vw;
    max-width: 400px;
    height: 100dvh;

    z-index: 99999;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    padding: 25px;

    background: #101820;

    box-shadow: -15px 0 50px rgba(0,0,0,.45);

    /* BAŞLANGIÇTA TAMAMEN SAĞDA */
    transform: translateX(100%) !important;

    transition: transform .4s ease;

    visibility: hidden;
}


/* AÇILDIĞINDA */
.sac-mobile-panel.is-open {
    transform: translateX(0) !important;

    visibility: visible;
}


/* =========================================
   ÜST
========================================= */

.sac-mobile-panel-top {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.sac-mobile-panel-logo img {
    width: 140px;
    height: auto;

    display: block;

    filter:
        drop-shadow(0 0 6px rgba(255,255,255,.6));
}


/* Kapat */

.sac-mobile-close {
    position: relative;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    background: rgba(255,255,255,.05);

    cursor: pointer;
}

.sac-mobile-close span {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 18px;
    height: 2px;

    background: #fff;

    border-radius: 2px;
}

.sac-mobile-close span:first-child {
    transform: translate(-50%,-50%) rotate(45deg);
}

.sac-mobile-close span:last-child {
    transform: translate(-50%,-50%) rotate(-45deg);
}


/* =========================================
   LİNKLER
========================================= */

.sac-mobile-links {
    width: 100%;

    display: flex;
    flex-direction: column;

    margin-top: 20px;
}

.sac-mobile-links a {
    width: 100%;

    box-sizing: border-box;

    display: grid;

    grid-template-columns: 35px 1fr 20px;

    align-items: center;

    gap: 8px;

    padding: 19px 0;

    border-bottom: 1px solid rgba(255,255,255,.07);

    color: #fff;

    text-decoration: none;
}

.sac-mobile-number {
    color: #0d9ee8;

    font-size: 11px;
    font-weight: 700;
}

.sac-mobile-text {
    font-size: 17px;
    font-weight: 500;
}

.sac-mobile-links i {
    color: #0d9ee8;

    font-size: 11px;
}


/* =========================================
   ALT
========================================= */

.sac-mobile-bottom {
    width: 100%;

    margin-top: auto;

    padding-top: 25px;
}

.sac-mobile-bottom-title {
    display: flex;
    flex-direction: column;

    gap: 6px;

    margin-bottom: 18px;
}

.sac-mobile-bottom-title span {
    color: #0d9ee8;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.sac-mobile-bottom-title strong {
    color: #fff;

    font-size: 17px;
    line-height: 1.4;
}


/* =========================================
   BUTONLAR
========================================= */

.sac-mobile-buttons {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.sac-mobile-buttons a {
    min-height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.sac-mobile-offer {
    background: #0d9ee8;

    color: #fff;
}

.sac-mobile-call {
    border: 1px solid rgba(255,255,255,.15);

    background: rgba(255,255,255,.05);

    color: #fff;
}


/* =========================================
   ARKA PLAN
========================================= */

.sac-mobile-backdrop {
    position: fixed !important;

    inset: 0 !important;

    z-index: 99998;

    background: rgba(0,0,0,.6);

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;
}

.sac-mobile-backdrop.is-visible {
    opacity: 1;

    visibility: visible;
}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 768px) {

    .sac-mobile-bar {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 8px;
    }


    /* LOGO */

    .sac-mobile-brand img {
        width: 115px;
        height: auto;
        display: block;
        filter:
            drop-shadow(0 0 6px rgba(255,255,255,.65))
            drop-shadow(0 0 15px rgba(255,255,255,.2));
        padding: 8px 12px;
    }


    /* 3 ÇİZGİ */

    .sac-mobile-trigger {
        width: 46px;
        height: 46px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 9px;
        background: rgb(3 25 44);
        cursor: pointer;
    }

    .sac-mobile-trigger span {
        display: block;

        width: 21px;
        height: 2px;

        background: #fff;

        border-radius: 3px;
    }

}


/* =========================================
   MASAÜSTÜ
========================================= */

@media (min-width: 769px) {

    .sac-mobile-bar,
    .sac-mobile-panel,
    .sac-mobile-backdrop {
        display: none !important;
    }

}.sac-new-mobile {
    display: none;
}


/* Üst bar */

.sac-new-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 19px;
}


/* Logo */

.sac-new-mobile-brand img {
    width: 67px;
    height: auto;
    display: block;
    filter:
        drop-shadow(0 0 6px rgba(255,255,255,.6))
        drop-shadow(0 0 15px rgba(255,255,255,.2));
}


/* Hamburger */

.sac-new-mobile-trigger {
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid #101820;
    border-radius: 9px;
    background: rgb(24 34 43);
    cursor: pointer;
}

.sac-new-mobile-trigger span {
    width: 21px;
    height: 2px;

    display: block;

    background: #fff;

    border-radius: 3px;
}


/* =========================================
   AÇILIR MENÜ
========================================= */

.sac-new-mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: min(380px, 88%);
    height: 100dvh;

    z-index: 10001;

    box-sizing: border-box;

    padding: 25px;

    display: flex;
    flex-direction: column;

    background: #101820;

    box-shadow: -20px 0 50px rgba(0,0,0,.4);

    transform: translateX(100%);

    transition:
        transform .4s cubic-bezier(.77,0,.18,1);
}


/* Menü açık */

.sac-new-mobile-menu.active {
    transform: translateX(0);
}


/* =========================================
   MENÜ ÜST
========================================= */

.sac-new-mobile-menu-head {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid rgba(255,255,255,.08);

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* X */

.sac-new-mobile-close {
    position: relative;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    background: rgba(255,255,255,.05);

    cursor: pointer;
}

.sac-new-mobile-close span {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 18px;
    height: 2px;

    background: #fff;

    border-radius: 2px;
}

.sac-new-mobile-close span:first-child {
    transform:
        translate(-50%,-50%)
        rotate(45deg);
}

.sac-new-mobile-close span:last-child {
    transform:
        translate(-50%,-50%)
        rotate(-45deg);
}


/* =========================================
   MENÜ LİNKLERİ
========================================= */

.sac-new-mobile-nav {
    display: flex;
    flex-direction: column;

    margin-top: 20px;
}

.sac-new-mobile-nav a {
    display: grid;

    grid-template-columns: 32px 1fr 20px;

    align-items: center;

    gap: 10px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(255,255,255,.07);

    color: #fff;

    font-size: 17px;
    font-weight: 500;

    text-decoration: none;

    transition: .25s ease;
}

.sac-new-mobile-nav a span {
    color: #0d9ee8;

    font-size: 10px;
    font-weight: 700;
}

.sac-new-mobile-nav a i {
    color: #0d9ee8;

    font-size: 11px;

    transition: .25s ease;
}

.sac-new-mobile-nav a:hover {
    padding-left: 7px;
}

.sac-new-mobile-nav a:hover i {
    transform: translateX(5px);
}


/* =========================================
   ALT ALAN
========================================= */

.sac-new-mobile-footer {
    margin-top: auto;

    padding-top: 25px;
}

.sac-new-mobile-footer strong {
    display: block;

    margin-bottom: 15px;

    color: #fff;

    font-size: 17px;
    line-height: 1.4;
}

.sac-new-mobile-footer > div {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.sac-new-mobile-footer a {
    min-height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 8px;

    background: #0d9ee8;

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.sac-new-mobile-footer a:last-child {
    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.12);
}


/* =========================================
   ARKA PLAN
========================================= */

.sac-new-mobile-overlay {
    position: fixed;

    inset: 0;

    z-index: 10000;

    background: rgba(0,0,0,.6);

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;
}

.sac-new-mobile-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 995px) {

    .sac-new-mobile {
        display: block;
        width: 100%;
    }
button.hero-arrow.hero-next {
    /* bottom: -8px !important; */
    top: 93%;
    right: 34%;
}

button.hero-arrow.hero-prev {
    top: 93%;
    left: 34%;
}
}


/* =========================================
   MASAÜSTÜ
========================================= */

@media (min-width: 769px) {

    .sac-new-mobile,
    .sac-new-mobile-menu,
    .sac-new-mobile-overlay {
        display: none;
    }

}.sac-new-mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: min(380px, 88%);
    height: 100dvh;

    z-index: 10001;

    box-sizing: border-box;

    padding: 25px;

    display: flex;
    flex-direction: column;

    background: #101820;

    box-shadow: -20px 0 50px rgba(0,0,0,.4);

    transform: translate3d(100%, 0, 0);

    visibility: hidden;
    pointer-events: none;

    transition:
        transform .4s cubic-bezier(.77,0,.18,1),
        visibility 0s linear .4s;
}


/* AÇIK */

.sac-new-mobile-menu.active {
    transform: translate3d(0, 0, 0);

    visibility: visible;
    pointer-events: auto;

    transition:
        transform .4s cubic-bezier(.77,0,.18,1),
        visibility 0s linear 0s;
}html,
body {
    overflow-x: hidden;
}.sac-new-mobile-menu-logo {
    display: block;
    line-height: 0;
}

.sac-new-mobile-menu-logo img {
    width: 145px;
    height: auto;

    display: block;

    /* Beyaz parlama efekti */
    filter:
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.55))
        drop-shadow(0 0 22px rgba(255, 255, 255, 0.2));
}
