/* İzci İnşaat — wireframe + İzci Group palet & animasyonlar */

html:has(.insaat-corporate-home),
html:has(.insaat-corp-page) {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
}

html:has(.insaat-corporate-home)::-webkit-scrollbar,
html:has(.insaat-corp-page)::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body.insaat-corporate-home,
body.insaat-corp-page {
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
}

body.insaat-corporate-home::-webkit-scrollbar,
body.insaat-corp-page::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.insaat-corporate-home {
  scroll-behavior: smooth;

  /* İzci Group renk paleti */
  --izci-green: #469B37;
  --izci-green-dark: #006400;
  --izci-green-light: #6bb85e;
  --primary: #006400;
  --primary-light: #469B37;
  --accent: #469B37;
  --accent-hover: #006400;
  --text: #262626;
  --text-muted: #686868;
  --bg: #ffffff;
  --surface: #f5f5f5;
  --border: rgba(70, 155, 55, 0.32);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --font: "Inter", "Segoe UI", Arial, system-ui, -apple-system, sans-serif;
  --font-display: "Roboto Condensed", "Segoe UI", sans-serif;

  /* Kurumsal alias */
  --corp-green: var(--primary);
  --corp-green-light: var(--primary-light);
  --corp-text: var(--text);
  --corp-muted: var(--text-muted);
  --corp-line: #e5e5e5;
  --corp-surface: var(--surface);
  --corp-max: 1200px;
  --corp-font: var(--font);
  --corp-display: var(--font-display);

  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

.insaat-corporate-home #site-header,
.insaat-corporate-home #site-footer {
  display: none !important;
}

.insaat-corporate-home .cookie-banner,
.insaat-corporate-home .whatsapp-float {
  z-index: 200;
}

/* ── Header ── */
.corp-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--corp-line);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.corp-header.is-scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}

.corp-header.is-loaded {
  animation: corpHeaderIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.corp-header-inner {
  width: min(var(--corp-max), calc(100% - 3rem));
  margin: 0 auto;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.corp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.corp-logo img {
  height: 88px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.corp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex: 1;
}

.corp-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--corp-text);
  text-decoration: none;
  transition: color 0.2s;
}

.ih-about,
.ih-stats,
.ih-values,
.ih-services,
.ih-completed,
.ih-projects,
.ih-news {
  scroll-margin-top: 108px;
}

.corp-nav a:hover {
  color: var(--izci-green-dark);
}

.corp-nav a.is-active {
  color: var(--izci-green-dark);
  position: relative;
}

.corp-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--izci-green);
  border-radius: 1px;
}

/* Hizmetlerimiz alt menü — Yükseliş tarzı, İzci renkleri */
.corp-nav-item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.corp-nav-sub {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 20.625rem;
  padding: 1.875rem 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--izci-green-dark);
  border-radius: 1.25rem;
  box-shadow: 0 14px 40px rgba(0, 100, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.35s;
  z-index: 120;
}

.corp-nav-sub::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 6px;
}

.corp-nav-item--dropdown:hover .corp-nav-sub,
.corp-nav-item--dropdown:focus-within .corp-nav-sub,
.corp-nav-item--dropdown.is-sub-open .corp-nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.corp-nav-sub li {
  margin: 0;
}

.corp-nav-sub a {
  display: block;
  padding: 0.45rem 3.75rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--corp-text);
  line-height: 1.35;
  width: 100%;
  box-sizing: border-box;
  transition: color 0.25s ease;
}

.corp-nav-sub a:hover,
.corp-nav-sub a:focus-visible {
  color: var(--izci-green-dark);
}

.corp-nav-sub li:not(:last-child) a {
  border-bottom: 1px solid rgba(0, 100, 0, 0.12);
}

.corp-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.corp-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--corp-text);
}

/* ── Layout ── */
.insaat-home {
  background: #fff;
  color: var(--corp-text);
  font-family: var(--corp-font);
}

.ih-container {
  width: min(var(--corp-max), calc(100% - 3rem));
  margin: 0 auto;
}

.ih-container--wide {
  width: min(1380px, calc(100% - 2rem));
}

/* ── Hero ── */
.ih-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background: #111 center/cover no-repeat;
  background-image: url("https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1920&q=80");
  background-size: 108%;
  color: #fff;
  padding-top: 92px;
  overflow: hidden;
}

.ih-hero.is-ready {
  animation: corpKenBurns 20s ease-out forwards;
}

.ih-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 100, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.58) 100%
  );
}

.ih-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--corp-max), calc(100% - 3rem));
  margin: 0 auto;
  padding: 0 0 4.5rem;
}

.ih-hero-kicker {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.ih-hero-title {
  max-width: 11ch;
  font-family: var(--corp-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.ih-hero-lead {
  max-width: 46ch;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.ih-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 0.9rem 1.6rem;
  border: none;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.ih-btn--hero:hover {
  background: var(--izci-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 100, 0, 0.28);
}

.ih-btn--hero {
  background: #fff;
  color: var(--corp-text);
}

.ih-btn--outline {
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--corp-text);
  background: transparent;
  color: var(--corp-text);
}

.ih-btn--outline:hover {
  background: var(--izci-green-dark);
  border-color: var(--izci-green-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ── About ── */
.ih-about {
  padding: 5rem 0;
}

.ih-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ih-about-media {
  position: relative;
}

.ih-about-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.ih-about-badge {
  position: absolute;
  right: -0.5rem;
  bottom: 2.5rem;
  min-width: 6.5rem;
  min-height: 6.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--izci-green-dark);
  color: #fff;
  font-family: var(--corp-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0, 100, 0, 0.3);
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.ih-about-badge.is-visible {
  transform: scale(1);
  opacity: 1;
}

/* ── Stats band ── */
.ih-stats {
  background: linear-gradient(135deg, var(--izci-green-dark) 0%, #004d00 100%);
  color: #fff;
  padding: 2.75rem 0;
}

.ih-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.ih-stat-item {
  padding: 0.5rem 1rem;
}

.ih-stat-value {
  display: block;
  font-family: var(--corp-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.ih-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
}

/* ── Completed projects band ── */
.ih-completed {
  padding: 4.5rem 0;
  background: #fff;
}

.ih-completed-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.ih-completed-head h2 {
  font-family: var(--corp-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  max-width: 20ch;
  line-height: 1.25;
}

.ih-completed-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ih-completed-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.45rem 0.75rem;
  text-decoration: none;
  color: inherit;
  padding: 1rem 0;
  border-top: 1px solid var(--corp-line);
  transition: color 0.2s ease;
}

.ih-completed-bar:hover {
  color: var(--izci-green-dark);
}

.ih-completed-bar-label {
  grid-column: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ih-completed-bar strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--corp-display);
  font-size: 1.35rem;
  color: var(--izci-green-dark);
}

.ih-completed-bar-track {
  grid-column: 1;
  height: 4px;
  background: var(--corp-surface);
  border-radius: 2px;
  overflow: hidden;
}

.ih-completed-bar-track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--izci-green-dark), var(--izci-green));
  border-radius: 2px;
}

.ih-about-kicker {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--corp-muted);
}

.ih-about-text .ih-section-title {
  margin-bottom: 1.5rem;
}

.ih-section-title {
  font-family: var(--corp-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--corp-text);
}

.ih-section-title--bar::before {
  content: "|";
  margin-right: 0.75rem;
  color: var(--izci-green);
  font-weight: 400;
}

.ih-about-text p {
  margin-bottom: 1rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--corp-muted);
}

.ih-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--corp-text);
  text-decoration: none;
}

.ih-link:hover {
  color: var(--izci-green-dark);
}

/* ── Values (3-column principles) ── */
.ih-values {
  padding: 4.5rem 0;
  background: #fff;
}

.ih-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.ih-value-card {
  text-align: center;
  max-width: 22rem;
  margin: 0 auto;
}

.ih-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.35rem;
  color: #b8963e;
}

.ih-value-icon svg {
  width: 2.75rem;
  height: 2.75rem;
}

.ih-value-card h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--corp-text);
  line-height: 1.35;
}

.ih-value-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--corp-muted);
}

/* ── Services (Yükseliş İnşaat tarzı) ── */
.ih-services {
  padding: 4.5rem 0 5rem;
  background: #fff;
}

.ih-section-head--center {
  text-align: center;
  margin-bottom: 3rem;
}

.ih-section-head--center .ih-section-title {
  display: inline-block;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--corp-line);
}

.ih-yz-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}

.ih-yz-service {
  display: flex;
  flex-direction: column;
}

.ih-yz-service__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ih-yz-service__content {
  position: relative;
}

.ih-yz-service__media {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e8e8e8;
}

.ih-yz-service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ih-yz-service:hover .ih-yz-service__media img {
  transform: scale(1.06);
}

.ih-yz-service__action {
  display: flex;
  align-items: center;
  margin-top: -1.65rem;
  padding-left: 1.5rem;
  position: relative;
  z-index: 2;
}

.ih-yz-service__btn {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--izci-green-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ih-yz-service:hover .ih-yz-service__btn {
  background: var(--izci-green);
  transform: scale(1.06);
}

.ih-yz-service__decor {
  flex: 1;
  height: 1px;
  background: var(--corp-line);
  margin-left: 0.65rem;
  margin-right: 0.5rem;
  transition: background 0.3s ease;
}

.ih-yz-service:hover .ih-yz-service__decor {
  background: rgba(70, 155, 55, 0.55);
}

.ih-yz-service__info {
  padding: 1.35rem 0.75rem 0 1.75rem;
}

.ih-yz-service__title {
  margin: 0 0 0.75rem;
  font-family: var(--corp-display);
  font-size: clamp(1.3rem, 2vw, 1.875rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.ih-yz-service__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.ih-yz-service:hover .ih-yz-service__title a {
  color: var(--izci-green-dark);
}

.ih-yz-service__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--corp-muted);
}

/* Hizmetlerimiz iç sayfa */
.ih-svc-page-active > main {
  padding: 0;
}

.ih-svc-hero {
  position: relative;
  min-height: 18rem;
  display: flex;
  align-items: flex-end;
  padding: 6.5rem 0 2.75rem;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.ih-svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.ih-svc-hero .ih-container {
  position: relative;
  z-index: 1;
}

.ih-svc-breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 0.85rem;
  opacity: 0.92;
}

.ih-svc-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.ih-svc-breadcrumb a:hover {
  text-decoration: underline;
}

.ih-svc-hero h1 {
  margin: 0;
  font-family: var(--corp-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
}

.ih-svc-intro {
  padding: 3.25rem 0 2rem;
  background: linear-gradient(180deg, #f7f7f7 0%, #fff 100%);
}

.ih-svc-lead {
  max-width: 52rem;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--corp-text);
}

.ih-svc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.ih-svc-stat__label {
  display: block;
  font-size: 0.875rem;
  color: var(--corp-muted);
  margin-bottom: 0.55rem;
}

.ih-svc-stat__value {
  display: block;
  font-family: var(--corp-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--izci-green-dark);
  line-height: 1;
}

.ih-svc-stat__value sup {
  font-size: 0.55em;
  top: -0.35em;
}

/* Hizmetlerimiz sayfası — Yükseliş tarzı, beyaz zemin */
.ih-svc-page {
  background: #fff;
  color: var(--corp-text);
}

.ih-svc-page-active,
.ih-svc-page-active > main {
  background: #fff;
}

.ih-svc-grid-section {
  padding: 3.5rem 0 5.5rem;
  background: #fff;
}

.ih-svc-grid-section .ih-container {
  width: min(1320px, calc(100% - 3rem));
}

.ih-svc-grid-section h2 {
  font-family: var(--corp-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  color: var(--izci-green-dark);
  margin: 0 0 3.75rem;
  max-width: none;
  letter-spacing: -0.02em;
}

.ih-yz-services-grid {
  gap: 1.875rem;
}

.ih-yz-service__info {
  padding: 1.35rem 0.5rem 0 1.75rem;
}

.ih-yz-service__title {
  color: var(--corp-text);
}

.ih-yz-service__desc {
  color: var(--corp-muted);
}

/* legacy service cards (fallback) */
.ih-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ih-service-card {
  text-align: left;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--corp-surface);
  border: 1px solid var(--corp-line);
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.ih-service-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e8e8;
}

.ih-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.ih-service-card:hover {
  border-color: var(--izci-green);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 100, 0, 0.1);
}

.ih-service-card:hover .ih-service-media img {
  transform: scale(1.04);
}

.ih-service-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 1.1rem 1.15rem 1.25rem;
  margin: 0;
  line-height: 1.35;
}

/* ── Projects (accordion gallery) ── */
.ih-projects {
  padding: 4.5rem 0 5rem;
  background: var(--corp-surface);
}

.ih-projects-accordion {
  display: flex;
  gap: 0.65rem;
  min-height: 26rem;
  height: clamp(22rem, 42vw, 32rem);
}

.ih-project-panel {
  position: relative;
  flex: 0 0 5.75rem;
  width: 5.75rem;
  min-width: 5.75rem;
  border-radius: 1.15rem;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.ih-project-panel.is-active {
  flex: 1 1 auto;
  width: auto;
  min-width: 16rem;
}

.ih-project-panel-bg {
  position: absolute;
  inset: 0;
}

.ih-project-panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.ih-project-panel:hover .ih-project-panel-bg img,
.ih-project-panel.is-active .ih-project-panel-bg img {
  transform: scale(1.04);
}

.ih-project-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  transition: background 0.4s ease;
  pointer-events: none;
}

.ih-project-panel.is-active::after {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.35) 42%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.ih-project-panel-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.28s ease;
  pointer-events: none;
  padding: 1.25rem 0;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
  max-height: 100%;
  box-sizing: border-box;
}

.ih-project-panel:not(.is-active)::after {
  background: rgba(0, 0, 0, 0.55);
}

.ih-project-panel.is-active .ih-project-panel-label {
  opacity: 0;
}

.ih-project-panel-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.75rem 1.75rem 2rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  pointer-events: none;
}

.ih-project-panel.is-active .ih-project-panel-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ih-project-panel-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.ih-project-panel-location svg {
  flex-shrink: 0;
}

.ih-project-panel-title {
  margin: 0 0 1.15rem;
  max-width: 26rem;
  font-family: var(--corp-display);
  font-size: clamp(1.2rem, 1.8vw, 1.85rem);
  font-weight: 700;
  line-height: 1.28;
}

.ih-project-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.3rem 0.3rem 0.3rem 1.2rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
}

.ih-project-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-left: 0.85rem;
  border-radius: 50%;
  background: #c4a35a;
  color: #111;
}

.ih-project-cta-arrow svg {
  display: block;
}

.ih-project-panel:focus-visible {
  box-shadow: 0 0 0 3px rgba(70, 155, 55, 0.55);
}

/* legacy project cards (other pages) */
.ih-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ih-project-card {
  background: #fff;
  border: 1px solid var(--corp-line);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.ih-project-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--corp-surface);
}

.ih-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.ih-project-card:hover .ih-project-media img {
  transform: scale(1.04);
}

.ih-project-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.ih-project-card:hover {
  border-color: var(--izci-green);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 100, 0, 0.1);
}

.ih-project-card h3 {
  font-family: var(--corp-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--corp-text);
}

.ih-project-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--corp-muted);
}

/* ── Projects section head (shared) ── */

.ih-section-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.ih-section-head .ih-section-title {
  flex-shrink: 0;
}

.ih-section-head-line {
  flex: 1;
  height: 1px;
  background: var(--corp-line);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0.15s);
}

.ih-section-head.is-visible .ih-section-head-line,
.ih-section-head--center.is-visible::after {
  transform: scaleX(1);
}

.ih-section-head--center {
  position: relative;
}

.ih-section-head--center::after {
  content: "";
  display: block;
  width: 4rem;
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, var(--izci-green-dark), var(--izci-green));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

/* ── News ── */
.ih-news {
  padding: 4.5rem 0 2rem;
  background: #fff;
}

.ih-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ih-news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.ih-news-card .ih-news-media {
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.ih-news-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ih-news-card:hover img {
  transform: scale(1.05);
}

.ih-news-date {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--corp-muted);
  margin-bottom: 0.5rem;
}

.ih-news-card h3 {
  font-family: var(--corp-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.ih-news-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--corp-muted);
  flex: 1;
}

.ih-news-card .ih-link {
  margin-top: 1rem;
}

.ih-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--corp-muted);
  padding: 2rem;
}

/* ── Footer ── */
.corp-footer {
  --footer-bg: #242527;
  --footer-bg-bar: #1a1b1c;
  --footer-text: #f4f4f4;
  --footer-muted: rgba(255, 255, 255, 0.68);
  --footer-line: rgba(255, 255, 255, 0.12);
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: none;
  margin: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.corp-footer-main {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 3.75rem 1.5rem 3rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  align-items: start;
}

.corp-footer-brand,
.corp-footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.corp-footer-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.corp-footer-logo img {
  height: auto;
  width: auto;
  max-height: 120px;
  max-width: 140px;
  object-fit: contain;
  display: block;
  background: #242527;
}

.corp-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--footer-muted);
  max-width: 22ch;
  margin: 0 auto 1.25rem;
}

.corp-footer-contact {
  list-style: none;
}

.corp-footer-contact li {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--footer-muted);
  margin-bottom: 0.35rem;
}

.corp-footer-contact a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.corp-footer-contact a:hover {
  color: var(--izci-green-light);
}

.corp-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.corp-footer-social[hidden] {
  display: none !important;
}

.corp-social-link {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--footer-line);
  border-radius: 50%;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.corp-social-link svg {
  width: 1rem;
  height: 1rem;
}

.corp-social-link:hover {
  color: #fff;
  background: var(--izci-green);
  border-color: var(--izci-green);
  transform: translateY(-2px);
}

.corp-footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--footer-text);
  text-align: center;
  width: 100%;
}

.corp-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.corp-footer-col li {
  margin-bottom: 0.5rem;
}

.corp-footer-col a {
  font-size: 0.86rem;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.corp-footer-col a:hover,
.corp-footer-cta:hover {
  color: var(--izci-green-light);
}

.corp-footer-newsletter-lead {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--footer-muted);
  margin: 0 auto 1rem;
  max-width: 22ch;
}

.corp-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  margin: 0 auto 1.25rem;
  width: 100%;
  max-width: 14rem;
}

.corp-newsletter-form input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.55rem 0;
  font-size: 0.86rem;
  color: var(--footer-text);
  outline: none;
}

.corp-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.corp-newsletter-form button {
  border: none;
  background: none;
  padding: 0.35rem;
  cursor: pointer;
  color: var(--izci-green-light);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.corp-newsletter-form button:hover {
  color: var(--izci-green);
  transform: translateX(3px);
}

.corp-footer-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-text);
  text-decoration: none;
}

.corp-footer-bar {
  border-top: 1px solid var(--footer-line);
  background: var(--footer-bg-bar);
}

.corp-footer-bar-inner {
  width: min(var(--corp-max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  font-size: 0.75rem;
  color: var(--footer-muted);
}

.corp-footer-legal {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.corp-footer-legal a {
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 0.75rem;
}

.corp-footer-legal a:hover {
  color: var(--izci-green-light);
}

@media (max-width: 1100px) {
  .corp-footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .corp-footer-brand {
    grid-column: 1 / -1;
  }

  .corp-footer-col--newsletter {
    grid-column: 1 / -1;
    max-width: 20rem;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .corp-header {
    z-index: 80;
    background: #fff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .corp-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: none;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 92vw);
    height: 100vh;
    height: 100svh;
    max-height: none;
    margin: 0;
    padding: calc(100px + env(safe-area-inset-top, 0px)) 0 calc(1rem + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.14);
    overflow-x: hidden;
    overflow-y: hidden;
    z-index: 70;
    -webkit-overflow-scrolling: touch;
    visibility: visible;
    opacity: 1;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.35s ease;
    box-sizing: border-box;
  }

  .corp-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
    overflow-y: auto;
  }

  .corp-nav {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .corp-nav::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .corp-nav > a,
  .corp-nav-item--dropdown > a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.9rem 1.25rem;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1f2933;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
  }

  .corp-nav > a:hover,
  .corp-nav-item--dropdown > a:hover {
    color: #1f2933;
    background: rgba(0, 0, 0, 0.03);
  }

  .corp-nav a.is-active {
    color: var(--primary, #c8884d);
  }

  .corp-nav a.is-active::after {
    display: none;
  }

  .corp-nav-item--dropdown {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .corp-nav-item--dropdown > a {
    display: block;
  }

  .corp-nav-sub {
    position: static;
    transform: none;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: #f7f8f9;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .corp-nav-sub::before {
    display: none;
  }

  .corp-nav-item--dropdown.is-sub-open .corp-nav-sub {
    display: block;
  }

  .corp-nav-sub a {
    padding: 0.72rem 1.25rem 0.72rem 1.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    text-align: left;
    color: #4b5563;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    width: 100%;
    margin: 0;
  }

  .corp-nav-sub a:hover {
    color: #1f2933;
    background: rgba(0, 0, 0, 0.03);
  }

  .corp-nav > a:last-of-type,
  .corp-nav > .corp-nav-item--dropdown:last-child > a {
    border-bottom: 0;
  }

  .corp-nav-sub li:last-child a {
    border-bottom: 0 !important;
  }

  body.corp-nav-open {
    overflow: hidden;
  }

  body.corp-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 60;
    pointer-events: auto;
  }

  .corp-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #2b2b2b;
    border-radius: 10px;
    padding: 13px 15px;
    flex-shrink: 0;
    margin-left: auto;
    position: relative;
    z-index: 81;
  }

  .corp-menu-btn span {
    width: 20px;
    margin: 0;
    background: #fff;
  }

  .ih-about-grid,
  .ih-news-grid {
    grid-template-columns: 1fr;
  }

  .ih-projects-accordion {
    min-height: 20rem;
    height: clamp(18rem, 50vw, 26rem);
  }

  .ih-project-panel:not(.is-active) {
    flex: 0 0 4.5rem;
    width: 4.5rem;
    min-width: 4.5rem;
  }

  .ih-project-panel-label {
    font-size: 0.74rem;
    letter-spacing: 0.03em;
  }

  .ih-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ih-completed-bars {
    grid-template-columns: repeat(2, 1fr);
  }

  .ih-values-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ih-services-grid,
  .ih-yz-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ih-svc-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .corp-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .corp-footer-brand {
    grid-column: 1 / -1;
  }

  .corp-footer-col--newsletter {
    grid-column: 1 / -1;
    max-width: 20rem;
    margin: 0 auto;
  }

  .corp-footer-bar-inner {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.5rem;
  }
}

html:has(.yz-sp-footer),
html:has(.corp-footer),
html:has(.insaat-corporate-home),
html:has(.insaat-corp-page) {
  background-color: #242527 !important;
}

/* Yukarı çık — inşaat sayfaları */
.insaat-corporate-home .scroll-top,
.insaat-corporate-home #scroll-top,
.insaat-corp-page .scroll-top,
.insaat-corp-page #scroll-top {
  position: fixed;
  left: max(1rem, env(safe-area-inset-left, 0px));
  right: auto;
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  z-index: 610;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #3d7a52;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s;
}

.insaat-corporate-home .scroll-top.is-visible,
.insaat-corporate-home #scroll-top.is-visible,
.insaat-corp-page .scroll-top.is-visible,
.insaat-corp-page #scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.insaat-corporate-home .scroll-top:hover,
.insaat-corporate-home #scroll-top:hover,
.insaat-corp-page .scroll-top:hover,
.insaat-corp-page #scroll-top:hover {
  background: #2d5c3f;
}

.insaat-corporate-home .scroll-top svg,
.insaat-corporate-home #scroll-top svg,
.insaat-corp-page .scroll-top svg,
.insaat-corp-page #scroll-top svg {
  width: 22px;
  height: 22px;
}

body.insaat-corporate-home:has(.cookie-banner.visible) .scroll-top,
body.insaat-corporate-home:has(.cookie-banner.visible) #scroll-top,
body.insaat-corp-page:has(.cookie-banner.visible) .scroll-top,
body.insaat-corp-page:has(.cookie-banner.visible) #scroll-top {
  bottom: calc(11rem + env(safe-area-inset-bottom, 0px));
}

body.insaat-corporate-home:has(.izci-wa-widget) .scroll-top,
body.insaat-corporate-home:has(.izci-wa-widget) #scroll-top,
body.insaat-corp-page:has(.izci-wa-widget) .scroll-top,
body.insaat-corp-page:has(.izci-wa-widget) #scroll-top {
  bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 560px) {
  .ih-stats-grid,
  .ih-completed-bars {
    grid-template-columns: 1fr;
  }

  .ih-projects-accordion {
    flex-direction: column;
    height: auto;
    min-height: 0;
    gap: 0.5rem;
  }

  .ih-project-panel:not(.is-active) {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 3.75rem;
    height: 3.75rem;
  }

  .ih-project-panel.is-active {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 15rem;
    height: 15rem;
  }

  .ih-project-panel:not(.is-active) .ih-project-panel-label {
    writing-mode: horizontal-tb;
    transform: none;
    inset: 0;
    padding: 0 1rem;
    justify-content: flex-start;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ih-services-grid,
  .ih-yz-services-grid {
    grid-template-columns: 1fr;
  }

  .ih-svc-stats {
    grid-template-columns: 1fr 1fr;
  }

  .corp-footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .corp-footer-brand,
  .corp-footer-col--newsletter {
    grid-column: auto;
    max-width: none;
  }

  .ih-hero-title {
    max-width: none;
  }
}

/* ── Animasyonlar (İzci Group) ── */
@keyframes corpHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes corpHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes corpKenBurns {
  from {
    background-size: 112%;
  }
  to {
    background-size: 100%;
  }
}

@keyframes corpFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes corpFadeInRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ih-hero.is-ready .ih-hero-kicker {
  animation: corpHeroFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.ih-hero.is-ready .ih-hero-title {
  animation: corpHeroFadeUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.ih-hero.is-ready .ih-hero-lead {
  animation: corpHeroFadeUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.ih-hero.is-ready .ih-btn--hero {
  animation: corpHeroFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

/* Hizmetler sayfası: içerik her zaman görünür (iç sayfada animasyon modülü yok) */
.ih-svc-page .corp-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.corp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

.corp-reveal--left {
  transform: translateX(-28px);
}

.corp-reveal--left.is-visible {
  transform: translateX(0);
}

.corp-reveal--right {
  transform: translateX(28px);
}

.corp-reveal--right.is-visible {
  transform: translateX(0);
}

.corp-reveal.corp-reveal--scale {
  transform: scale(0.96);
}

.corp-reveal.corp-reveal--scale.is-visible {
  transform: scale(1);
}

.corp-reveal.is-visible.ih-service-card:hover,
.corp-reveal.is-visible.ih-project-card:hover {
  transform: translateY(-4px);
}

.ih-about-media.corp-reveal {
  transform: translateX(-32px);
}

.ih-about-media.corp-reveal.is-visible {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .ih-hero.is-ready {
    animation: none;
    background-size: cover;
  }

  .ih-hero.is-ready .ih-hero-kicker,
  .ih-hero.is-ready .ih-hero-title,
  .ih-hero.is-ready .ih-hero-lead,
  .ih-hero.is-ready .ih-btn--hero,
  .corp-header.is-loaded {
    animation: none;
  }

  .corp-reveal,
  .corp-reveal--left,
  .corp-reveal--right,
  .corp-reveal.corp-reveal--scale,
  .ih-about-badge {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ih-section-head-line,
  .ih-section-head--center::after {
    transform: scaleX(1);
    transition: none;
  }

  .ih-news-card:hover img {
    transform: none;
  }
}

/* ── İç sayfalar (kurumsal, iletişim, vb.) ── */
.insaat-corp-page {
  --izci-green: #469B37;
  --izci-green-dark: #006400;
  --izci-green-light: #6bb85e;
  --primary: #006400;
  --primary-light: #469B37;
  --accent: #469B37;
  --accent-hover: #006400;
  --text: #262626;
  --text-muted: #686868;
  --bg: #ffffff;
  --surface: #f5f5f5;
  --border: rgba(70, 155, 55, 0.32);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --font: "Inter", "Segoe UI", Arial, system-ui, -apple-system, sans-serif;
  --font-display: "Roboto Condensed", "Segoe UI", sans-serif;
  --corp-green: var(--primary);
  --corp-green-light: var(--primary-light);
  --corp-text: var(--text);
  --corp-muted: var(--text-muted);
  --corp-line: #e5e5e5;
  --corp-surface: var(--surface);
  --corp-max: 1200px;
  --font-family: var(--font);
  --corp-font: var(--font);
  --corp-display: var(--font-display);

  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

.insaat-corp-page #site-header,
.insaat-corporate-home #site-header,
.insaat-corp-page #site-footer,
.insaat-corporate-home #site-footer {
  display: none !important;
}

body.dogus-layout .site-footer.dogus-footer,
.site-footer.dogus-footer {
  --izci-footer-bg: #232428;
  --izci-footer-bg-bar: #1f2023;
  background: var(--izci-footer-bg) !important;
}

.dogus-footer .footer-bottom {
  background: var(--izci-footer-bg-bar) !important;
}

.insaat-corp-page .corp-header--inner {
  position: sticky;
  top: 0;
}

.insaat-corp-page .corp-header--inner.is-scrolled {
  position: sticky;
}

.insaat-corp-page .corp-page-main,
.insaat-corp-page > main {
  min-height: 50vh;
}

/* ── Faaliyet alanı detay (Yükseliş tarzı) ── */
.ih-svc-detail-page,
.ih-yz-detail {
  background: #fff;
}

.ih-svc-hero--detail {
  min-height: 280px;
}

.ih-yz-detail-main {
  padding: 3.5rem 0 3rem;
}

.ih-yz-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 3rem;
  align-items: start;
}

.ih-yz-detail-about h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--corp-text);
  margin: 0 0 1.25rem;
}

.ih-yz-detail-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--corp-text);
  margin: 0 0 1.5rem;
}

.ih-yz-detail-content {
  color: var(--corp-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.ih-yz-detail-content p {
  margin: 0 0 1.1rem;
}

.ih-yz-detail-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ih-yz-detail-widget {
  background: var(--corp-surface);
  border: 1px solid var(--corp-line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.ih-yz-detail-widget h3,
.ih-yz-detail-widget h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--corp-text);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ih-yz-detail-empty {
  margin: 0;
  color: var(--corp-muted);
  font-size: 0.9375rem;
}

.ih-yz-detail-project-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ih-yz-detail-project {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0.35rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.ih-yz-detail-project:hover {
  background: rgba(70, 155, 55, 0.08);
}

.ih-yz-detail-project__media {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #e8e8e8;
}

.ih-yz-detail-project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ih-yz-detail-project__title {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.35;
  color: var(--corp-text);
}

.ih-yz-detail-widget--areas ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ih-yz-detail-widget--areas li + li {
  border-top: 1px solid var(--corp-line);
}

.ih-yz-detail-widget--areas a {
  display: block;
  padding: 0.7rem 0.25rem;
  text-decoration: none;
  color: var(--corp-text);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.ih-yz-detail-widget--areas li.is-active a,
.ih-yz-detail-widget--areas a:hover {
  color: var(--izci-green-dark);
}

.ih-yz-detail-faq {
  padding: 2.5rem 0 4.5rem;
  background: #f7f7f7;
}

.ih-yz-detail-faq h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  color: var(--corp-text);
  margin: 0 0 1.5rem;
}

.ih-yz-detail-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ih-yz-detail-faq__item {
  background: #fff;
  border: 1px solid var(--corp-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.ih-yz-detail-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--corp-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ih-yz-detail-faq__item summary::-webkit-details-marker {
  display: none;
}

.ih-yz-detail-faq__toggle {
  color: var(--izci-green-dark);
  font-size: 1.25rem;
  line-height: 1;
}

.ih-yz-detail-faq__item[open] .ih-yz-detail-faq__toggle {
  transform: rotate(45deg);
}

.ih-yz-detail-faq__answer {
  padding: 0 1.15rem 1rem;
  color: var(--corp-muted);
  line-height: 1.7;
  font-size: 0.96875rem;
}

.ih-yz-detail-faq__answer p {
  margin: 0;
}

@media (max-width: 960px) {
  .ih-yz-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Yükseliş İnşaat tarzı iç sayfalar (ana sayfa hariç) ── */
.insaat-corp-page.corp-yz-theme > main {
  padding: 0;
  background: #fff;
}

.insaat-corp-page.corp-yz-theme .page-hero-dogus {
  min-height: 17rem;
  padding: 6.5rem 0 2.75rem;
  align-items: flex-end;
}

.insaat-corp-page.corp-yz-theme .page-hero-dogus::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.insaat-corp-page.corp-yz-theme .page-hero-bg-layer img {
  animation: none;
  transform: none;
}

.insaat-corp-page.corp-yz-theme .page-hero-dogus .breadcrumb-dogus {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.85rem;
}

.insaat-corp-page.corp-yz-theme .page-hero-dogus .breadcrumb-dogus a {
  color: rgba(255, 255, 255, 0.88);
}

.insaat-corp-page.corp-yz-theme .page-hero-dogus h1 {
  font-family: var(--corp-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
}

.insaat-corp-page.corp-yz-theme .page-hero-dogus p {
  display: none;
}

.insaat-corp-page.corp-yz-theme .page-hero-dogus .container {
  width: min(1320px, calc(100% - 3rem));
}

.insaat-corp-page.corp-yz-theme .editorial-section {
  padding: 3.5rem 0 5rem;
  background: #fff !important;
}

.insaat-corp-page.corp-yz-theme .editorial-section > .container {
  width: min(1320px, calc(100% - 3rem));
}

/* Kurumsal — yan menü + içerik */
.insaat-corp-page.corp-yz-theme .category-table-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.insaat-corp-page.corp-yz-theme .category-table-sidebar {
  position: sticky;
  top: 110px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: 0.35rem;
}

.insaat-corp-page.corp-yz-theme .category-sidebar-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--corp-muted);
  margin: 0 0 0.75rem;
  padding: 0 0.5rem;
}

.insaat-corp-page.corp-yz-theme .category-table-link {
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--corp-text);
  background: transparent;
}

.insaat-corp-page.corp-yz-theme .category-table-link:hover,
.insaat-corp-page.corp-yz-theme .category-table-link.is-active {
  color: var(--izci-green-dark);
  background: rgba(70, 155, 55, 0.1);
}

.insaat-corp-page.corp-yz-theme .category-table-content .content-block.content-table-row {
  border: 1px solid var(--corp-line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.insaat-corp-page.corp-yz-theme .category-table-content .content-card-media {
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.insaat-corp-page.corp-yz-theme .category-table-content .service-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insaat-corp-page.corp-yz-theme .category-table-content .service-card-caption {
  display: none;
}

.insaat-corp-page.corp-yz-theme .category-table-content .content-table-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.insaat-corp-page.corp-yz-theme .category-table-content .content-card-hover-title,
.insaat-corp-page.corp-yz-theme .category-table-content .content-table-body h2 {
  display: block;
  font-family: var(--corp-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--izci-green-dark);
  margin: 0 0 0.85rem;
}

.insaat-corp-page.corp-yz-theme .category-table-content .content-table-body p {
  color: var(--corp-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

/* Projeler */
.insaat-corp-page.corp-yz-theme .projects-category-shell {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.insaat-corp-page.corp-yz-theme .project-filters {
  position: sticky;
  top: 110px;
}

.insaat-corp-page.corp-yz-theme .project-search {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--corp-line);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.insaat-corp-page.corp-yz-theme .filter-chips--vertical {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.insaat-corp-page.corp-yz-theme .filter-chip {
  text-align: left;
  padding: 0.65rem 0.85rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--corp-text);
  cursor: pointer;
}

.insaat-corp-page.corp-yz-theme .filter-chip:hover,
.insaat-corp-page.corp-yz-theme .filter-chip.is-active {
  background: rgba(70, 155, 55, 0.1);
  color: var(--izci-green-dark);
}

.insaat-corp-page.corp-yz-theme .project-group-title {
  font-family: var(--corp-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--izci-green-dark);
  margin: 0 0 1.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(70, 155, 55, 0.25);
}

.insaat-corp-page.corp-yz-theme .project-group + .project-group {
  margin-top: 3rem;
}

.insaat-corp-page.corp-yz-theme .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.insaat-corp-page.corp-yz-theme .project-card {
  border: 1px solid var(--corp-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insaat-corp-page.corp-yz-theme .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 100, 0, 0.1);
}

.insaat-corp-page.corp-yz-theme .project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.insaat-corp-page.corp-yz-theme .project-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  padding: 1rem 1.15rem 0.35rem;
  color: var(--corp-text);
}

.insaat-corp-page.corp-yz-theme .project-card p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--corp-muted);
}

/* İletişim */
.insaat-corp-page.corp-yz-theme .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.insaat-corp-page.corp-yz-theme .contact-heading {
  font-family: var(--corp-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--izci-green-dark);
  margin: 0 0 0.75rem;
}

.insaat-corp-page.corp-yz-theme .contact-note {
  color: var(--corp-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.insaat-corp-page.corp-yz-theme .contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.insaat-corp-page.corp-yz-theme .contact-form {
  background: var(--corp-surface);
  border: 1px solid var(--corp-line);
  border-radius: var(--radius);
  padding: 2rem;
}

.insaat-corp-page.corp-yz-theme .contact-form .form-group {
  margin-bottom: 1rem;
}

.insaat-corp-page.corp-yz-theme .contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--corp-text);
}

.insaat-corp-page.corp-yz-theme .contact-form input,
.insaat-corp-page.corp-yz-theme .contact-form select,
.insaat-corp-page.corp-yz-theme .contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--corp-line);
  border-radius: 6px;
  font: inherit;
  background: #fff;
}

.insaat-corp-page.corp-yz-theme .contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.insaat-corp-page.corp-yz-theme .btn-primary {
  background: var(--izci-green-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.insaat-corp-page.corp-yz-theme .btn-primary:hover {
  background: var(--izci-green);
}

.insaat-corp-page.corp-yz-theme .contact-map {
  padding-top: 0;
}

.insaat-corp-page.corp-yz-theme .map-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--corp-line);
}

.insaat-corp-page.corp-yz-theme .map-embed-wrap iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* Footer — Yükseliş tarzı */
.corp-footer--yz .corp-footer-main {
  display: none;
}

.corp-footer-yz-main {
  width: min(1320px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 3.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: start;
}

.corp-footer-yz-brand p {
  max-width: 36ch;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--footer-muted);
  text-align: left;
}

.corp-footer-yz-brand .corp-footer-logo {
  margin-bottom: 0;
}

.corp-footer-yz-brand .corp-footer-social {
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.corp-footer-yz-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1.15rem;
  color: var(--footer-text);
  text-align: left;
}

.corp-footer-yz-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.corp-footer-yz-col li {
  margin-bottom: 0.55rem;
}

.corp-footer-yz-col a {
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.corp-footer-yz-col a:hover {
  color: var(--izci-green-light);
}

.corp-footer-contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}

.corp-footer-yz-col .corp-footer-contact li {
  margin-bottom: 1rem;
}

.corp-footer-yz-col .corp-footer-contact span:not(.corp-footer-contact-label) {
  color: var(--footer-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.corp-footer-career {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--izci-green-light) !important;
}

@media (max-width: 960px) {
  .insaat-corp-page.corp-yz-theme .category-table-layout,
  .insaat-corp-page.corp-yz-theme .projects-category-shell,
  .insaat-corp-page.corp-yz-theme .contact-grid,
  .corp-footer-yz-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .insaat-corp-page.corp-yz-theme .category-table-sidebar,
  .insaat-corp-page.corp-yz-theme .project-filters {
    position: static;
  }

  .insaat-corp-page.corp-yz-theme .projects-grid {
    grid-template-columns: 1fr;
  }

  .corp-footer-yz-brand p {
    max-width: none;
  }
}
