:root {
  --c: #111;
  --muted: #666;
  --soft: #f7f5f2;
  --gold: #bfa37a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--c);
  background: #fff;
}

body.menu-open {
  overflow: hidden;
}

body.rtl {
  direction: rtl;
}

img {
  max-width: 100%;
}

a {
  color: #111;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.small {
  color: var(--muted);
  font-size: 14px;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  display: block;
}

/* MENÜ RENKLERİ */
.desktop-menu {
  display: flex;
  align-items: center;
}

.desktop-menu a {
  margin: 0 14px;
  font-weight: 500;
  transition: 0.3s;
}

header:not(.scrolled) .desktop-menu a {
  color: #fff;
}

header:not(.scrolled) .desktop-menu a:hover {
  color: rgba(255, 255, 255, 0.78);
}

header.scrolled .desktop-menu a {
  color: #333;
}

header.scrolled .desktop-menu a:hover {
  color: #666;
}

.lang {
  border-radius: 20px;
  padding: 6px 10px;
  outline: none;
  transition: 0.3s;
}

header:not(.scrolled) .lang {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #111;
}

header.scrolled .lang {
  background: #fff;
  border: 1px solid #eee;
  color: #111;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
  padding: 18px 24px 24px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #f1f1f1;
  color: #111;
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-lang-wrap {
  margin-top: 18px;
}

.mobile-lang-wrap .lang {
  width: 100%;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eee;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-left {
  width: 45%;
  padding: 120px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-left span {
  font-size: 12px;
  letter-spacing: 3px;
  color: #888;
}

.hero-left h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  margin: 20px 0;
}

.hero-left h1 b {
  color: var(--gold);
}

.hero-left p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-left a {
  border: 1px solid #111;
  padding: 12px 30px;
  color: #111;
  width: fit-content;
  transition: 0.3s;
}

.hero-left a:hover {
  background: #111;
  color: #fff;
}

.hero-right {
  width: 55%;
  height: 100%;
}

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

/* COLLECTIONS */
.section-top {
  margin-bottom: 24px;
}

.section-top h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
}

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

.card {
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.25s;
  background: #fff;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #f4f4f4;
  display: block;
}

.card h3 {
  padding: 16px 20px 22px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.more-collections {
  text-align: center;
  margin-top: 40px;
}

.more-collections a {
  display: inline-block;
  border: 1px solid #111;
  padding: 14px 40px;
  color: #111;
  font-weight: 500;
  transition: 0.3s;
}

.more-collections a:hover {
  background: #111;
  color: #fff;
}

/* CTA */
.catalog-cta {
  background: linear-gradient(135deg, #111, #2a2a2a);
  color: #fff;
  padding: 80px 0;
  margin: 0;
}

.catalog-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.catalog-text h2 {
  font-size: 36px;
  margin: 0 0 10px;
  color: #fff;
}

.catalog-text p {
  color: #bbb;
  margin: 0;
}

.catalog-btn {
  background: #fff;
  color: #111;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.catalog-btn:hover {
  background: #bfa37a;
  color: #fff;
}

/* FACTORY */
.factory {
  background: var(--soft);
  padding: 140px 0;
}

.factory-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.factory-text {
  max-width: 620px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #999;
}

.factory-text h2 {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 18px 0 24px;
  color: #111;
  font-weight: 600;
}

.factory-text p {
  font-size: 20px;
  line-height: 1.9;
  color: #666;
}

.factory-media {
  position: relative;
  height: 720px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  background: #e9e4dc;
}

.factory-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: sepia(8%) saturate(88%) contrast(94%) brightness(101%);
  transform: scale(1.04);
}

.factory-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(191, 163, 122, 0.08) 38%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.factory-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.factory-badge strong {
  display: block;
  font-size: 18px;
  color: #111;
  margin-bottom: 4px;
}

.factory-badge span {
  display: block;
  font-size: 14px;
  color: #666;
}

.factory-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.factory-stats div {
  display: flex;
  flex-direction: column;
}

.factory-stats strong {
  font-size: 30px;
  color: #111;
  font-weight: 600;
}

.factory-stats span {
  font-size: 14px;
  color: #777;
  margin-top: 6px;
}

/* EVENTS */
.events {
  background: #faf8f5;
}

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

.section-head h2 {
  font-size: 44px;
  line-height: 1.2;
  margin: 14px 0 18px;
  color: #111;
}

.section-head p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.event-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.event-content {
  padding: 24px;
}

.event-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #111;
}

.event-content p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #aaa;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  margin: 6px 0;
  max-width: 260px;
}

.footer-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding: 20px 0;
  font-size: 13px;
  color: #888;
}

/* FLOATING */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  color: #fff;
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  background: #111;
  z-index: 998;
}

.sticky-bar a {
  flex: 1;
  text-align: center;
  padding: 14px;
  color: #fff;
  font-size: 14px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.sticky-bar a:last-child {
  border-right: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    height: auto;
    min-height: 100vh;
  }

  .slide {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left {
    padding: 110px 24px 40px;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-right {
    height: 52vh;
  }

  .grid,
  .factory-grid,
  .events-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .factory-text h2,
  .section-head h2,
  .section-top h2 {
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .factory-text p,
  .section-head p {
    font-size: 16px;
    line-height: 1.8;
  }

  .factory-media {
    height: 460px;
  }

  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-left h1 {
    font-size: 34px;
  }

  .hero-left p {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-left a {
    padding: 11px 22px;
    font-size: 14px;
  }

  .grid,
  .factory-grid,
  .events-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 220px;
  }

  .catalog-inner {
    flex-direction: column;
    text-align: center;
  }

  .catalog-text h2 {
    font-size: 26px;
  }

  .factory {
    padding: 90px 0;
  }

  .factory-text h2,
  .section-head h2,
  .section-top h2 {
    font-size: 32px;
  }

  .factory-media {
    height: 380px;
    border-radius: 24px;
  }

  .factory-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
  }

  .factory-stats {
    gap: 22px;
  }

  .factory-stats strong {
    font-size: 24px;
  }

  .event-card img {
    height: 220px;
  }

  .event-content {
    padding: 18px;
  }

  .event-content h3 {
    font-size: 20px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-logo {
    width: 180px;
  }

  .sticky-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }

  .whatsapp-btn {
    bottom: 80px;
  }
}/* CORPORATE PAGE */
.page-main {
  padding-top: 72px;
}

.page-hero {
  padding: 90px 0 70px;
  background: #f7f5f2;
}

.page-hero h1 {
  margin: 14px 0 14px;
  font-size: 56px;
  line-height: 1.1;
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.corporate-text h2 {
  font-size: 46px;
  line-height: 1.12;
  margin: 14px 0 20px;
}

.corporate-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #666;
  margin: 0 0 18px;
}

.corporate-media img {
  width: 100%;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.corporate-soft {
  background: #faf8f5;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.policy-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 32px;
}

.policy-card h3 {
  font-size: 28px;
  margin: 14px 0 18px;
}

.policy-card p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
  margin: 0 0 14px;
}

.info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.info-list div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
}

.info-list strong {
  font-size: 22px;
  color: #111;
}

.info-list span {
  font-size: 14px;
  color: #777;
}

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

.management-card {
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 26px 22px;
  background: #fff;
}

.management-card h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #888;
}

.management-card p {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.certificates {
  background: #fff;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.cert-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.cert-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .page-hero h1 {
    font-size: 42px;
  }

  .corporate-grid,
  .policy-grid,
  .management-grid,
  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 72px 0 48px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p,
  .corporate-text p {
    font-size: 16px;
  }

  .corporate-grid,
  .policy-grid,
  .management-grid,
  .cert-grid,
  .info-list {
    grid-template-columns: 1fr;
  }

  .corporate-text h2 {
    font-size: 32px;
  }

  .policy-card {
    padding: 24px;
  }

  .policy-card h3 {
    font-size: 24px;
  }

  .management-card p {
    font-size: 20px;
  }
}/* COLLECTIONS PAGE */
.collections-hero {
  background: #f7f5f2;
}

.collections-grid-page {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.collection-card {
  display: block;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.collection-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.collection-card-body {
  padding: 18px 20px 22px;
}

.collection-card-body h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.15;
  color: #111;
}

.collection-card-body span {
  font-size: 14px;
  color: #888;
  transition: 0.3s;
}

.collection-card:hover .collection-card-body span {
  color: #111;
}

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

  .collection-card img {
    height: 280px;
  }

  .collection-card-body h3 {
    font-size: 24px;
  }
}

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

  .collection-card img {
    height: 260px;
  }

  .collection-card-body h3 {
    font-size: 22px;
  }
}/* E-CATALOG PAGE */
.catalog-page-hero {
  background: #f7f5f2;
}

.catalog-main-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.catalog-main-left h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 14px 0 18px;
}

.catalog-main-left p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 680px;
  margin: 0;
}

.catalog-main-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.catalog-btn-large,
.catalog-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 500;
  transition: 0.3s;
}

.catalog-btn-large {
  background: #111;
  color: #fff;
}

.catalog-btn-large:hover {
  background: #2b2b2b;
  color: #fff;
}

.catalog-btn-outline {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.catalog-btn-outline:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.catalog-main-right {
  display: flex;
  justify-content: center;
}

.catalog-preview-card {
  width: 100%;
  max-width: 360px;
  min-height: 320px;
  border-radius: 28px;
  background: linear-gradient(135deg, #111, #2c2c2c);
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.catalog-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.catalog-preview-top i {
  font-size: 28px;
}

.catalog-preview-body h3 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.catalog-preview-body p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

.catalog-list-section {
  background: #faf8f5;
}

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

.catalog-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 22px;
  transition: 0.3s ease;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.catalog-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.catalog-card-body h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.2;
  color: #111;
}

.catalog-card-body p {
  margin: 0;
  color: #888;
  font-size: 14px;
}

@media (max-width: 992px) {
  .catalog-main-card {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-main-left h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .catalog-main-card {
    padding: 28px;
    gap: 28px;
  }

  .catalog-main-left h2 {
    font-size: 28px;
  }

  .catalog-main-left p {
    font-size: 16px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card-body h3 {
    font-size: 20px;
  }

  .catalog-preview-card {
    min-height: 260px;
  }

  .catalog-preview-body h3 {
    font-size: 28px;
  }
}/* CATALOG MOCKUP */
.catalog-mockup {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: auto;
  perspective: 1200px;
}

.catalog-mockup img {
  width: 100%;
  display: block;
  border-radius: 18px;
  transform: rotateY(-12deg) rotateX(4deg) scale(1);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.25),
    0 10px 30px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

/* hover efekti */
.catalog-mockup:hover img {
  transform: rotateY(-6deg) rotateX(2deg) scale(1.03);
}

/* alt glow (premium hissi) */
.catalog-mockup::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 80%;
  height: 40px;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.25),
    transparent 70%
  );
  filter: blur(10px);
}/* CONTACT PAGE */
.contact-hero {
  background: #f7f5f2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.contact-info-card h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 14px 0 18px;
}

.contact-info-card > p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 28px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #f1f1f1;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-item h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #111;
}

.contact-item p {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.contact-item a {
  color: #111;
}

.contact-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.contact-social a:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}

.contact-form-card h3 {
  margin: 14px 0 22px;
  font-size: 34px;
  line-height: 1.15;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 15px;
  font-family: inherit;
  color: #111;
  outline: none;
  transition: 0.3s;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #111;
}

.contact-submit-btn {
  border: none;
  background: #111;
  color: #fff;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.contact-submit-btn:hover {
  background: #2b2b2b;
}

.map-section {
  background: #faf8f5;
}

.contact-map-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #ececec;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  min-height: 480px;
  border: 0;
}

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

  .contact-info-card h2,
  .contact-form-card h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .contact-info-card,
  .contact-form-card {
    padding: 24px;
    border-radius: 22px;
  }

  .contact-info-card h2,
  .contact-form-card h3 {
    font-size: 28px;
  }

  .contact-item {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 16px;
  }

  .contact-map-card {
    border-radius: 22px;
  }

  .contact-map-card iframe {
    min-height: 340px;
  }
}/* INNER PAGE HEADER (SİYAH MENÜ) */
.inner-page header {
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid #eee;
}

.inner-page .nav a {
  color: #111;
}

.inner-page .nav a:hover {
  color: #bfa37a;
}

/* logo da gerekirse */
.inner-page .logo img {
  filter: none;
}/* INNER PAGE HEADER - FORCE BLACK MENU */
.inner-page header {
  background: #fff;
  border-bottom: 1px solid #eee;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.inner-page header .desktop-menu a,
.inner-page header:not(.scrolled) .desktop-menu a,
.inner-page header.scrolled .desktop-menu a {
  color: #111;
}

.inner-page header .desktop-menu a:hover,
.inner-page header:not(.scrolled) .desktop-menu a:hover,
.inner-page header.scrolled .desktop-menu a:hover {
  color: #bfa37a;
}

.inner-page header .lang,
.inner-page header:not(.scrolled) .lang,
.inner-page header.scrolled .lang {
  background: #fff;
  border: 1px solid #eee;
  color: #111;
}/* HERO VIDEO */
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
}/* CORPORATE HERO VIDEO */
.corporate-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: contrast(1.04) brightness(0.82) saturate(1.02);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.42) 35%,
    rgba(0,0,0,0.22) 65%,
    rgba(0,0,0,0.16) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content .section-label {
  color: rgba(255,255,255,0.72);
}

.hero-content h1 {
  margin: 14px 0 18px;
  font-size: 72px;
  line-height: 1.02;
  color: #fff;
}

.hero-content p {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  margin: 0;
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-stat {
  min-width: 180px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-stat strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 6px;
}

.hero-stat span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 992px) {
  .corporate-hero {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p {
    font-size: 18px;
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .corporate-hero {
    min-height: 72vh;
  }

  .hero-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-stat {
    width: 100%;
    min-width: unset;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .hero-stat strong {
    font-size: 22px;
  }
}/* ABOUT CLEAN */
.about {
  padding: 120px 0;
  background: #fff;
}

.about-inner {
  max-width: 900px;
}

.about-text h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 16px 0 24px;
  color: #111;
}

.about-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* premium spacing */
.about-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-text p {
    font-size: 16px;
  }
}/* FACTORY VIDEO BACKGROUND */
.factory-video-bg {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  color: #fff;
}

/* video */
.factory-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* koyu overlay */
.factory-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* içerik */
.factory-content {
  position: relative;
  z-index: 3;
}

/* yazılar beyaz */
.factory-video-bg .factory-text h2,
.factory-video-bg .factory-text p,
.factory-video-bg .factory-text span {
  color: #fff;
}

/* stats */
.factory-video-bg .factory-stats strong {
  color: #fff;
}

.factory-video-bg .factory-stats span {
  color: rgba(255,255,255,0.75);
}