:root {
  /* Palette */
  --navy:       #0D1B2A;
  --navy-md:    #162437;
  --navy-lt:    #1E3050;
  --slate:      #2C3E55;
  --gold:       #B8922A;
  --gold-lt:    #D4AA50;
  --gold-pale:  #F0E4C4;
  --white:      #FFFFFF;
  --off-white:  #F7F5F2;
  --smoke:      #EDEAE5;
  --mid:        #8A8880;
  --charcoal:   #333230;

  /* Type */
  --serif:  'Fraunces', Georgia, serif;
  --sans:   'Plus Jakarta Sans', system-ui, sans-serif;

  /* Motion */
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);

  /* Sizing */
  --nav-h:  76px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--white); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── SCROLL PROGRESS ─── */
#prog {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  width: 0%;
  z-index: 10000;
  transition: width .1s linear;
}

/* ─── NAVBAR ─── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background .5s var(--ease), box-shadow .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(184, 146, 42, 0.18);
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-right: auto;
}

.logo-emblem {
  width: 42px; height: 42px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: background .3s;
}
.logo-emblem:hover { background: var(--gold-lt); }
.logo-emblem::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255,255,255,0.3);
}
.logo-emblem i { color: var(--white); font-size: 16px; position: relative; z-index: 1; }

.logo-text-block h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-text-block span {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  display: block;
  margin-top: 4px;
  font-weight: 400;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .3s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }

.nav-btn {
  margin-left: 20px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(184,146,42,0.5);
  color: var(--gold-lt) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  border-radius: 2px !important;
  transition: all .3s !important;
}
.nav-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hb { width: 24px; height: 1.5px; background: var(--white); transition: .3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background image */
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/Arkaplan.png') center/cover no-repeat;
  opacity: 0.12;
  transform: scale(1.06);
  animation: bgDrift 18s ease-in-out infinite alternate;
}

@keyframes bgDrift {
  from { transform: scale(1.06) translateX(0); }
  to   { transform: scale(1.1) translateX(-12px); }
}

/* Grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Vertical accent line */
.hero::before {
  content: '';
  position: absolute;
  left: 48px; top: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(184,146,42,0.3) 30%, rgba(184,146,42,0.3) 70%, transparent);
}

.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: var(--nav-h) 0 0;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184,146,42,0.12);
  border: 1px solid rgba(184,146,42,0.25);
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeSlideUp .8s .2s var(--ease) forwards;
}

.hero-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-lt);
}

.hero-badge i { color: var(--gold); font-size: 10px; }

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp .9s .4s var(--ease) forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-h1 strong {
  font-weight: 700;
  color: var(--white);
  display: block;
}

.hero-p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
  opacity: 0;
  animation: fadeSlideUp .9s .6s var(--ease) forwards;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp .9s .8s var(--ease) forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* Hero right — stat cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: fadeSlideUp .9s 1s var(--ease) forwards;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 2px solid var(--gold);
  padding: 24px 28px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
  transition: background .3s, transform .3s var(--ease);
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-card:hover { background: rgba(255,255,255,0.07); transform: translateX(4px); }

.hc-icon {
  width: 44px; height: 44px;
  background: rgba(184,146,42,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
}
.hc-icon i { color: var(--gold-lt); font-size: 18px; }

.hc-text h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.hc-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* Hero bottom bar */
.hero-bottom {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: 1fr;
}

.hstat {
  padding: 24px 0;
  border-right: 1px solid rgba(255,255,255,0.07);
  padding-right: 32px;
  padding-left: 32px;
  text-align: center;
}
.hstat:first-child { padding-left: 35px; text-align: center; }
.hstat:last-child  { border-right: none; }

.hstat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hstat-num sup { font-size: 18px; color: var(--gold-lt); }
.hstat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
}

@keyframes fadeSlideUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ─── SECTION SHARED ─── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow-line { width: 28px; height: 2px; background: var(--gold); border-radius: 1px; }
.eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--gold); }
.section-title strong { font-weight: 700; }

.body-text {
  font-size: 15px;
  line-height: 1.8;
  color: #5A5856;
  font-weight: 300;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image side */
.about-img-side {
  position: relative;
}

.about-img-frame {
  position: relative;
  z-index: 1;
}

.about-img-frame img {
  width: 100%;
  display: block;
  border-radius: 3px;
  box-shadow: 0 24px 60px rgba(13,27,42,0.12);
}

/* Floating accent box */
.about-accent-box {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--navy);
  padding: 28px 32px;
  z-index: 2;
  min-width: 180px;
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.aab-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.aab-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
}

/* Corner decoration */
.about-corner {
  position: absolute;
  top: -16px; left: -16px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 2;
  border-radius: 1px;
}

/* Text side */
.about-text-side {}

.about-text-side .section-title { font-size: clamp(32px, 3.5vw, 48px); }

.about-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--smoke);
  transition: padding-left .3s var(--ease);
}
.about-point:first-child { border-top: 1px solid var(--smoke); }
.about-point:hover { padding-left: 8px; }

.ap-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
  transition: background .3s;
}
.about-point:hover .ap-icon { background: var(--gold); }
.ap-icon i { color: var(--gold-lt); font-size: 15px; transition: color .3s; }
.about-point:hover .ap-icon i { color: var(--white); }

.ap-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: .3px;
}
.ap-content p { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ─── SERVICES ─── */
.services {
  background: var(--navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative corner circles */
.services::before,
.services::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.services::before {
  width: 500px; height: 500px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(184,146,42,0.08), transparent 70%);
}
.services::after {
  width: 400px; height: 400px;
  bottom: -150px; left: -150px;
  background: radial-gradient(circle, rgba(184,146,42,0.06), transparent 70%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.services .section-title {
  color: var(--white);
  font-size: clamp(32px, 3.5vw, 48px);
}
.services .body-text { color: rgba(255,255,255,0.45); margin-bottom: 40px; }

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: default;
  transition: padding-left .3s var(--ease);
}
.svc-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.svc-item:hover { padding-left: 10px; }

.svc-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .3s;
}
.svc-item:hover .svc-dot { transform: scale(1.6); }

.svc-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  flex-grow: 1;
  letter-spacing: .3px;
  transition: color .3s;
}
.svc-item:hover .svc-name { color: var(--white); }

.svc-arr {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  transition: color .3s, transform .3s;
}
.svc-item:hover .svc-arr { color: var(--gold-lt); transform: translateX(4px); }

/* Bu kodları CSS kısmındaki mevcut .svc-img-panel ve .svc-img-main ile değiştir */

.svc-img-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; /* Resim etrafında nefes alacak alan */
}

.svc-img-main {
  width: 100%;
  max-width: 550px; /* Resmin çok büyümesini engeller */
  height: auto;
  max-height: 80vh; /* Ekran yüksekliğinin %70'inden fazla olamaz */
  object-fit: contain; /* Resmin bozulmadan kutuya sığmasını sağlar */
  border-radius: 3px;
  filter: brightness(0.95);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.svc-img-badge {
  position: absolute;
  top: 24px; 
  left: -20px; /* Biraz daha sola çekerek derinlik algısını artırıyoruz */
  background: var(--gold);
  padding: 14px 20px;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 10; /* Resmin kesinlikle önünde durmasını sağlar */
}
.sib-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 2px;
}
.sib-val {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* ─── PRODUCTS ─── */
.products {
  background: var(--off-white);
  padding: 120px 0;
}

.products-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.products-header .section-title { font-size: clamp(28px, 3vw, 42px); margin-bottom: 0; }

/* Search */
.search-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid #DDD;
  border-radius: 2px;
  min-width: 260px;
  transition: border-color .3s;
}
.search-widget:focus-within { border-color: var(--gold); }
.search-widget i { color: var(--mid); font-size: 13px; }
.search-widget input {
  border: none; background: transparent; outline: none;
  font-family: var(--sans); font-size: 13px; color: var(--charcoal); width: 100%;
}
.search-widget input::placeholder { color: #BBB; }

/* Filters */
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.f-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid #CCC;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--mid);
  cursor: pointer;
  transition: all .25s;
}
.f-btn:hover { border-color: var(--navy); color: var(--navy); }
.f-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Cards */
.swiper { padding-bottom: 56px !important; }

.prod-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13,27,42,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
  border: 1px solid transparent;
}
.prod-card:hover {
  box-shadow: 0 16px 48px rgba(13,27,42,0.14);
  transform: translateY(-5px);
  border-color: rgba(184,146,42,0.2);
}

.pc-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}
.pc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.prod-card:hover .pc-img img { transform: scale(1.04); }

.pc-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--gold-lt);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 2px;
}

.pc-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.pc-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}
.pc-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mid);
  flex-grow: 1;
  margin-bottom: 20px;
}

.pc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--smoke);
}
.pc-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s, color .25s;
}
.pc-link:hover { gap: 10px; color: var(--gold-lt); }
.pc-hash { font-size: 11px; color: #CCC; }

/* Swiper nav */
.swiper-button-next,
.swiper-button-prev {
  color: var(--navy) !important;
  background: var(--white);
  width: 44px !important; height: 44px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 1px solid var(--smoke);
}
.swiper-button-next:after,
.swiper-button-prev:after { font-size: 14px !important; font-weight: 700; }
.swiper-button-next:hover,
.swiper-button-prev:hover { background: var(--navy); color: var(--white) !important; }

.swiper-pagination-bullet { background: #CCC !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; width: 24px !important; border-radius: 4px !important; }




/* ─── REFERENCES ─── */
.refs {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--smoke);
}

.refs-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}

.refs-header .section-title { font-size: clamp(28px, 3vw, 42px); margin-bottom: 0; }

.refs-meta {
  text-align: right;
  padding-bottom: 4px;
}
.refs-meta span {
  display: block;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
}
.refs-meta p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--mid);
}

.referenceSwiper { padding: 8px 0 48px !important; }
.referenceSwiper .swiper-slide { display: flex; justify-content: center; }

.ref-tile {
  width: 190px;
  padding: 24px 16px 20px;
  border: 1px solid var(--smoke);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--white);
  transition: all .3s var(--ease);
}
.ref-tile:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(13,27,42,0.08);
  transform: translateY(-4px);
}

.ref-logo-box {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-bottom: 1px solid var(--smoke);
}
.ref-logo-box img {
  max-width: 100%; max-height: 56px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.65;
  transition: all .3s;
}
.ref-tile:hover .ref-logo-box img { filter: none; opacity: 1; }

.ref-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--mid);
  text-align: center;
  line-height: 1.4;
  letter-spacing: .3px;
}

/* ─── CONTACT ─── */
.contact {
  background: var(--navy-md);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Subtle diagonal stripe */
.contact::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.015) 50%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .section-title {
  color: var(--white);
  font-size: clamp(32px, 3.5vw, 48px);
}
.contact-info .body-text { color: rgba(255,255,255,0.45); margin-bottom: 48px; }

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.ii-icon {
  width: 40px; height: 40px;
  background: rgba(184,146,42,0.12);
  border: 1px solid rgba(184,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background .3s;
}
.info-item:hover .ii-icon { background: var(--gold); border-color: var(--gold); }
.ii-icon i { color: var(--gold-lt); font-size: 14px; transition: color .3s; }
.info-item:hover .ii-icon i { color: var(--white); }

.ii-text h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-lt);
  margin-bottom: 5px;
}
.ii-text p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gold);
  padding: 44px 40px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fg { margin-bottom: 22px; }
.fg label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  border-radius: 2px;
  transition: border-color .3s, background .3s;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.09); }
.fg input::placeholder,
.fg textarea::placeholder { color: rgba(255,255,255,0.25); }
.fg select option { background: var(--navy-lt); }
.fg textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184,146,42,0.3); }
.btn-submit i { font-size: 12px; }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  padding: 60px 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .logo-emblem {
  width: 36px; height: 36px;
  margin-bottom: 16px;
  background: var(--gold);
}
.footer-brand .logo-emblem i { font-size: 14px; }

.footer-brand h2 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 220px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color .3s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: .5px;
}
.footer-bottom .footer-legal {
  display: flex;
  gap: 24px;
}
.footer-bottom .footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color .3s;
}
.footer-bottom .footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ─── REVEAL ─── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal   { transform: translateY(32px); }
.reveal-l { transform: translateX(-32px); }
.reveal-r { transform: translateX(32px); }

.reveal.in, .reveal-l.in, .reveal-r.in {
  opacity: 1;
  transform: translate(0);
}

/* ─── MOBILE ─── */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }

  .about-grid,
  .services-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .products-header { grid-template-columns: 1fr; }
  .refs-header { grid-template-columns: 1fr; }
  .refs-meta { text-align: left; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); right: 0;
    width: 75%;
    height: calc(100vh - var(--nav-h));
    background: var(--navy-lt);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0;
    gap: 0;
    border-left: 1px solid rgba(184,146,42,0.2);
    box-shadow: -12px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 32px; font-size: 13px; }
  .nav-btn { margin-left: 0; padding: 16px 32px; border: none; border-bottom: 1px solid rgba(255,255,255,0.06); border-radius: 0 !important; color: var(--gold-lt) !important; }
  .hamburger { display: flex; }

  .hero-stats { grid-template-columns: 1fr; }
  .hero-body { padding-top: var(--nav-h); }
  .hero-content { padding: 48px 20px; }
  .hero-btns { flex-direction: column; }

  .about-accent-box { right: -10px; bottom: -10px; padding: 20px; }
  .contact-form { padding: 32px 20px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
