/* --- block 0 --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

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

:root {
  --primary: #1a3c6e; --primary-dark: #0f2447; --accent: #e63946;
  --text: #2d3748; --text-light: #718096; --bg: #f7f8fc;
  --white: #ffffff; --border: #e2e8f0; --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
}

body { font-family: 'Poppins', sans-serif !important; color: var(--text); background: var(--bg); line-height: 1.6; }

/* ── Elementor layout base ── */
.e-con { display: flex; flex-direction: column; width: 100%; }
.e-flex { flex-direction: row; flex-wrap: wrap; }
.e-con-boxed > .e-con-inner {
  max-width: 1280px; width: 100%; margin: 0 auto;
  padding: 64px 24px; display: flex; flex-direction: row;
  flex-wrap: wrap; gap: 40px; align-items: flex-start;
}
.e-con-full { flex: 1; min-width: 0; }
.e-parent { padding: 0; }

/* ── Hero: first section ── */
.elementor > .e-parent:first-child {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2563eb 100%);
}
.elementor > .e-parent:first-child > .e-con-inner { padding: 80px 24px; align-items: center; gap: 48px; }
.elementor > .e-parent:first-child .elementor-heading-title {
  color: #fff !important; font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important; line-height: 1.25 !important; margin-bottom: 20px; letter-spacing: -0.5px;
}
.elementor > .e-parent:first-child .elementor-widget-text-editor p {
  color: rgba(255,255,255,0.88) !important; font-size: 1.05rem !important; line-height: 1.85 !important;
}
.elementor > .e-parent:first-child .elementor-widget-image img {
  max-width: 340px; width: 100%; height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
/* Boş sağ kolon gizle, metin tam genişlik */
.elementor-element-8f56741 { display: none !important; }
.elementor-element-6ce6918 { flex: 0 0 100% !important; max-width: 100% !important; }

/* ── Typography ── */
.elementor-heading-title {
  font-family: 'Poppins', sans-serif !important; font-size: 1.5rem !important;
  font-weight: 800 !important; color: var(--primary-dark); line-height: 1.3 !important; margin-bottom: 12px;
}
.elementor-widget-text-editor p {
  font-family: 'Poppins', sans-serif !important; font-size: 0.95rem !important;
  color: var(--text-light); line-height: 1.85 !important; margin-bottom: 10px;
}
.elementor-widget-text-editor ul, .elementor-widget-text-editor ol {
  padding-left: 20px; font-size: 14px; color: var(--text-light); line-height: 1.8;
}
.elementor-widget-image img { max-width: 100%; height: auto; display: block; }
hr { border: none; border-top: 3px solid var(--accent); width: 56px; margin: 0 0 28px; }

/* ── Makine kartları bölümü ── */
.machine-cards-section {
  background: var(--white);
  padding: 60px 0;
}
.machine-cards-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.machine-cards-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.machine-cards-divider {
  border: none;
  border-top: 3px solid var(--accent);
  width: 56px;
  margin: 0 0 32px;
}
.machine-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.machine-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.machine-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.machine-card-img {
  background: #f0f4ff;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
}
.machine-card-img img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  display: block;
}
.machine-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  flex-shrink: 0;
}
.machine-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
}
.machine-card-arrow svg {
  width: 26px;
  height: 26px;
  fill: var(--accent);
  display: block;
  transition: transform 0.2s;
}
.machine-card:hover .machine-card-arrow svg {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .machine-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .machine-cards-grid { grid-template-columns: 1fr; }
}


/* Swiper nav — hidden but styled if JS loads */
.elementor-swiper-button {
  position: static; display: inline-flex; align-items: center;
  justify-content: center; width: 40px; height: 40px;
  background: var(--primary); border-radius: 50%; cursor: pointer;
  margin: 16px 6px 0; transition: background 0.2s;
}
.elementor-swiper-button:hover { background: var(--primary-dark); }
.elementor-swiper-button svg { width: 20px; height: 20px; fill: white; }
.swiper-pagination { margin-top: 20px; display: block; }

/* ── Advantages / features section ── */
.elementor > .e-parent:nth-child(3) { background: var(--bg); }
.elementor > .e-parent:nth-child(3) > .e-con-inner { padding: 60px 24px; flex-direction: column; }
.elementor > .e-parent:nth-child(3) > .e-con-inner > .elementor-widget-heading .elementor-heading-title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--primary-dark); margin-bottom: 0;
}

/* Feature row containers → grid */
.elementor > .e-parent:nth-child(3) .e-con-full.e-child > .e-con-full.e-child {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border-left: 4px solid var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  flex: 1 1 260px; min-width: 260px;
  flex-direction: column;
}
.elementor > .e-parent:nth-child(3) .e-con-full.e-child > .e-con-full.e-child .elementor-heading-title {
  font-size: 16px; color: var(--primary-dark); margin-bottom: 10px;
}
.elementor > .e-parent:nth-child(3) .e-con-full.e-child > .e-con-full.e-child .elementor-widget-text-editor p {
  font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin-bottom: 0;
}

/* Make the row containers flex-wrap */
.elementor > .e-parent:nth-child(3) .e-con-full.e-child {
  display: flex; flex-wrap: wrap; gap: 24px;
}

/* ── CTA section ── */
.elementor > .e-parent:nth-child(4) {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.elementor > .e-parent:nth-child(4) .elementor-heading-title { color: #fff !important; }
.elementor > .e-parent:nth-child(4) .elementor-widget-text-editor p { color: rgba(255,255,255,0.85) !important; }
.elementor > .e-parent:nth-child(4) .elementor-button,
.elementor > .e-parent:nth-child(4) .elementor-button-wrapper a {
  background: var(--accent) !important; color: #fff !important;
  padding: 12px 28px; border-radius: 8px; font-weight: 600;
  font-size: 14px; text-decoration: none; display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.elementor > .e-parent:nth-child(4) .elementor-button:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── Buttons (general) ── */
.elementor-button-wrapper a,
.elementor-button {
  display: inline-block; padding: 11px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none !important;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
  background: var(--primary); color: white !important; border: none;
}
.elementor-button-wrapper a:hover { background: var(--primary-dark); }
.elementor-button-danger,
.elementor-button-danger a { background: var(--accent) !important; }
.elementor-button-danger:hover { background: #c0392b !important; }

/* ── Form elements ── */
.elementor-field-group label { font-size: 13px; font-weight: 600; color: var(--primary-dark); display: block; margin-bottom: 6px; }
.elementor-field-group input,
.elementor-field-group select,
.elementor-field-group textarea {
  width: 100%; padding: 11px 14px; border: 2px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: inherit;
  color: var(--text); outline: none; transition: border-color 0.2s;
  background: var(--bg);
}
.elementor-field-group input:focus,
.elementor-field-group select:focus,
.elementor-field-group textarea:focus { border-color: var(--primary); background: var(--white); }
.elementor-field-group textarea { min-height: 110px; resize: vertical; }

/* ── Icon widget ── */
.elementor-icon svg { width: 32px; height: 32px; fill: var(--primary); }
.elementor-icon-wrapper { display: flex; align-items: center; }

/* ── Social icons ── */
.elementor-social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.12); text-decoration: none;
  transition: background 0.2s; margin-right: 8px;
}
.elementor-social-icon:hover { background: var(--accent); }
.elementor-social-icon svg { width: 16px; height: 16px; fill: white; }

/* ── Icon list ── */
.elementor-icon-list-items { list-style: none; padding: 0; }
.elementor-icon-list-item { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; font-size: 13px; }
.elementor-icon-list-icon svg { width: 14px; height: 14px; flex-shrink: 0; fill: var(--accent); }

/* ── Divider ── */
.elementor-divider-separator { border-top: 1px solid var(--border); width: 100%; }
.elementor-1681 .elementor-divider-separator { border-top-color: rgba(255,255,255,0.12); }

/* ── Footer ── */
.elementor-1681 {
  background: var(--primary-dark) !important;
  color: rgba(255,255,255,0.8);
}
.elementor-1681 .e-con { background: transparent !important; }
.elementor-1681 .e-con-boxed > .e-con-inner { padding: 56px 24px 32px; }
.elementor-1681 .elementor-heading-title,
.elementor-1681 h1,.elementor-1681 h2,.elementor-1681 h3,
.elementor-1681 h4,.elementor-1681 h5,.elementor-1681 h6 { color: #fff !important; }
.elementor-1681 p,
.elementor-1681 .elementor-widget-text-editor p { color: rgba(255,255,255,0.72) !important; }
.elementor-1681 a { color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; }
.elementor-1681 a:hover { color: #fff; }
.elementor-1681 img { filter: brightness(0) invert(1); }

/* ── Span cleanup (AI-generated content) ── */
span.relative { display: inline; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .e-con-boxed > .e-con-inner { flex-direction: column; padding: 40px 16px; gap: 24px; }
  .e-n-carousel .swiper-wrapper { grid-template-columns: repeat(2, 1fr); }
  .elementor > .e-parent:first-child > .e-con-inner { padding: 56px 16px; }
}
@media (max-width: 540px) {
  .e-n-carousel .swiper-wrapper { grid-template-columns: 1fr; }
  .elementor > .e-parent:nth-child(3) .e-con-full.e-child > .e-con-full.e-child { flex: 1 1 100%; }
}

/* --- block 1 --- */
img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }

/* --- block 2 --- */
img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}

/* --- block 3 --- */
.jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em}

/* --- block 4 --- */
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: 800px;--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 24px; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 24px; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 24px;}:root :where(.is-layout-grid){gap: 24px;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}

/* --- block 5 --- */
img#wpstats{display:none}

/* --- block 6 --- */
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
					background-image: none !important;
				}
				@media screen and (max-height: 1024px) {
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
				@media screen and (max-height: 640px) {
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}


/* ── FOOTER ── */
.site-footer {
  background: var(--primary-dark) !important;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 220px 1fr 1fr 260px;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  display: block;
  margin-bottom: 20px;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}

.footer-social a:hover { background: var(--accent); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }

.footer-col h6 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.88rem;
}

.footer-col a:hover { color: var(--white); }

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 991px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-map {
    grid-column: 1 / -1;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-map { height: 160px; }
}