/* Başak İş Elbiseleri — shared stylesheet (TR + EN) */

:root {
  --navy-900: #081d38;
  --navy-800: #0d2a4a;
  --navy-700: #14375c;
  --navy-600: #1d4a76;
  --gold-600: #b97a1f;
  --gold-500: #d6952e;
  --gold-400: #e6ac4d;
  --gold-100: #f7e7cc;
  --bg: #faf9f6;
  --surface: #ffffff;
  --border: #e8e2d6;
  --text: #16232f;
  --text-muted: #55606b;
  --shadow-sm: 0 1px 2px rgba(8, 29, 56, 0.06), 0 1px 1px rgba(8, 29, 56, 0.04);
  --shadow-md: 0 8px 24px rgba(8, 29, 56, 0.10), 0 2px 6px rgba(8, 29, 56, 0.06);
  --shadow-lg: 0 20px 48px rgba(8, 29, 56, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", "Inter", system-ui, sans-serif;
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.3rem);
  font-weight: 700;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Prevent CSS Grid's default min-width:auto from letting grid items
   (cards, panels) refuse to shrink below their content's min-content width. */
.about-grid > *,
.cat-grid > *,
.why-grid > *,
.footer-grid > *,
.hero-inner > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
  border-radius: 2px;
}

.section {
  padding: clamp(56px, 6vw, 96px) 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
  min-height: 48px;
  white-space: nowrap;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--gold-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: inherit;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}

.btn-outline-navy:hover {
  background: var(--navy-800);
  color: #fff;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 0;
}

.brand img {
  height: 44px;
  width: auto;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-text strong,
.brand-text span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text strong {
  font-family: "Outfit", sans-serif;
  color: var(--navy-900);
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--gold-600);
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 420px) {
  .brand-text span {
    display: none;
  }
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-800);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.primary-nav a:hover {
  background: var(--gold-100);
  color: var(--navy-900);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  background: var(--surface);
}

.lang-switch a {
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--text-muted);
}

.lang-switch a[aria-current="true"] {
  background: var(--navy-800);
  color: #fff;
}

.header-actions .btn {
  padding: 10px 18px;
  min-height: 40px;
  font-size: 0.9rem;
  display: none;
}

@media (min-width: 860px) {
  .header-actions .btn {
    display: inline-flex;
  }
}

/* Mobile nav (native <details>, no JS required) */
.mobile-nav-toggle {
  display: none;
}

@media (max-width: 859px) {
  .primary-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
    position: relative;
  }

  .mobile-nav-toggle > summary {
    list-style: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
  }

  .mobile-nav-toggle > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav-toggle > summary svg {
    width: 22px;
    height: 22px;
    color: var(--navy-800);
  }

  .mobile-nav-toggle[open] > summary .icon-close {
    display: block;
  }

  .mobile-nav-toggle[open] > summary .icon-open {
    display: none;
  }

  .mobile-nav-toggle > summary .icon-close {
    display: none;
  }

  .mobile-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-panel a {
    text-decoration: none;
    color: var(--navy-800);
    font-weight: 500;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
  }

  .mobile-panel a:hover {
    background: var(--gold-100);
  }

  .mobile-panel .btn {
    margin-top: 6px;
  }
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(1200px 480px at 85% -10%, #163a5f 0%, var(--navy-900) 55%), var(--navy-900);
  color: #fff;
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/pattern-diagonal.svg");
  background-size: 42px 42px;
  opacity: 0.06;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-block: clamp(56px, 8vw, 108px);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  color: #fff;
}

.hero .eyebrow {
  color: var(--gold-400);
}

.hero-lede {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 340px) {
  .btn {
    white-space: normal;
    text-align: center;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 22px;
  margin-top: 44px;
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: repeat(2, auto);
  }
}

.hero-stats .stat-num {
  font-family: "Outfit", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-400);
}

.hero-stats .stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.hero-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 34px;
  backdrop-filter: blur(6px);
  max-width: 360px;
  text-align: center;
}

.hero-badge img {
  margin: 0 auto 18px;
  width: 120px;
  height: 120px;
  border-radius: 20px;
}

.hero-badge strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.hero-badge p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin: 0;
}

/* Trust strip */
.trust-strip {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 26px;
}

@media (max-width: 760px) {
  .trust-strip ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy-800);
  font-size: 0.94rem;
  min-width: 0;
}

.trust-strip svg {
  width: 26px;
  height: 26px;
  color: var(--gold-600);
  flex: none;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-copy p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.about-panel {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.about-panel .year {
  font-family: "Outfit", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.about-panel .year-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 10px;
}

.about-panel-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
}

.about-panel-list li {
  display: flex;
  gap: 10px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.88);
}

.about-panel-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold-400);
  flex: none;
  margin-top: 1px;
}

/* Category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 980px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.cat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.cat-icon-wrap svg {
  width: 30px;
  height: 30px;
  color: var(--navy-800);
}

.cat-card h3 {
  margin-bottom: 8px;
}

.cat-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.cat-note {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
  background: var(--gold-100);
  border: 1px dashed var(--gold-500);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.cat-note svg {
  width: 22px;
  height: 22px;
  color: var(--gold-600);
  flex: none;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  padding: 4px;
}

.why-num {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-600);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}

.why-card h3 {
  margin-bottom: 8px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 10px;
  max-width: 30ch;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
  margin: 0;
}

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

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-grid > * {
  min-width: 0;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-block: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-row > div {
  min-width: 0;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.contact-row .ic svg {
  width: 22px;
  height: 22px;
  color: var(--navy-800);
}

.contact-row .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-row a,
.contact-row .value {
  font-weight: 600;
  color: var(--navy-900);
  text-decoration: none;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.contact-row a:hover {
  color: var(--gold-600);
}

.contact-people {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--gold-100);
  border-radius: var(--radius-md);
}

.contact-people .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  flex: none;
}

.contact-map-note {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.contact-map-note h3 {
  color: #fff;
}

.contact-map-note p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
  padding-block: 56px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-brand img {
  height: 40px;
}

.footer-brand strong {
  color: #fff;
  font-family: "Outfit", sans-serif;
}

.site-footer h4 {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.84rem;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform 0.2s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

/* Scroll reveal (progressive enhancement — content stays visible without JS) */
.reveal {
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
