:root {
  --bg: #0f1115;
  --bg-alt: #161a20;
  --ink: #f5f6f7;
  --ink-soft: #c4c9d1;
  --accent: #f5c11f;
  --accent-dark: #d7a60f;
  --steel: #d7dbe2;
  --card: #151920;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-lg: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% -10%, rgba(245, 193, 15, 0.18), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(245, 193, 15, 0.1), transparent 50%),
    linear-gradient(180deg, #0f1115 0%, #0b0d10 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

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

section {
  scroll-margin-top: 110px;
}

.page-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='80' height='80' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: multiply;
  z-index: 0;
}

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.top-bar {
  background: linear-gradient(90deg, #0f1115 0%, #1a1e24 100%);
  color: #e6e8ec;
  font-size: 0.9rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: #f2f4f7;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 17, 21, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;   /* ⬅️ KRİTİK */
  gap: 1rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.25em;
}


.logo-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 290px;
  height: 90px;
  border-radius: 8px;
  background: #101318;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  overflow: visible; /* ⬅️ KRİTİK */
}


.logo-img {
  width: 120%;
  height: 120%;
  object-fit: contain;
  display: block;
}


.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;   /* ⬅️ KRİTİK */
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a[aria-current="page"]::after {
  width: 100%;
}

.nav a[aria-current="page"] {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #1a1a1a;
  padding: 0.45rem 1rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.hero {
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(245, 193, 15, 0.22), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.04), transparent 50%);
  z-index: 0;
}

.hero.hero-slider {
  padding: 2.8rem 0 4.5rem;
}

.hero.hero-slider::before {
  display: none;
}

.hero-slider-frame {
  position: relative;
  width: min(1240px, 92vw);
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  min-height: clamp(520px, 70vh, 660px);
  background: #0f1115;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-slider-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6, 8, 11, 0.9) 0%, rgba(6, 8, 11, 0.65) 45%, rgba(6, 8, 11, 0.25) 100%);
  z-index: 1;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 3.8rem 0 4.4rem;
}

.hero-slider .hero-copy {
  color: #f4f7fb;
}

.hero-slider .hero-lead {
  font-size: 30px;
  line-height: 1.5;
  color: rgba(230, 236, 245, 0.88);
}

.hero-slider .eyebrow {
  color: #f6d356;
}

.hero-slider .stat-card {
  color: var(--ink);
}

.hero-slider .stat-card span {
  color: var(--ink-soft);
}

.hero-slider .hero-card {
  color: var(--ink);
}

.hero-slider .hero-card-header {
  color: var(--steel);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-dot {
  width: 48px;
  height: 5px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot.is-active {
  background: var(--accent);
}

.hero-dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  margin: 0.5rem 0 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #151515;
  box-shadow: 0 10px 25px rgba(245, 193, 15, 0.3);
}

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn.secondary {
  border-color: var(--steel);
  color: var(--steel);
  background: transparent;
}

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

.hero-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  min-width: 140px;
}

.stat-card strong {
  display: block;
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.8rem;
  width: min(420px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--steel);
}

.hero-card-body ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-card-footer {
  margin-top: 1rem;
}

.hero-card-footer a {
  color: var(--accent);
  font-weight: 600;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  right: 10%;
  background: linear-gradient(135deg, #1f2329, #0f1115);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
}

.features {
  padding: 2rem 0 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 193, 15, 0.14);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
  fill: rgba(245, 193, 15, 0.22);
}

.about {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.6rem;
}

.about h2,
.services h2,
.brands h2,
.featured h2,
.gallery h2,
.contact h2,
.cta-band h2 {
  font-family: "Oswald", sans-serif;
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.about-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 1.6rem;
}

.about-list span {
  background: rgba(245, 193, 15, 0.12);
  color: var(--accent);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.services {
  padding: 4rem 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.section-actions {
  display: flex;
  margin-top: 1.6rem;
}

.tips {
  padding: 4rem 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.tip-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.tip-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.tip-item summary::-webkit-details-marker {
  display: none;
}

.tip-item p {
  margin: 0.6rem 0 0;
  color: var(--ink-soft);
}

.tip-item[open] summary {
  color: var(--accent-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 0.95rem 1.05rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.service-card h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.brands {
  padding: 3.5rem 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.brand-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--steel);
}

.brand-logo {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: block;
  object-fit: contain;
}

.brand-card span {
  font-weight: 600;
  color: var(--steel);
}

.featured {
  padding: 4rem 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.featured-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.featured-card a {
  color: var(--accent);
  font-weight: 600;
}

.parts-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.parts-card {
  border: none;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font: inherit;
  appearance: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.parts-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.parts-card p {
  margin: 0;
  color: var(--ink-soft);
}

.parts-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.6);
}

.parts-card:focus-visible {
  outline: 3px solid rgba(245, 193, 15, 0.55);
  outline-offset: 3px;
}

.parts-cta {
  margin-top: 0.4rem;
  color: var(--accent);
  font-weight: 600;
}

.parts-actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: flex-start;
}

.cta-band {
  padding: 3.5rem 0;
  background: radial-gradient(circle at 15% 0%, rgba(245, 193, 15, 0.18), transparent 55%),
    linear-gradient(110deg, #0f1115 0%, #1a1f26 100%);
  color: #eef4fb;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.gallery {
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #14171c;
  cursor: pointer;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 0;
}

.gallery-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 40;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.8);
  backdrop-filter: blur(2px);
}

.lightbox-panel {
  position: relative;
  width: min(920px, 92vw);
  background: #121417;
  color: #f5f6f7;
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 1rem;
  z-index: 1;
  transform: translateY(12px);
  transition: transform 0.3s ease;
}

.lightbox.is-open .lightbox-panel {
  transform: translateY(0);
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.lightbox-image {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 18px;
  background: #1b1f24;
}

.lightbox-title {
  font-weight: 600;
}

.lightbox-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 80px;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.lightbox-thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.lightbox-thumb img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  display: block;
}

.lightbox-thumb.active {
  border-color: var(--accent);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.parts-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 60;
}

.parts-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.parts-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 12, 0.65);
  backdrop-filter: blur(2px);
}

.parts-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 92vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.parts-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.8rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.parts-modal-tag {
  margin: 0 0 0.2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.parts-modal-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
}

.parts-modal-close {
  border: none;
  background: #1f2329;
  color: var(--ink);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.parts-modal-content {
  padding: 1.5rem 1.8rem 2rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.parts-category-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.parts-category-title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--accent);
}

.parts-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.parts-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #1c2026;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

.parts-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.parts-item figcaption {
  padding: 0.7rem 0.85rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.contact {
  padding: 4rem 0 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0 2rem;
  font-weight: 600;
}

.contact-list a,
.contact-list span {
  color: var(--ink);
}

body.lightbox-open {
  overflow: hidden;
}

body.parts-modal-open {
  overflow: hidden;
}

.map-placeholder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #12151a;
  min-height: 240px;
  margin-top: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}

.contact-form {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-top: 0;
  font-family: "Oswald", sans-serif;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f1216;
  color: var(--ink);
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.footer {
  background: #0b0d10;
  color: #cdd2d9;
  padding: 3rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer h4 {
  margin-top: 0;
  font-family: "Oswald", sans-serif;
}

.footer-logo .logo-mark {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1.2rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 193, 15, 0.35);
  background: rgba(245, 193, 15, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
  color: #0b0d10;
  background: var(--accent);
  box-shadow: 0 14px 26px rgba(245, 193, 15, 0.25);
  transform: translateY(-1px);
}

.social-icon {
  width: 22px;
  height: 22px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1fae63;
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(31, 174, 99, 0.3);
  z-index: 10;
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.admin-wrap {
  padding: 3.5rem 0 5rem;
}

.admin-panel.is-hidden,
.admin-login.is-hidden {
  display: none;
}

.admin-badge {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--accent);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.admin-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-form {
  max-width: 420px;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.admin-field label {
  font-weight: 600;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f1216;
  color: var(--ink);
  font-family: inherit;
}

.admin-field textarea {
  resize: vertical;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(180px, 2fr) auto;
  gap: 0.6rem;
  align-items: center;
}

.admin-list {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.admin-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.admin-file {
  display: none;
}

.btn.small {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.admin-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 100%;
    right: 5vw;
    left: 5vw;
    background: #12161b;
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 0.8rem;
    display: none;
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-slider-frame {
    min-height: 720px;
  }

  .hero-overlay {
    padding: 3rem 0 4rem;
  }

  .hero-dots {
    bottom: 16px;
  }

  .hero-stats {
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-dot {
    width: 34px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .lightbox-panel {
    padding: 1.1rem;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox-thumbs {
    grid-auto-columns: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-slide,
  .hero-dot {
    transition: none;
  }

  .btn {
    transition: none;
  }
}
