/* ============================================================
   VERTEX GROUP — Main Stylesheet
   ============================================================ */
:root {
  --navy:    #1e3a5f;
  --navy-d:  #152c4a;
  --navy-l:  #2a4f80;
  --navy-p:  #e8eef5;
  --navy-p2: #d0dcea;
  --green:   #4a8c3f;
  --green-d: #3a6e30;
  --green-l: #5aaa4d;
  --green-p: #eaf4e8;
  --white:   #ffffff;
  --off:     #f3f5f8;
  --navy-grad: linear-gradient(135deg, #1e3a5f 0%, #0d2545 50%, #1a3558 100%);
  --navy-d-grad: linear-gradient(135deg, #0d1f35 0%, #162d4a 60%, #0a1828 100%);
  --section-a: #ffffff;
  --section-b: #eef4ff;
  --border:  #e2e8f0;
  --text:    #1a2332;
  --muted:   #64748b;
  --light:   #94a3b8;
  --radius:  10px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: #eef4ff;
  line-height: 1.7;
  font-size: 15px;
}

body.rtl { direction: rtl; text-align: right; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── LAYOUT ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 5rem 0; }
.section-white { background: var(--section-a); }
.section-alt   { background: var(--section-b); }
.section-navy  { background: var(--navy-grad); }
.text-center   { text-align: center; }
.two-col       { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-top   { align-items: start; }
.two-col-center{ align-items: center; }
.three-col     { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.cards-3       { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cards-4       { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.products-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── HEADER ──────────────────────────────────────────── */
.hdr {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 66px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-box {
  width: 38px; height: 38px; background: var(--navy);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
}
.logo-name { font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -.3px; }
.logo-name span { color: var(--green); }
.logo-tag { font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; display: block; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 7px 14px; font-size: 17px; color: var(--muted);
  border-radius: 8px; font-weight: 600; transition: all .18s;
}
.nav a:hover, .nav a.on { color: var(--navy); background: var(--navy-p); }
.nav a.ncta { background: var(--navy) !important; color: #fff !important; }
.nav a.ncta:hover { background: var(--navy-l) !important; }
.hdr-right { display: flex; align-items: center; gap: 10px; }
.lang-pill { display: flex; background: #f1f5f9; border-radius: 8px; padding: 3px; }
.lb {
  background: none; border: none; padding: 4px 9px;
  font-size: 11px; font-weight: 700; color: var(--muted);
  border-radius: 6px; transition: all .15s; letter-spacing: .5px;
}
.lb.on { background: var(--white); color: var(--navy); box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.hamburger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; padding: 4px;
}
.hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

/* ── HERO SLIDER ─────────────────────────────────────── */
.hero-slider {
  position: relative; overflow: hidden;
  min-height: 88vh; background: var(--navy-grad);
}
.hs-track { display: flex; min-height: 88vh; transition: transform .5s ease; }
.hs-slide { min-width: 100%; min-height: 88vh; display: flex; align-items: center; position: relative; flex-shrink: 0; }
.hs-bg-default, .hs-bg-img {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1929, var(--navy));
}
.hs-bg-img { background-size: cover; background-position: center; }
.hs-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.hs-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,58,95,.92) 45%, rgba(30,58,95,.3)); }
.hs-content { position: relative; z-index: 2; padding: 0 2.5rem 0 3rem; max-width: 800px; }
.hs-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(74,140,63,.2); border: 1px solid rgba(74,140,63,.4);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 1.5rem;
}
.hs-dot { width: 7px; height: 7px; background: var(--green-l); border-radius: 50%; }
.hs-title { font-size: 50px; font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -2px; margin-bottom: 1.1rem; white-space: nowrap; }
.hs-title em { color: var(--green-l); font-style: normal; }
.hs-subtitle { font-size: 15px; color: rgba(255,255,255,.62); line-height: 1.8; margin-bottom: 1.75rem; max-width: 440px; }
.hs-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hs-controls {
  position: absolute; bottom: 2rem; left: 3rem; right: 3rem;
  display: flex; align-items: center; justify-content: space-between; z-index: 5;
}
.hs-dots { display: flex; gap: 8px; }
.hs-dot-btn { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; transition: all .3s; cursor: pointer; }
.hs-dot-btn.active { background: var(--green); width: 24px; border-radius: 4px; }
.hs-arrows { display: flex; gap: 8px; }
.hs-arrow {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.hs-arrow:hover { background: rgba(255,255,255,.2); }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-green {
  background: var(--green); color: #fff; border: none;
  padding: 13px 26px; border-radius: var(--radius); font-size: 13px; font-weight: 700; transition: all .2s;
}
.btn-green:hover { background: var(--green-d); }
.btn-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.2); padding: 13px 26px;
  border-radius: var(--radius); font-size: 13px; font-weight: 700; transition: all .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-navy {
  background: var(--navy); color: #fff; border: none;
  padding: 10px 22px; border-radius: var(--radius); font-size: 12px; font-weight: 700; transition: all .2s;
}
.btn-navy:hover { background: var(--navy-l); }
.btn-full { width: 100%; text-align: center; }

/* ── CHIPS / BADGES ──────────────────────────────────── */
.chip {
  display: inline-block; background: var(--green-p); color: var(--green-d);
  font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: .9rem;
}
.chip-white { background: rgba(74,140,63,.15); color: #7dc872; }

/* ── SECTION TITLES ──────────────────────────────────── */
.section-title { font-size: 36px; font-weight: 800; color: var(--navy); letter-spacing: -1px; line-height: 1.15; }
.section-title-white { color: #fff; }
.section-desc { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-desc-white { color: rgba(255,255,255,.6); }
.section-header { margin-bottom: 3rem; }
.section-header-flex { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; }
.divider-line { width: 48px; height: 3px; background: var(--green); border-radius: 2px; margin: 1rem 0; }

/* ── INFO CARDS ──────────────────────────────────────── */
.info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden;
  transition: all .25s; cursor: pointer;
}
.info-card:hover { border-color: var(--navy); transform: translateY(-4px); }
.info-card-img { border-radius: 12px; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 1.5rem; background: var(--navy-p); display: flex; align-items: center; justify-content: center; }
.info-card-img img, .info-card-img video { width: 100%; height: 100%; object-fit: cover; }
.info-card-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: var(--navy-p); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.info-card-icon-default { font-size: 22px; color: var(--navy); }
.info-card-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.info-card-body { font-size: 13px; color: var(--muted); line-height: 1.7; }
.info-card-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--green); margin-top: 1.2rem; text-transform: uppercase; letter-spacing: .5px; }
.info-card-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--navy); transform: scaleX(0); transition: transform .25s; transform-origin: left; }
.info-card:hover .info-card-accent { transform: scaleX(1); }

/* ── VIDEO ───────────────────────────────────────────── */
.video-wrap {
  max-width: 800px; margin: 2rem auto 0;
  position: relative; background: #0a1929;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.08);
}
.video-placeholder { position: relative; z-index: 2; text-align: center; }
.vid-play-btn {
  width: 88px; height: 88px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  border: none; transition: all .3s;
}
.vid-play-btn:hover { background: var(--green-d); transform: scale(1.06); }
.vpb-tri { width: 0; height: 0; border-style: solid; border-width: 17px 0 17px 28px; border-color: transparent transparent transparent #fff; margin-left: 6px; }
.vid-label { font-size: 13px; color: rgba(255,255,255,.5); letter-spacing: 1px; }
.vid-dur { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 100px; padding: 5px 14px; margin-top: 1rem; font-size: 12px; color: rgba(255,255,255,.5); }
.vid-live-dot { width: 6px; height: 6px; background: var(--green-l); border-radius: 50%; }
.video-player, .video-iframe { width: 100%; height: 100%; border: none; }

/* ── COUNTERS ────────────────────────────────────────── */
.counters-section { background: var(--navy-grad); }
.counters-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.08); }
.counter-cell { background: var(--navy); padding: 2.5rem 2rem; text-align: center; }
.counter-num { font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1; }
.counter-num em { font-style: normal; color: var(--green-l); font-size: 26px; }
.counter-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 8px; }

/* ── VISION BOX ──────────────────────────────────────── */
.vis-box-wrap { }
.vis-box { background: var(--navy-d); border-radius: var(--radius-lg); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.vis-grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 32px 32px; }
.vis-center { position: relative; z-index: 1; text-align: center; }
.vis-rings { display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.vis-ring-outer { width: 160px; height: 160px; border-radius: 50%; border: 1.5px solid rgba(74,140,63,.3); display: flex; align-items: center; justify-content: center; }
.vis-ring-mid   { width: 120px; height: 120px; border-radius: 50%; border: 1.5px solid rgba(74,140,63,.5); display: flex; align-items: center; justify-content: center; }
.vis-ring-inner { width: 80px; height: 80px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; }
.vis-year  { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,.4); text-transform: uppercase; }
.vis-label { font-size: 14px; font-weight: 700; color: #fff; margin-top: .5rem; }
.vision-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.vision-stat { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; }
.vs-num { font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.vs-num span { font-size: 16px; color: var(--green); }
.vs-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.tcard { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.tcard-stars { color: var(--green); font-size: 14px; margin-bottom: .75rem; }
.tcard-quote { font-size: 32px; color: var(--navy-p2); line-height: 1; margin-bottom: .75rem; font-family: serif; }
.tcard-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 10px; }
.tcard-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.tcard-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.tcard-role { font-size: 11px; color: var(--muted); }

/* ── CERTIFICATES ────────────────────────────────────── */
.cert-row { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-top: 2.5rem; }
.cert-badge { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 2rem; text-align: center; min-width: 140px; }
.cert-icon-default { display: flex; justify-content: center; margin-bottom: .5rem; }
.cert-name { font-size: 12px; font-weight: 700; color: var(--navy); }
.cert-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero { padding: 5rem 0; background: var(--navy-grad); }
.page-hero .container { max-width: 1200px; }
.page-hero-badge { background: var(--green); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; display: inline-block; margin-bottom: 1.25rem; }
.page-hero-title { font-size: 46px; font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 1rem; white-space: nowrap; }
.page-hero-title em { color: var(--green-l); font-style: normal; }
.page-hero-desc { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.8; }

/* ── ABOUT ───────────────────────────────────────────── */
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 320px; }
.asg-main { background: var(--green); border-radius: 14px; display: flex; align-items: center; justify-content: center; grid-row: span 2; text-align: center; }
.asg-num { font-size: 52px; font-weight: 800; color: #fff; }
.asg-label { font-size: 11px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }
.asg-cell { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; text-align: center; }
.asg-num-sm { font-size: 32px; font-weight: 800; color: #fff; }
.asg-num-sm em { font-style: normal; color: var(--green-l); font-size: 18px; }
.asg-label-sm { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── TIMELINE ────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.tl-item::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 0; width: 1px; background: var(--border); }
.tl-item:last-child::before { display: none; }
.tl-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-p); border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: var(--navy); flex-shrink: 0; position: relative; z-index: 1; }
.tl-dot-green { background: var(--green-p); border-color: var(--green); color: var(--green-d); }
.tl-body { }
.tl-year { font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
.tl-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.tl-text { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── VALUES ──────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value-card { background: var(--off); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; transition: all .2s; }
.value-card:hover { background: var(--navy-p); border-color: var(--navy); }
.value-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.value-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.value-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── TEAM ────────────────────────────────────────────── */
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s; }
.team-card:hover { transform: translateY(-3px); border-color: var(--navy); }
.tc-photo { aspect-ratio: 1; background: var(--navy-p); display: flex; align-items: center; justify-content: center; position: relative; background-size: cover; background-position: center; }
.tc-initials { font-size: 36px; font-weight: 800; color: var(--navy); }
.tc-badge { position: absolute; bottom: 12px; right: 12px; background: var(--green); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.tc-body { padding: 1.25rem; }
.tc-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.tc-title { font-size: 12px; color: var(--muted); }
.tc-bio { font-size: 12px; color: var(--muted); line-height: 1.6; margin-top: 5px; }
.tc-links { display: flex; gap: 6px; margin-top: .75rem; }
.tc-link { width: 28px; height: 28px; background: var(--navy-p); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--navy); transition: all .2s; }
.tc-link:hover { background: var(--navy); color: #fff; }

/* ── PRODUCTION ──────────────────────────────────────── */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.spec-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.spec-val { font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -1px; }
.spec-val em { font-style: normal; color: var(--green-l); font-size: 20px; }
.spec-label { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 3rem; }
.process-steps::before { content: ''; position: absolute; top: 27px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border); }
.proc-step { text-align: center; padding: 0 .75rem; }
.proc-num { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; position: relative; z-index: 1; border: 3px solid var(--white); font-size: 18px; font-weight: 800; color: #fff; }
.proc-num-n { background: var(--navy); }
.proc-num-g { background: var(--green); }
.proc-h { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.proc-p { font-size: 12px; color: var(--muted); line-height: 1.6; }
.facility-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s; }
.facility-card:hover { border-color: var(--green); transform: translateY(-3px); }
.facility-img { aspect-ratio: 16/9; background: var(--navy-p); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.facility-img img { width: 100%; height: 100%; object-fit: cover; }
.facility-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.facility-img-overlay { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; }
.facility-num-badge, .facility-video-badge { background: var(--navy); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.facility-video-badge { background: rgba(0,0,0,.6); }
.facility-body { padding: 1.25rem; }
.facility-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.facility-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.facility-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.facility-location { font-size: 12px; color: var(--muted); }
.facility-area { font-size: 12px; font-weight: 700; color: var(--green); }

/* ── PRODUCTS ────────────────────────────────────────── */
.prod-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.pf-btn { background: var(--white); border: 1.5px solid var(--border); color: var(--muted); padding: 7px 18px; border-radius: 100px; font-size: 12px; font-weight: 700; transition: all .2s; letter-spacing: .3px; }
.pf-btn.on, .pf-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s; }
.product-card:hover { border-color: var(--green); transform: translateY(-3px); }
.pcard-img { aspect-ratio: 3/4; background: var(--navy-p); display: flex; align-items: center; justify-content: center; position: relative; background-size: cover; background-position: center; }
.pcard-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 100px; letter-spacing: .5px; }
.nb { background: var(--navy); color: #fff; }
.gb { background: var(--green); color: #fff; }
.pcard-placeholder { font-size: 40px; color: var(--navy-p2); }
.pcard-body { padding: 1.25rem; }
.pcard-name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.pcard-sub { font-size: 12px; color: var(--muted); }
.pcard-footer { display: flex; align-items: center; justify-content: space-between; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.pcard-price { font-size: 13px; font-weight: 700; color: var(--navy); }
.pcard-link { font-size: 12px; font-weight: 700; color: var(--green); }
.empty-state { text-align: center; padding: 3rem; color: var(--muted); }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info { }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.ci-icon { width: 44px; height: 44px; background: var(--navy-p); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-label { font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 3px; }
.ci-val { font-size: 14px; color: var(--text); font-weight: 500; }
.ci-val a { color: var(--navy); }
.map-block { border-radius: var(--radius-lg); overflow: hidden; height: 280px; margin-top: 1.5rem; border: 1px solid var(--border); }
.map-placeholder { background: var(--navy-p); height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.map-grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(var(--navy-p2) 1px,transparent 1px),linear-gradient(90deg,var(--navy-p2) 1px,transparent 1px); background-size: 40px 40px; }
.map-pin { position: relative; z-index: 1; width: 48px; height: 48px; background: var(--navy); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; }
.map-pin-dot { width: 18px; height: 18px; background: #fff; border-radius: 50%; transform: rotate(45deg); }
.map-label { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 10px; z-index: 1; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: .25rem; }
.form-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; }
.fg { margin-bottom: 1.2rem; }
.fg label { font-size: 11px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .8px; display: block; margin-bottom: 7px; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--off); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 14px; font-size: 13px; color: var(--text);
  font-family: inherit; transition: border-color .2s; resize: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { outline: none; border-color: var(--navy); background: #ffffff; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg-check { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; font-size: 12px; color: var(--muted); }
.fg-check input { flex-shrink: 0; margin-top: 2px; accent-color: var(--navy); }
.req { color: var(--green); }
.alert { padding: .875rem 1.25rem; border-radius: var(--radius); font-size: 13px; font-weight: 600; margin-bottom: 1rem; }
.alert-success { background: var(--green-p); color: var(--green-d); border: 1px solid rgba(74,140,63,.3); }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.office-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; }
.office-flag { font-size: 22px; margin-bottom: .75rem; }
.office-name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.office-addr { font-size: 12px; color: var(--muted); line-height: 1.7; }
.office-phone { display: block; font-size: 12px; color: var(--navy); margin-top: .5rem; font-weight: 600; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: var(--navy-d-grad); padding: 2.5rem 2.5rem 1.25rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.2fr;
  gap: 2.5rem;
  max-width: 960px;
  margin-bottom: 2rem;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: .75rem; }
.footer-logo-img { max-height: 36px; }
.fl-icon { width: 30px; height: 30px; background: rgba(255,255,255,.1); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.fl-name { font-size: 15px; font-weight: 800; color: #fff; }
.fl-name span { color: var(--green-l); }
.footer-desc { font-size: 12px; color: rgba(255,255,255,.3); line-height: 1.7; max-width: 180px; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 7px; }
.fsob { width: 28px; height: 28px; border-radius: 7px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; color: rgba(255,255,255,.4); font-size: 11px; font-weight: 700; }
.fsob:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* Sayfalar - 2x3 grid */
.footer-pages { }
.footer-pages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 1rem; margin-top: .5rem; }
.footer-page-link { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 500; transition: color .2s; padding: 3px 0; }
.footer-page-link:hover { color: rgba(255,255,255,.85); }

/* İletişim */
.footer-contact { }
.footer-col-title { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: .75rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }

/* Sertifikalar */
.footer-certs { display: flex; flex-wrap: wrap; gap: 5px; }
.footer-cert-badge { background: rgba(74,140,63,.12); border: 1px solid rgba(74,140,63,.25); border-radius: 5px; padding: 3px 9px; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .3px; }

/* Alt bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1rem; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.2); }

/* ── RESPONSIVE ──────────────────────────────────────── */
/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-4, .products-grid-4 { grid-template-columns: repeat(2,1fr); }
  .counters-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: #fff; padding: 1rem; border-bottom: 1px solid var(--border); z-index: 50; gap: 0; }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .two-col, .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .cards-3, .cards-4, .products-grid-4 { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .hs-title { font-size: 36px; white-space: normal; }
  .section-title { font-size: 28px; }
  .page-hero-title { font-size: 32px; white-space: normal; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .about-stat-grid { height: 220px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hdr-inner { padding: 0 1rem; }
  .hs-content { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .hs-title { font-size: 28px; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* İletişim sayfası - info gizliyse form tam genişlik */
.contact-layout-single {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}
.contact-layout-single .form-card {
  width: 100%;
  padding: 3rem;
}
@media (max-width: 768px) {
  .contact-layout-single .form-card { padding: 1.5rem; }
}

/* Prose / Serbest HTML Bloğu */
.prose-block {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  width: 100%;
}
.prose-block h1, .prose-block h2, .prose-block h3 {
  color: var(--navy); font-weight: 700; margin: 1.5rem 0 .75rem; letter-spacing: -.5px;
}
.prose-block h2 { font-size: 26px; }
.prose-block h3 { font-size: 20px; }
.prose-block p  { margin-bottom: 1rem; color: var(--muted); }
.prose-block ul, .prose-block ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--muted); }
.prose-block li { margin-bottom: .4rem; line-height: 1.7; }
.prose-block strong { color: var(--navy); font-weight: 700; }
.prose-block a  { color: var(--green); font-weight: 600; }
.prose-block a:hover { text-decoration: underline; }
.prose-block blockquote {
  border-left: 3px solid var(--green);
  padding: .75rem 1.25rem;
  background: var(--off);
  border-radius: 0 8px 8px 0;
  margin: 1.25rem 0;
  color: var(--navy);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════
   TEKLİF KONFİGÜRATÖRÜ
   ══════════════════════════════════════════════════════ */
.quote-page { background: var(--navy-d-grad); min-height: 80vh; }

.quote-header { background: rgba(0,0,0,.15); padding: 3rem 2.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.quote-header-inner { max-width: 900px; margin: 0 auto; }
.quote-title { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: .4rem; }
.quote-subtitle { font-size: 14px; color: rgba(255,255,255,.5); }

.quote-wrap { max-width: 900px; margin: 0 auto; padding: 2rem 2.5rem 4rem; }

/* ADIM GÖSTERGESİ */
.quote-steps { display: flex; gap: 0; margin-bottom: 2rem; background: rgba(0,0,0,.2); border-radius: 10px; overflow: hidden; }
.qs-item { flex: 1; display: flex; flex-direction: column; align-items: center; padding: .75rem .5rem; cursor: pointer; transition: all .2s; opacity: .4; }
.qs-item.active, .qs-item.completed { opacity: 1; }
.qs-item.active { background: rgba(255,255,255,.08); }
.qs-item.completed { background: rgba(74,140,63,.15); }
.qs-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.qs-item.active .qs-num { background: var(--navy); border: 2px solid #fff; }
.qs-item.completed .qs-num { background: var(--green); }
.qs-label { font-size: 10px; color: rgba(255,255,255,.6); text-align: center; letter-spacing: .3px; }
.qs-item.active .qs-label { color: #fff; font-weight: 600; }

/* PANEL */
.quote-step-panel { display: none; }
.quote-step-panel.active { display: block; }
.qp-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }

/* KARTLAR */
.qp-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-bottom: 1.5rem; }
.qcard {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 1.25rem 1rem; text-align: center; cursor: pointer;
  transition: all .2s; min-height: 140px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.qcard:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.qcard.selected { background: rgba(30,58,95,.8); border-color: var(--green); }
.qcard-icon { font-size: 28px; margin-bottom: .6rem; line-height: 1; }
.qcard-icon svg { width: 32px; height: 32px; stroke: #fff; display: block; margin: 0 auto; }
.qcard-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.qcard-sub { font-size: 11px; color: rgba(255,255,255,.4); }

/* MİKTAR */
.qp-qty-wrap { background: rgba(0,0,0,.2); border-radius: 14px; padding: 2rem; margin-bottom: 1.5rem; text-align: center; }
.qp-qty-display { margin-bottom: 2rem; }
.qp-qty-display span { font-size: 52px; font-weight: 800; color: #fff; letter-spacing: -2px; }
.qty-unit { font-size: 20px !important; color: rgba(255,255,255,.4) !important; margin-left: 8px; letter-spacing: 0 !important; }
.qty-slider { width: 100%; height: 6px; appearance: none; background: rgba(255,255,255,.15); border-radius: 3px; outline: none; cursor: pointer; }
.qty-slider::-webkit-slider-thumb { appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--green); cursor: pointer; border: 3px solid #fff; }
.qty-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--green); cursor: pointer; border: 3px solid #fff; }
.qty-range-labels { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.3); margin-top: .5rem; }
.qty-presets { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 1.5rem; }
.qty-preset { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 100px; padding: 5px 14px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6); cursor: pointer; transition: all .15s; }
.qty-preset:hover, .qty-preset.active { background: var(--green); border-color: var(--green); color: #fff; }

/* FORM */
.qp-form { margin-bottom: 1.5rem; }
.qfg { margin-bottom: 1rem; }
.qfg label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .8px; display: block; margin-bottom: 6px; }
.qfg input, .qfg textarea { width: 100%; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12); border-radius: 10px; padding: 11px 14px; font-size: 13px; color: #fff; font-family: inherit; transition: border-color .2s; resize: none; }
.qfg input::placeholder, .qfg textarea::placeholder { color: rgba(255,255,255,.25); }
.qfg input:focus, .qfg textarea:focus { outline: none; border-color: var(--green); background: rgba(255,255,255,.09); }
.qfg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.req { color: var(--green-l); }

/* ÖZET */
.qsummary-grid { background: rgba(0,0,0,.2); border-radius: 14px; padding: 1.5rem; margin-bottom: 1.5rem; }
.qsummary-row { display: flex; justify-content: space-between; align-items: center; padding: .625rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.qsummary-row:last-child { border-bottom: none; }
.qsummary-label { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; }
.qsummary-value { font-size: 13px; color: #fff; font-weight: 600; text-align: right; max-width: 60%; }

/* BUTONLAR */
.qp-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.07); }
.qbtn { padding: 11px 24px; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; font-family: inherit; transition: all .2s; }
.qbtn-back { background: rgba(255,255,255,.07); color: rgba(255,255,255,.6); }
.qbtn-back:hover { background: rgba(255,255,255,.12); color: #fff; }
.qbtn-next { background: var(--green); color: #fff; }
.qbtn-next:hover { background: var(--green-d); }
.qbtn-next:disabled { opacity: .4; cursor: not-allowed; }
.qbtn-submit { background: var(--green); color: #fff; padding: 13px 32px; font-size: 15px; }
.qbtn-submit:hover { background: var(--green-d); }
.qbtn-submit:disabled { opacity: .5; cursor: not-allowed; }

/* ALERT */
.quote-alert { padding: .875rem 1.25rem; border-radius: 10px; font-size: 13px; font-weight: 600; margin-bottom: 1rem; }
.quote-alert-error { background: rgba(226,75,74,.15); border: 1px solid rgba(226,75,74,.3); color: #fca5a5; }
.quote-alert-success { background: rgba(74,140,63,.15); border: 1px solid rgba(74,140,63,.3); color: #86efac; }

/* BAŞARI EKRANI */
.quote-success { text-align: center; padding: 4rem 2rem; }
.qs-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 36px; color: #fff; margin: 0 auto 1.5rem; }
.quote-success h2 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.quote-success p { font-size: 15px; color: rgba(255,255,255,.5); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .quote-wrap { padding: 1.5rem 1rem 3rem; }
  .qp-grid-3 { grid-template-columns: 1fr 1fr; }
  .quote-steps { overflow-x: auto; }
  .qs-label { display: none; }
  .qfg-row { grid-template-columns: 1fr; }
  .qp-qty-display span { font-size: 38px; }
}
@media (max-width: 480px) {
  .qp-grid-3 { grid-template-columns: 1fr; }
}

/* ── ETKen MADDE TABLOSU ─────────────────────────── */
.qp-ingredient-wrap { background: rgba(0,0,0,.2); border-radius:14px; padding:1.25rem; margin-bottom:1rem; }
.qp-ingredient-header { display:grid; grid-template-columns:1fr 90px 100px 32px; gap:8px; margin-bottom:.5rem; padding-bottom:.5rem; border-bottom:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.5); }
.qi-label { font-size:11px; font-weight:700; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:.8px; }
.qi-row { display:grid; grid-template-columns:1fr 90px 100px 32px; gap:8px; margin-bottom:6px; align-items:center; }
.qi-input { background:rgba(255,255,255,.06); border:1.5px solid rgba(255,255,255,.12); border-radius:8px; padding:9px 12px; font-size:13px; color:#fff; font-family:inherit; width:100%; }
.qi-input:focus { outline:none; border-color:var(--green); }
.qi-input::placeholder { color:rgba(255,255,255,.25); }
.qi-select { background:rgba(255,255,255,.06); border:1.5px solid rgba(255,255,255,.12); border-radius:8px; padding:9px 8px; font-size:12px; color:#fff; font-family:inherit; width:100%; cursor:pointer; }
.qi-select:focus { outline:none; border-color:var(--green); }
.qi-select option { background:var(--navy-d); color:#fff; }
.qi-remove { width:32px; height:36px; background:rgba(226,75,74,.15); border:1px solid rgba(226,75,74,.3); border-radius:7px; color:#fca5a5; font-size:13px; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.qi-remove:hover { background:rgba(226,75,74,.3); }
.qi-add-btn { background:rgba(74,140,63,.12); border:1px dashed rgba(74,140,63,.4); border-radius:8px; padding:9px 16px; font-size:13px; font-weight:600; color:rgba(255,255,255,.6); cursor:pointer; margin-top:.5rem; transition:all .2s; width:100%; text-align:left; }
.qi-add-btn:hover { background:rgba(74,140,63,.2); color:#fff; }

.qp-type-label { background:rgba(74,140,63,.15); border:1px solid rgba(74,140,63,.3); border-radius:8px; padding:8px 14px; font-size:13px; font-weight:700; color:var(--green-l); margin-bottom:1rem; display:inline-block; visibility:visible; }
.qp-section-label { font-size:12px; font-weight:700; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.8px; margin-bottom:.75rem; display:block; }

/* Miktar birimi butonları */
.qty-unit-btn { background:rgba(255,255,255,.07); border:1.5px solid rgba(255,255,255,.15); border-radius:8px; padding:8px 16px; font-size:12px; font-weight:600; color:rgba(255,255,255,.6); cursor:pointer; transition:all .2s; }
.qty-unit-btn:hover, .qty-unit-btn.active { background:var(--green); border-color:var(--green); color:#fff; }

/* Özet tablo */
.qsummary-ingr { margin-bottom:1.25rem; }
.qsummary-table { width:100%; border-collapse:collapse; font-size:13px; }
.qsummary-table th { text-align:left; padding:6px 10px; font-size:11px; font-weight:700; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:.5px; border-bottom:1px solid rgba(255,255,255,.1); }
.qsummary-table td { padding:7px 10px; border-bottom:1px solid rgba(255,255,255,.06); color:#fff; }
.qsummary-table tr:last-child td { border-bottom:none; }

/* ── ÜRÜN DETAY ACCORDION ──────────────────────────── */
.pd-accordion { border:1px solid var(--border); border-radius:12px; overflow:hidden; }
.pda-item { border-bottom:1px solid var(--border); }
.pda-item:last-child { border-bottom:none; }

.pda-header {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding:16px 20px; background:var(--navy); border:none; cursor:pointer; font-family:inherit;
  font-size:15px; font-weight:600; color:#fff; text-align:left; transition:background .15s;
}
.pda-header:hover { background:var(--navy-d); }
.pda-open .pda-header { background:var(--navy); color:#fff; }
.pda-header svg { color:#fff; }
.pda-arrow { transition:transform .2s; flex-shrink:0; color:#fff; }

.pda-body { padding:0 20px 20px; background:#ffffff; }

/* İçindekiler tablosu */
.pd-ingr-table { width:100%; border-collapse:collapse; margin-top:4px; }
.pd-ingr-table th {
  text-align:left; padding:10px 14px; font-size:12px; font-weight:700; color:var(--muted);
  text-transform:uppercase; letter-spacing:.5px; border-bottom:2px solid var(--border);
}
.pd-ingr-table td { padding:10px 14px; font-size:13px; border-bottom:1px solid var(--border); color:var(--text); }
.pd-ingr-table tr:last-child td { border-bottom:none; }
.pd-ingr-table tr.pdi-bold td { font-weight:700; color:var(--navy); font-size:13px; }

/* Metin alanları */
.pda-text { font-size:14px; color:var(--muted); line-height:1.8; padding-top:4px; }

/* Ürün kartı görsel linki */
.pcard-img-link { display:block; text-decoration:none; }
.pcard-img-link .pcard-img { transition:transform .2s, box-shadow .2s; }
.pcard-img-link:hover .pcard-img { transform:scale(1.02); box-shadow:0 8px 24px rgba(30,58,95,.15); }

/* SVG ikon desteği — quote konfiguratör */
.qcard-icon-wrap { display:flex; align-items:center; justify-content:center; width:48px; height:48px; flex-shrink:0; }
.qcard-icon-wrap svg { width:48px !important; height:48px !important; max-width:48px; max-height:48px; }

/* Prose Card — serbest HTML bloğu için card wrapper */

