/* Reset and base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
html { overflow-y: auto; } /* scroll'un çalışması için */
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #000;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  /* height: 100% kaldırıldı - sayfa normal scroll edebilsin */
}
:root{
  --header-height: 104px;
  --header-height-compact: 64px; /* tek satır menü için */
  --container: min(1200px, 90vw);
  --accent: #18a0fb;
  --muted: #b3b3b3;
  --header-bg: rgba(20,20,20,0.0);
  /* Sticky header: translucent green tint */
  --header-bg-sticky: rgba(12,128,96,0.28);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}
.container { width: var(--container); margin: 0 auto; }

/* Header */
.header {
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 1000;
  /* no blur over hero */
  backdrop-filter: none;
  background: transparent; /* başlangıçta şeffaf */
  transition: all .4s ease;
  overflow: hidden; /* smooth height change için */
}
.header .container{ width:100%; margin:0; padding-left:18px; padding-right:40px; }
.header.sticky {
  /* Slightly green, translucent + blur glass effect */
  background: var(--header-bg-sticky) !important;
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: var(--shadow);
  /* very thin white divider */
  border-bottom: 1px solid rgba(255,255,255,0.32);
  z-index: 1100;
}
/* Sticky state'te categories gizli */
.header.sticky.compact .categories {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .3s ease;
}
/* Compact mode'da logo ortala */
.header.sticky.compact .logo {
  transform: translateY(0) !important; /* Logo'yu ortala */
  transition: transform .3s ease;
}
/* Normal sticky state'te categories görünür */
.header.sticky .categories {
  height: 40px;
  opacity: 1;
  transition: all .3s ease;
}
/* Transparent top header variant */
.header.ghost{ background: transparent !important; box-shadow:none; pointer-events:auto; z-index: 1050; }
.header.ghost .btn.contacts{ background: transparent; color:#fff; border-color:#fff; }
.header.ghost .btn.contacts:hover{ background: rgba(255,255,255,.14); color:#fff; border-color:#0c8060; }

/* Hide/reveal transition for main header */
.header.is-hidden{ opacity:0; transform: translateY(-14px); pointer-events:none; transition: all .28s ease; }
.header.is-visible{ opacity:1; transform: translateY(0); pointer-events:auto; transition: all .28s ease; }

/* Top header hide on scroll (tamamen pasif olsun) */
.header.ghost.is-hidden{ opacity:0; transform: translateY(-14px); transition: opacity .28s ease, transform .28s ease; pointer-events:none; }
/* modern entrance animation when sticky engages */
.header.just-sticky{ animation: headerPop .38s ease both; }
@keyframes headerPop{
  from{ transform: translateY(-12px); opacity:.0; }
  to{ transform: translateY(0); opacity:1; }
}
.header.just-sticky::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:2px; background: rgba(255,255,255,.35);
  transform: scaleX(0); transform-origin: left; animation: underlineIn .5s ease .1s forwards;
}
@keyframes underlineIn{ from{ transform: scaleX(0); } to{ transform: scaleX(1); } }
.header.just-sticky .primary-nav a,
.header.just-sticky .categories a,
.header.just-sticky .logo,
.header.just-sticky .header-actions > *{ animation: slideFade .45s ease both; }
@keyframes slideFade{ from{ transform: translateY(-6px); opacity:0; } to{ transform: translateY(0); opacity:1; } }
/* subtle stagger */
.header.just-sticky .primary-nav a:nth-child(1){ animation-delay:.06s; }
.header.just-sticky .primary-nav a:nth-child(2){ animation-delay:.1s; }
.header.just-sticky .primary-nav a:nth-child(3){ animation-delay:.14s; }
.header.just-sticky .primary-nav a:nth-child(4){ animation-delay:.18s; }
.header.just-sticky .primary-nav a:nth-child(5){ animation-delay:.22s; }
.header.just-sticky .primary-nav a:nth-child(6){ animation-delay:.26s; }
.header.just-sticky .categories a{ animation-delay:.18s; }
.header.just-sticky .logo{ animation-delay:.04s; }
.header.just-sticky .header-actions > *:nth-child(1){ animation-delay:.18s; }
.header.just-sticky .header-actions > *:nth-child(2){ animation-delay:.22s; }
.header.just-sticky .header-actions > *:nth-child(3){ animation-delay:.26s; }
.topbar {
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 8px 0;
}
.logo { display: inline-flex; align-items:center; gap:10px; color:#fff; text-decoration:none; font-weight:800; letter-spacing:.5px; }
.logo img { width: 200px; height: 100px; object-fit: contain; }
.logo-mark { width:26px; height:26px; border-radius:50%; background: radial-gradient(circle at 35% 35%, #45c4ff, #0071c9); display:inline-block; }
.logo-text span:last-child{ color:#45c4ff; margin-left:2px; }

.primary-nav { display: none; gap: 22px; padding-right:5px; align-items: center; }
.primary-nav a, .categories a { color:#fff; text-decoration:none; font-weight:500; opacity:.9; padding-right: 10px; }
.primary-nav a{ 
  font-size:13.5px; 
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

/* Hover efekti - yeşil alt çizgi */
.primary-nav a:not([href^="tel"]):before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0c8060;
  transition: width 0.3s ease;
}

.primary-nav a:not([href^="tel"]):hover:before {
  width: 100%;
}

.primary-nav a:not([href^="tel"]):hover {
  opacity: 1; 
  transform: translateY(-1px);
}
.primary-nav a[href^="tel"]{ 
  font-size: 13.5px; 
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
  opacity: .9;
}

/* Telefon linki için hover efekti - diğerleriyle aynı */
.primary-nav a[href^="tel"]:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0c8060;
  transition: width 0.3s ease;
}

.primary-nav a[href^="tel"]:hover:before {
  width: 100%;
}

.primary-nav a[href^="tel"]:hover{ 
  opacity: 1; 
  transform: translateY(-1px);
}

/* Font Awesome telefon ikonu stil */
.phone-link i {
  margin-right: 6px;
  font-size: 12px;
}
.categories a{ 
  font-size:16px; 
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

/* Kategoriler için hover efekti - yeşil alt çizgi */
.categories a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0c8060;
  transition: width 0.3s ease;
}

.categories a:hover:before {
  width: 100%;
}

.categories a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.primary-nav a:not([href^="tel"]):hover { opacity:1; }

.header-actions { display:flex; align-items:center; gap:10px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 18px; border-radius: 999px; border: 1px solid #3a3a3a; background: rgba(255,255,255,.06);
  color:#fff; text-decoration:none; font-weight:600; letter-spacing:.3px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.btn.contacts { background: transparent; color:#0c8060; border: 2px solid #0c8060; }
.btn.contacts:hover, .btn.contacts:focus-visible{ background:#0c8060; color:#fff; border-color:#fff; box-shadow: 0 8px 22px rgba(0,0,0,.25); transform: translateY(-1px); }
.icon-btn { background:transparent; border:none; color:#fff; font-weight:600; cursor:pointer; opacity:.9; }
.icon-btn:hover{ opacity:1; }

.categories { 
  display: flex; 
  gap: 24px; 
  height: 50px; 
  align-items:center; 
  overflow:auto; 
  scrollbar-width:none; 
  -ms-overflow-style:none; 
  justify-content:flex-end; 
  max-width:100%; 
  padding: 8px 0;
  margin-top: 8px;
}
.categories.container{ padding-right:40px; padding-left:18px; }
.categories::-webkit-scrollbar{ display:none; }
/* better contrast over green background */
.header.sticky .primary-nav a,
.header.sticky .categories a,
.header.sticky .icon-btn{ color:#fff; }
/* Contacts button outline-only by default; filled on hover */
.header .btn.contacts{ background: transparent; color:#fff; border-color:#fff }
.header .btn.contacts:hover, .header .btn.contacts:focus-visible{ background:#0c8060; color:#fff; border-color:#fff; }

@media(min-width: 980px){
  .primary-nav{ display:flex; }
  /* Logo, iki menü satırının ortasına hizalansın */
  .logo{ transform: translateY(20px); transition: transform .3s ease; }
}

/* Hero slider */
.hero { position: relative; isolation: isolate; }
.slider { position: relative; height: 100vh; overflow:hidden; } /* max-height kaldırıldı */
.slide {
  position:absolute; inset:0; background-size: cover; background-position:center; background-image: var(--bg);
  opacity:0; transform: scale(1.02); transition: opacity .8s ease, transform 1.6s ease; will-change: transform, opacity;
  z-index: 1; /* Base z-index for all slides */
}
.slide.active { 
  opacity:1; transform: scale(1); 
  z-index: 2; /* Higher z-index for active slide to ensure buttons work */
}
.slide .overlay{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.25) 40%, rgba(0,0,0,.6)); mix-blend-mode: normal; pointer-events: none; }
.slide .top-gradient{ position:absolute; top:0; left:0; right:0; height:200px; background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.2) 50%, transparent 100%); pointer-events: none; z-index: 15; }
.slide .content{ position:relative; padding-top: clamp(140px, 25vh, 250px); pointer-events: none; z-index: 20; }
.slide.active .content{ pointer-events: auto; }
.eyebrow{ color:#cfcfcf; font-weight:700; letter-spacing:2px; }
.slide h1{ margin: 12px 0 64px; font-size: clamp(28px, 4.5vw, 64px); line-height: 1.1; letter-spacing: .5px; font-weight: 300; color:#fff; }
.btn.cta, .btn.hero-btn{ background:transparent; border:2px solid #0c8060; color:#fff; cursor:pointer; transition: all .3s ease; text-decoration:none; display:inline-flex; align-items:center; justify-content:center; padding:12px 24px; border-radius:999px; font-weight:600; position:relative; z-index: 30; pointer-events: auto; }
.btn.cta:hover, .btn.cta:focus-visible, .btn.hero-btn:hover, .btn.hero-btn:focus-visible{ background:#0c8060; color:#fff; box-shadow: 0 8px 22px rgba(12, 128, 96, 0.4); transform: translateY(-2px); border-color:#0c8060; }

/* Slider specific background images */
.slide.slide-1 { background-image: url('../images/anasayfa/slider-1.jpg'); }
.slide.slide-2 { background-image: url('../images/anasayfa/slider-2.png'); }
.slide.slide-3 { background-image: url('../images/anasayfa/slider-3.jpg'); }

/* Controls */
.controls{ position:absolute; right:18px; bottom:64px; display:flex; gap:10px; pointer-events:none; align-items:center; z-index: 40; }
/* Arrow controls - HIDDEN */
.arrow{ 
  display: none !important;
}
.arrow:hover, .arrow:focus-visible{ background:rgba(255,255,255,.16); transform: scale(1.06); }
.arrow:active{ transform: scale(1.0); }
.controls .next{ width:68px; height:68px; font-size:34px; }
/* Bottom timeline (left) */
.timeline{ position:absolute; left:0; right:0; bottom:56px; z-index: 40; }
.timeline-inner{ display:flex; align-items:center; justify-content: center; gap:16px; }
/* Progress track - HIDDEN */
.timeline .track{ 
  display: none !important;
}
.timeline .bar{ height:100%; width:0%; background:#fff; transform-origin:left center; }
/* Timeline dots - BIGGER */
.dots{ pointer-events:auto; display:flex; gap:16px; align-items:center; justify-content: center; }
.dots button{ width:16px; height:16px; border-radius:999px; background: rgba(255,255,255,.4); border:none; cursor:pointer; transition: all 0.2s ease; }
.dots button.active{ background:#fff; box-shadow: 0 0 0 4px rgba(255,255,255,.3); transform: scale(1.2); }

/* Hero Single Image (for about page) */
.hero-single { position: relative; height: 100vh; overflow: hidden; }
.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-image: url('../images/hakkimizda/2.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* About content section */
.about-content {
  padding: 80px 0;
  background: #ffffff;
  min-height: 60vh;
}
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrap h2 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0c8060;
  margin: 0 0 20px;
}
.content-wrap p {
  color: #333;
  line-height: 1.65;
  font-size: 16px;
}

/* About overview (slimmer, two-column) */
.about-overview{ background:#fff; padding: clamp(32px, 7vh, 80px) 0; }
.about-overview .container{ width: min(1400px, 92vw); }
.about-overview-grid{ display:grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items:start; }
.about-overview-left{ color:#222; }
.about-quote{ margin: 0 0 18px; color:#9aa3ad; font-size: clamp(20px, 2.6vw, 34px); line-height:1.4; font-weight: 400; font-style: italic; quotes: "\201C" "\201D"; }
.about-founder{ margin: 16px 0 2px; color:#000; font-size: clamp(14px, 1.5vw, 18px); }
.about-founder-role{ margin: 0; color:#000; font-size: clamp(13px, 1.3vw, 16px); }
.about-overview-right p{ margin: 0 0 18px; color:#222; line-height:1.8; font-size: clamp(13px, 1.3vw, 17px); }

@media (max-width: 980px){
  .about-overview-grid{ grid-template-columns: 1fr; }
  .about-quote{ font-size: clamp(18px, 4.5vw, 26px); }
}

/* Vertical structure section */
.about-vertical{ background:#eef2f5; padding: clamp(36px, 8vh, 96px) 0; }
.about-vertical .container{ width: min(1400px, 92vw); }
.about-vertical-grid{ display:grid; grid-template-columns: 1fr; gap: clamp(24px, 5vw, 80px); align-items:start; }
.av-title{ margin:0 0 24px; color:#0071c9; font-weight:800; letter-spacing:.06em; font-size: clamp(24px, 4.2vw, 46px); line-height:1.03; text-align: center; }
.av-copy{ max-width: 900px; margin: 0 auto; }
.av-copy p{ margin: 0 0 18px; color:#2a2a2a; line-height:1.9; font-size: clamp(13px, 1.35vw, 18px); }

.mini-slider-wrap{ margin-top: clamp(22px, 4vh, 36px); position:relative; }

/* About single image (replaces mini-slider) */
.about-single-image {
  position: relative;
  margin-left: auto;
  width: min(980px, 70vw);
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.about-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-slider{ position: relative; margin-left:auto; width: min(980px, 70vw); aspect-ratio: 4 / 3; height: auto; border-radius: 22px; overflow:hidden; box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.ms-slide{ position:absolute; inset:0; background-image: var(--bg); background-size:cover; background-position:center; opacity:0; transform: scale(1.02); transition: opacity .6s ease, transform 1.2s ease; }
.ms-slide.active{ opacity:1; transform: scale(1); }
.mini-slider .overlay{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.2) 40%, rgba(0,0,0,.35)); }

.mini-controls{ position:absolute; inset:0; display:flex; align-items:center; justify-content:space-between; padding: 0 12px; z-index: 5; }
.ms-arrow{ width:44px; height:44px; border-radius:999px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.3); color:#fff; font-size:24px; cursor:pointer; display:grid; place-items:center; }
.ms-arrow:hover{ background:rgba(255,255,255,.18); }

.mini-timeline{ position:absolute; left:0; right:0; bottom:16px; z-index: 6; }
.mini-timeline-inner{ display:flex; align-items:center; gap:12px; padding: 0 14px; }
.mini-track{ flex:1; height:3px; background: rgba(255,255,255,.35); border-radius:999px; overflow:hidden; }
.mini-bar{ height:100%; width:0%; background:#fff; transform-origin:left center; }
.mini-dots{ display:flex; gap:10px; }
.mini-dots button{ width:8px; height:8px; border-radius:999px; background: rgba(255,255,255,.35); border:none; cursor:pointer; }
.mini-dots button.active{ background:#fff; box-shadow: 0 0 0 2px rgba(255,255,255,.25); }

@media (max-width: 900px){
  .about-vertical-grid{ grid-template-columns: 1fr; }
  .av-copy{ max-width: 100%; padding: 0 20px; }
  .mini-slider, .about-single-image{ width: 100%; aspect-ratio: 4 / 3; height: auto; margin: 0; }
}

/* New About Sections Styles */
.about-section {
  padding: clamp(60px, 10vh, 120px) 0;
  position: relative;
}

.about-section .container {
  width: min(1400px, 92vw);
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Override for two-column layouts */
.section-content.section-layout-left,
.section-content.section-layout-right {
  text-align: left;
  max-width: none;
}

/* About section basic setup */
.about-section {
  padding: clamp(40px, 8vh, 80px) 0;
}

/* Two-column layouts - ULTIMATE OVERRIDE */
.about-section .section-content.section-layout-left,
.about-section .section-content.section-layout-right {
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
}

/* LEFT LAYOUT: Text first, then image */
.about-section .section-content.section-layout-left {
  flex-direction: row !important;
}

.about-section .section-layout-left .section-text-column {
  flex: 1 !important;
  order: 1 !important;
  margin-right: 40px !important;
}

.about-section .section-layout-left .machine-image {
  flex: 0 0 500px !important;
  width: 500px !important;
  order: 2 !important;
  margin-left: 0 !important;
}

/* RIGHT LAYOUT: Image first, then text */
.about-section .section-content.section-layout-right {
  flex-direction: row !important;
}

.about-section .section-layout-right .machine-image {
  flex: 0 0 500px !important;
  width: 500px !important;
  order: 1 !important;
  margin-right: 40px !important;
}

.about-section .section-layout-right .section-text-column {
  flex: 1 !important;
  order: 2 !important;
  margin-left: 0 !important;
}

/* Mobile override */
@media (max-width: 768px) {
  .about-section .section-content.section-layout-left,
  .about-section .section-content.section-layout-right {
    flex-direction: column !important;
    gap: 30px !important;
    padding: 0 20px;
  }
  
  .about-section .section-layout-left .section-text-column,
  .about-section .section-layout-right .section-text-column {
    order: 1 !important;
    margin: 0 !important;
    padding: 0 10px;
  }
  
  .about-section .section-layout-left .machine-image,
  .about-section .section-layout-right .machine-image {
    flex: none !important;
    width: 100% !important;
    order: 2 !important;
    margin: 0 !important;
    padding: 0 10px;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .section-content {
    padding: 0 15px;
  }
}

/* Section Headers */
.section-header {
  margin-bottom: clamp(20px, 4vh, 40px);
}

.section-header.with-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  margin-bottom: clamp(30px, 5vh, 50px);
}

.brand-logo {
  flex-shrink: 0;
}

.brand-logo img {
  height: clamp(60px, 8vw, 120px);
  width: auto;
  object-fit: contain;
}

.section-title-area {
  text-align: left;
}

.section-title {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
}

.section-subtitle-large {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  opacity: 0.8;
}

.section-subtitle {
  margin: 16px 0 0;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.3;
}

.section-subtitle h3 {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: #2a2a2a;
}

.section-underline {
  height: 4px;
  width: clamp(80px, 10vw, 120px);
  margin: 12px 0;
  border-radius: 2px;
}

.section-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.section-text p {
  margin: 0 0 20px;
  color: #2a2a2a;
  line-height: 1.8;
  font-size: clamp(14px, 1.4vw, 18px);
}

/* Color Themes */

/* Green Theme - PROBEND */
.probend-main {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f8f4 100%);
}

.probend-main .section-header {
  text-align: center;
}

.green-title {
  color: #0c7b59;
}

.green-underline {
  background: linear-gradient(90deg, #0c7b59, #14a875);
  margin: 0 auto;
}

/* Blue Theme - PBT */
.pbt-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
}

.blue-title {
  color: #1976d2;
}

.blue-underline {
  background: linear-gradient(90deg, #1976d2, #42a5f5);
}

/* Gray/Blue Theme - AMOB */
.amob-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.gray-title {
  color: #546e7a;
}

.gray-underline {
  background: linear-gradient(90deg, #546e7a, #78909c);
}

/* Teal Theme - Kaltenbach */
.kaltenbach-section {
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

.teal-title {
  color: #00695c;
}

.teal-underline {
  background: linear-gradient(90deg, #00695c, #26a69a);
}

/* Red Theme - G-CNC and Drive CNC */
.gcnc-section,
.drivecnc-section {
  background: linear-gradient(135deg, #fff3e0 0%, #ffccbc 100%);
}

.red-title {
  color: #d84315;
}

.red-underline {
  background: linear-gradient(90deg, #d84315, #ff7043);
}

/* Purple-Blue Theme - Wortelboer */
.wortelboer-section {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.wortelboer-section .blue-title {
  color: #7b1fa2;
}

.wortelboer-section .blue-underline {
  background: linear-gradient(90deg, #7b1fa2, #ab47bc);
}

/* Special Elements */
.chinese-text {
  font-family: "Microsoft YaHei", SimHei, sans-serif;
  margin-bottom: 8px;
}

.musical-note {
  font-size: clamp(14px, 1.8vw, 20px);
  color: #d84315;
  margin-bottom: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .section-header.with-logo {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .section-title-area {
    text-align: center;
    padding: 0 20px;
  }
  
  .brand-logo img {
    height: 70px;
  }
  
  .section-title {
    font-size: clamp(32px, 9vw, 48px);
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .section-subtitle-large {
    font-size: clamp(20px, 6vw, 32px);
    line-height: 1.4;
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.4;
    margin: 20px 0 0;
  }
  
  .section-text {
    text-align: justify;
    font-size: 17px;
    line-height: 1.7;
    padding: 0 15px;
  }
  
  .section-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
}

/* Machine Images */
.machine-image {
  margin-top: clamp(40px, 6vh, 60px);
  text-align: center;
}

/* Override margin for two-column layouts */
.about-section .section-layout-left .machine-image,
.about-section .section-layout-right .machine-image {
  margin-top: 0 !important;
}

.machine-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.machine-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .machine-image {
    margin-top: 35px;
    padding: 0 15px;
  }
  
  .machine-image img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

/* History timeline */
.history{ background:#0c72b8; padding: clamp(28px, 6vh, 64px) 0; color:#fff; }
.history .container{ width: min(1600px, 95vw); }
.history-head{ position: relative; padding-top: 12px; overflow:hidden; }
.history-years{ display:flex; justify-content:space-between; font-weight:700; opacity:.95; letter-spacing:.02em; padding: 0 12px; will-change: transform; }
.history-years .year{ font-size: clamp(12px, 1.2vw, 18px); }
.history-line{ position: relative; height: 28px; margin-top: 6px; will-change: transform; }
.history-line::before{ content:""; position:absolute; left:12px; right:12px; top: 14px; border-top:2px dashed rgba(255,255,255,.6); }
.history-line .tick{ position:absolute; top: 9px; width:2px; height:14px; background:#fff; border-radius:2px; }
.history-line .tick:nth-child(1){ left: calc(0% + 12px); }
.history-line .tick:nth-child(2){ left: 16.6%; }
.history-line .tick:nth-child(3){ left: 33.3%; }
.history-line .tick:nth-child(4){ left: 50%; }
.history-line .tick:nth-child(5){ left: 66.6%; }
.history-line .tick:nth-child(6){ left: calc(100% - 12px); }

.history-viewport{ margin-top: clamp(18px, 3vh, 28px); overflow-x:auto; -ms-overflow-style:none; scrollbar-width:none; cursor: grab; }
.history-viewport:active{ cursor: grabbing; }
.history-viewport::-webkit-scrollbar{ display:none; }
.history-track{ display:flex; gap: clamp(24px, 3.2vw, 48px); padding: 12px 12px 8px; }
.h-item{ width: min(720px, 70vw); flex: 0 0 auto; }
.h-media{ aspect-ratio: 6 / 5; height: auto; background:#fff; border-radius: 18px; overflow:hidden; box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.h-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.h-caption{ margin: 12px 0 4px; font-size: clamp(14px, 1.4vw, 18px); color:#fff; opacity:.95; }

/* Smoother dragging: disable selection/dragging inside timeline */
.history-viewport, .history-viewport *{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.h-media img{
  -webkit-user-drag: none;
  pointer-events: none;
}


/* Floating chat */
.chat-bubble-link{ text-decoration: none; }
.chat-bubble{ position: fixed; right: 18px; bottom: 18px; background:#0c8060; color:#fff; border:none; border-radius: 14px; padding: 12px 16px; font-weight:700; box-shadow: var(--shadow); cursor:pointer; z-index: 9999; transition: all 0.3s ease; }
.chat-bubble:hover{ transform: translateY(-2px); box-shadow: 0 8px 25px rgba(12, 128, 96, 0.4); }

/* About hero (single image) */
.about-hero .hero-single{ position: relative; height: 100vh; min-height: 500px; }
.about-hero .hero-image{ position: relative; inset:0; width:100%; height:100%; background-image: url('../images/hakkimizda/2.jpg'); background-size: cover; background-position: center; }
.about-hero .hero-image .overlay{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.32) 40%, rgba(0,0,0,.65)); }
.about-hero .content{ position:relative; height:100%; display:grid; align-items:start; align-content:center; padding-top: clamp(24px, 8vh, 80px); padding-bottom: clamp(24px, 8vh, 80px); }
.about-hero-inner{ width:100%; color:#fff; max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.about-hero-grid{ display:grid; grid-template-columns: 1fr 2fr; align-items:start; gap: min(3vw, 40px); }
.about-hero-left{ display:flex; align-items:flex-start; padding-top: .25em; }
.about-hero-right{ text-align:left; }
.about-hero .eyebrow{ color:#fff; opacity:.98; letter-spacing:.02em; }
.about-hero .eyebrow-strong{ font-weight:800; font-size: clamp(24px, 3.2vw, 40px); }
/* Title thinner like slider, smaller overall */
.about-hero-title{ margin: 0 0 12px; font-weight:200; letter-spacing:.5px; line-height:.98; color:#fff; font-size: clamp(32px, 5.6vw, 78px); }
.about-hero .hero-sub{ max-width: 840px; color:#e6e6e6; font-size: clamp(12px, 1.4vw, 18px); line-height:1.6; margin: 4px 0 0; }
.about-hero-inner{ width:100%; color:#fff; padding-right: clamp(12px, 4vw, 64px); }
/* move right side a bit more to the edge */
.about-hero-right{ padding-right: clamp(8px, 2.5vw, 36px); }

@media (max-width: 900px){
  .about-hero-grid{ 
    grid-template-columns: 1fr; 
    gap: 20px; 
    text-align: center;
  }
  .about-hero-left{ 
    order: 0; 
    justify-content: center;
    padding: 0 25px;
  }
  .about-hero-right{ 
    order: 1; 
    text-align: center;
    padding: 0 25px;
  }
  .about-hero-title{ 
    font-size: clamp(36px, 14vw, 72px); 
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .about-hero .eyebrow-strong{ 
    font-size: clamp(24px, 8vw, 36px); 
    margin-bottom: 15px;
  }
  .about-hero .hero-sub{ 
    font-size: clamp(18px, 5vw, 22px); 
    line-height: 1.5;
    margin-top: 10px;
    max-width: none;
  }
  .about-hero-inner{ 
    padding-right: 20px;
    padding-left: 20px;
  }
  .about-hero-right{ 
    padding-right: 20px;
    padding-left: 20px;
  }
  .about-hero .content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .about-hero .hero-single {
    height: 80vh;
    min-height: 400px;
  }
}

/* Utility */
.section{ 
  padding: 80px 0; 
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
}

/* Sticky header spacer removed */

/* Products slider */
.products{ background:#ffffff; padding: 84px 0 140px; overflow: visible; }
.products .container{ width: min(1400px, 90vw); margin:0 auto; }
.products-head{ display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom: 36px; }
.products-head h2{ font-size: clamp(28px,4.5vw,52px); font-weight:700; letter-spacing:.06em; color:#0c8060; margin:0; }
.products-head .head-right{ display:flex; align-items:center; gap:18px; }
.products-head .rule{ width:min(44vw,760px); height:2px; background: rgba(0,0,0,.25); }
.p-arrows{ display:flex; gap:12px; }
.p-arrow{ width:44px; height:44px; border-radius:999px; border:1px solid rgba(0,0,0,.35); background:transparent; color:#000; font-size:22px; cursor:pointer; }
.p-arrow:hover{ background:rgba(0,0,0,.12); }

.p-viewport{ overflow-x:auto; -ms-overflow-style: none; scrollbar-width: none; }
.p-viewport::-webkit-scrollbar{ display:none; }
.p-track{ display:flex; gap:24px; padding: 20px 8px 30px; }

.p-card{ display:flex; flex-direction:column; width: 360px; min-width:360px; background:#fff; border-radius:12px; border:1px solid rgba(0,0,0,.25); color:#000; text-decoration:none; box-shadow: 0 8px 22px rgba(0,0,0,.28);
  transition: transform .18s ease, box-shadow .18s ease; }
.p-card:hover{ transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.38); }
.p-media{ height: 220px; display:grid; place-items:center; overflow:hidden; background: #f5f5f5; border-bottom:1px solid rgba(0,0,0,.18); border-top-left-radius:12px; border-top-right-radius:12px; }
.p-media img{ width:100%; height:100%; object-fit:contain; }
.p-body{ padding: 16px 20px 16px; }
.p-body h3{ margin:0 0 8px; font-size: 24px; line-height:1.2; color:#0c8060; }
.p-meta{ color:#666; font-size:13px; }

/* Service carousel specific adjustments */
#service-carousel .p-card{ min-height: 80px; }
#service-carousel .p-body{ padding: 16px 20px 14px; }
#service-carousel .p-body h3{ font-size: 30px; margin:0 0 6px; }
#service-carousel .p-meta{ font-size:16px; line-height:1.3; }

.p-card.promo{ display:flex; align-items:center; justify-content:center; min-width: 360px; background:#fff; border:1px dashed rgba(0,0,0,.35); }
.promo-inner{ text-align:left; padding: 22px; color:#0c8060; }
.promo-eyebrow{ color:#666; font-weight:700; letter-spacing: .08em; }
.promo-inner h4{ font-size: 40px; line-height:1.1; margin: 8px 0 18px; }
.btn.view-more{ background:#fff; border-color:#0c8060; color: #0c8060;}
.btn.view-more:hover{ background:#0c8060; box-shadow: 0 8px 20px rgba(120, 245, 141, 0.5); color: #fff;}
/* About section */
.about{ min-height: 100svh; padding: clamp(24px,4vh,56px) 0; background: #ffffff; display:grid; align-items:center; }
.about-wrap{ position: relative; width: min(1400px, 95vw); margin: 0 auto; }
.about-media-frame{
  position: relative; z-index:1; border-radius: 24px; overflow: hidden; background: #111; width: 100%;
}
.about-media-frame img{ width:100%; height:auto; display:block; }
.about-card{
  position: relative; z-index:2; margin-left: auto; background: #fff; color:#000; border-radius: 18px; padding: 36px 36px 28px; box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
.about-card h2{ font-size: clamp(26px, 3.2vw, 42px); margin: 0 0 16px; font-weight: 800; letter-spacing:.4px; color:#0c8060; }
.about-card p{ color:#333; line-height:1.65; margin: 0 0 16px; }
.about-card a{ color:#0c8060; text-decoration: underline; text-underline-offset: 3px; }
.btn.white-outline{
  border:2px solid #0c8060; background: transparent; color:#0c8060; padding: 10px 20px; display:inline-flex; gap:10px;
}
.btn.white-outline:hover{ background:#0c8060; color:#fff; }

@media(min-width: 1100px){
  /* Enlarged media; card slightly smaller and centered vertically at right */
  .about-media-frame{ width: 78%; }
  .about-card{ position: absolute; right: 2%; top: 50%; transform: translateY(-50%); width: clamp(420px, 40vw, 680px); }
}

/* Process section removed */

/* Asymmetrical Sectors Layout */
.sectors-asymmetric { 
  background: #ffffff; 
  padding: 60px 0 80px; 
}

.sectors-asymmetric .container {
  width: min(1400px, 95vw);
  margin: 0 auto;
}

.sectors-header {
  text-align: center;
  margin-bottom: 60px;
}

.sectors-asymmetric .sectors-title { 
  margin: 0 0 16px; 
  font-size: clamp(32px, 4.5vw, 56px); 
  letter-spacing: 0.08em; 
  color: #0c8060; 
  font-weight: 800; 
  text-transform: uppercase;
}

.sectors-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #666;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.sectors-row { 
  display: grid; 
  gap: 20px; 
  margin-bottom: 20px; 
}

/* Row 1: 1 large + 2 small */
.row-1 { 
  grid-template-columns: 2fr 1fr 1fr; 
  height: 300px; 
}

/* Row 2: 3 equal */
.row-2 { 
  grid-template-columns: 1fr 1fr 1fr; 
  height: 280px; 
}

/* Row 3: 2 small + 1 large */
.row-3 { 
  grid-template-columns: 1fr 1fr 2fr; 
  height: 300px; 
}

.sector-card { 
  position: relative; 
  border-radius: 16px; 
  overflow: hidden; 
  cursor: pointer; 
  transition: transform 0.4s ease, box-shadow 0.4s ease; 
  background: linear-gradient(135deg, rgba(12,128,96,0.05), rgba(12,128,96,0.1));
}

.sector-card:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 25px 60px rgba(0,0,0,0.2); 
}

.sector-media { 
  width: 100%; 
  height: 100%; 
  margin: 0; 
  position: relative;
}

.sector-media img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.4s ease; 
}

.sector-card:hover .sector-media img { 
  transform: scale(1.08); 
}

.sector-content {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: auto !important;
  width: auto !important;
  max-width: 70% !important;
  background: rgba(0,0,0,0.7) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  padding: 16px 20px 16px 16px !important;
  color: white !important;
  z-index: 10 !important;
  pointer-events: auto !important;
  border-radius: 0 12px 0 0 !important;
}

.sector-title { 
  font-size: clamp(14px, 1.8vw, 18px) !important; 
  font-weight: 600 !important; 
  margin: 0 0 4px !important; 
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  color: white !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  line-height: 1.2 !important;
}

.sector-description {
  font-size: clamp(11px, 1.2vw, 13px) !important;
  margin: 0 !important;
  opacity: 0.85 !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  color: white !important;
  display: block !important;
  visibility: visible !important;
}

.sectors-footer {
  text-align: center;
  margin-top: 50px;
}

.sectors-more-btn {
  background: #0c8060;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #0c8060;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sectors-more-btn:hover {
  background: transparent;
  color: #0c8060;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(12,128,96,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .sectors-row { 
    grid-template-columns: 1fr !important; 
    height: auto; 
    gap: 15px; 
  }
  
  .sector-card { 
    height: 200px; 
  }
  
  .sectors-header {
    margin-bottom: 40px;
  }
  
  .sectors-footer {
    margin-top: 40px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .row-1 { 
    grid-template-columns: 1.5fr 1fr 1fr; 
  }
  
  .row-3 { 
    grid-template-columns: 1fr 1fr 1.5fr; 
  }
}

/* Technical Service Section */
.service-section {
  background: #ffffff;
  padding: 80px 0;
}

.service-section:last-of-type {
  margin-bottom: 50px;
}

.service-section .container {
  width: min(1400px, 95vw);
  margin: 0 auto;
}

.service-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: 0.08em;
  color: #0c8060;
  font-weight: 800;
  text-transform: uppercase;
}

.service-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #666;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 320px;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-media {
  width: 100%;
  height: 60%;
  margin: 0;
  position: relative;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.05);
}

.service-content {
  padding: 24px;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-title-card {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  margin: 0 0 8px;
  color: #0c8060;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.service-description {
  font-size: clamp(13px, 1.4vw, 15px);
  margin: 0;
  color: #666;
  font-weight: 400;
  line-height: 1.5;
}

.service-footer {
  text-align: center;
  margin-top: 50px;
}

.service-more-btn {
  background: #0c8060;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #0c8060;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-more-btn:hover {
  background: transparent;
  color: #0c8060;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(12,128,96,0.3);
}

/* Responsive Design for Service Section */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    height: 280px;
  }
  
  .service-header {
    margin-bottom: 40px;
  }
  
  .service-footer {
    margin-top: 40px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Global section removed */

/* Footer */
.site-footer{ background:#0c8060; color:#fff; position:relative; }
.site-footer::before{
  content: "";
  position: absolute;
  left: 0; right: 0;
  /* extend green above the footer to cover under the fixed header */
  top: calc(-1 * var(--header-height));
  height: var(--header-height);
  background: #0c8060;
  /* make sure it visually overlays previous section at the seam */
  z-index: 1;
}
.footer-frame{ min-height: calc(100svh - var(--header-height-compact)); padding: 70px 0 12px; display:flex; flex-direction:column; }
.footer-top{ display:grid; grid-template-columns: 1.2fr 1fr; gap: clamp(16px, 3.5vw, 50px); align-items:start; padding: clamp(12px, 3vh, 36px) 0; }
.f-title{ margin:0 0 6px; font-size: clamp(24px, 4.4vw, 46px); font-weight:800; letter-spacing:.02em; }
.footer-logo{ margin: 20px 0 20px -5px; text-align: left; }
.footer-logo img{ height: 120px; width: auto; filter: brightness(0) invert(1); }
.footer-vector{ margin: 15px 0; text-align: left; }
.footer-vector img{ height: 80px; width: auto; filter: brightness(0) invert(1); }
.footer-categories{ margin: 15px 0 0; text-align: left; }
.footer-categories-row{ margin-bottom: 8px; }
.footer-categories-row:last-child{ margin-bottom: 0; }
.footer-categories a{ color: #fff; text-decoration: none; font-size: 16px; font-weight: 500; margin: 0 8px 0 0; position: relative; transition: all 0.3s ease; }
.footer-categories a:hover{ color: #fff; }
.footer-categories a::after{ content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: #fff; transition: width 0.3s ease; }
.footer-categories-row-mobile{ 
  display: none; 
  margin-bottom: 8px; 
}
.footer-categories-row-mobile:last-child{ 
  margin-bottom: 0; 
}
.footer-categories-row-mobile a{ 
  color: #fff; 
  text-decoration: none; 
  font-size: 16px; 
  font-weight: 500; 
  margin: 0 8px 0 0; 
  position: relative; 
  transition: all 0.3s ease; 
}
.f-sub{ margin: 0 0 14px; color:#fff; font-size: clamp(13px, 1.6vw, 18px); }
.btn.f-newsletter{ border:2px solid #fff; background: transparent; color:#fff; font-weight:800; padding: 10px 18px; border-radius: 999px; display:inline-flex; margin-bottom: 20px; }
.btn.f-newsletter:hover{ background:#fff; color:#0c8060; box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.f-about h3{ margin: 18px 0 6px; font-size: 22px; color:#fff; }
.f-about p{ color:#fff; line-height:1.6; margin: 0 0 10px; }
.f-links{ color:#fff; opacity:.95; }

.f-right{ justify-self:end; }
.f-follow{ margin:0 0 30px; font-size: 24px; font-weight:800; color:#fff; }
.f-socials{ display:flex; gap:30px; margin-bottom: 30px; }
.soc{ width:50px; height:50px; border-radius:999px; background:#0c8060; color:#fff; display:grid; place-items:center; text-decoration:none; font-weight:800; border:1px solid rgba(255,255,255,.4); }
.soc:hover{ background:#fff; color: #0c8060;}
.soc i{ font-size: 25px; color: inherit; }
.f-address h4{ margin: 10px 0 4px; font-size:16px; color:#fff; opacity:.9; }
.f-address p{ margin: 0 0 10px; color:#fff; }
.f-address a{ color:#fff; }
.f-nav{ margin-top: 50px; }
.footer-nav{ text-align: left; }
.footer-nav a{ color: #fff; text-decoration: none; font-size: 16px; font-weight: 600; margin: 0 8px 0 0; position: relative; transition: all 0.3s ease; }
.footer-nav a:hover{ color: #fff; }
.footer-nav a::after{ content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: #fff; transition: width 0.3s ease; }
.footer-nav a:hover::after{ width: 100%; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

/* circular badge for icons */
.contact-badge {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #0c8060;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(12,128,96,0.16);
}

.contact-badge svg { width: 30px; height: 14px; }
.contact-badge svg path { fill: #ffffff; }
.contact-badge i { font-size: 16px; color: #ffffff; }

.contact-item p {
  margin: 0;
  color: #ffffff;
  line-height: 1.3;
  font-size: 18px;
}

/* smaller address lines */
.contact-item.address p { font-size: 18px; opacity: 0.95; }

.footer-divider{ height:1px; background: rgba(255,255,255,.5); opacity:.6; }
.footer-bottom{ padding: 10px 0 12px; }
.footer-bottom a{ color:#fff; text-decoration:none; }
.footer-bottom a:hover{ opacity:.8; }
.fb-row{ display:flex; align-items:center; justify-content:flex-start; gap: 12px; padding: 6px 0; }
.copy{ color:#fff; opacity:.95; }
.logos{ display:flex; gap: 14px; align-items:center; }
.logo-badge{ display:inline-flex; align-items:center; justify-content:center; height:22px; padding: 0 8px; border-radius: 6px; background: rgba(255,255,255,.22); border:1px solid rgba(255,255,255,.35); color:#fff; font-weight:700; font-size:11px; letter-spacing:.04em; }
.policies{ color:#fff; opacity:.95; }

@media(max-width: 980px){
  .footer-top{ grid-template-columns: 1fr; }
  .f-right{ justify-self:start; }
  .site-footer{ margin-top: 40px; }
  
  /* Mobil için footer kategorilerini tek satır yap */
  .footer-categories-row{ display: none; }
  .footer-categories-row-mobile{ display: block; }
}

/* Services Page Styles */
.page-hero {
  background: url('../images/servis/servis.jpg') center/cover no-repeat !important;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  background-attachment: fixed;
}

.page-hero-content h1 {
  color: white;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Gray and White Section Styling */
.gray-section {
  background: #e9ecef;
  padding: 80px 0;
  position: relative;
}

.white-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}

/* Section Dividers */
.gray-section::after,
.white-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0c8060 0%, #0c8060 100%);
  opacity: 0.3;
}

.services-content {
  padding: 80px 0;
}

.service-section {
  padding: 80px 0;
}

.services-intro {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.services-intro.align-right {
  text-align: right;
}

.services-intro h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #0c8060;
  margin: 0 0 32px 0;
  letter-spacing: -0.5px;
}

.services-intro p {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.6;
  color: #666;
  margin: 0;
  font-weight: 400;
}

.service-item {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Alternating alignment */
.service-item.align-left {
  text-align: left;
}

.service-item.align-right {
  text-align: right;
}

.service-item h3 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: #0c8060;
  margin: 0 0 24px 0;
  letter-spacing: -0.3px;
}

.service-item p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: #555;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .gray-section,
  .white-section,
  .services-content,
  .service-section {
    padding: 60px 0;
  }
  
  .services-intro,
  .service-item {
    padding: 0 20px;
    text-align: left !important;
    max-width: 100%;
  }
}

/* Sectors Page Styles */
.sector-section {
  position: relative !important;
  min-height: 500px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
}

.sector-section.gray-section {
  background: #e9ecef !important;
}

.sector-section.white-section {
  background: #ffffff !important;
}

/* Section Dividers for sectors */
.sector-section::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, #0c8060 0%, #0c8060 100%) !important;
  opacity: 0.3 !important;
}

.sector-image {
  position: absolute !important;
  width: 50% !important;
  height: 120% !important;
  top: -10% !important;
  z-index: 1 !important;
}

.sector-section.image-right .sector-image {
  right: 0 !important;
}

.sector-section.image-left .sector-image {
  left: 0 !important;
}

.sector-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 20px !important;
}

.sector-section.image-right .sector-image img {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.sector-section.image-left .sector-image img {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.sector-content {
  position: relative !important;
  z-index: 2 !important;
  width: 55% !important;
  padding: 60px 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 12px !important;
  margin: 40px !important;
  backdrop-filter: blur(10px) !important;
} 

.sector-section.image-right .sector-content {
  margin-right: auto !important;
}

.sector-section.image-left .sector-content {
  margin-left: auto !important;
}

.sector-content h2 {
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 700 !important;
  color: #0c8060 !important;
  margin: 0 0 24px 0 !important;
  letter-spacing: -0.3px !important;
}

.sector-content p {
  font-size: clamp(15px, 1.8vw, 18px) !important;
  line-height: 1.7 !important;
  color: #555 !important;
  margin: 0 0 20px 0 !important;
  font-weight: 400 !important;
}

.sector-content p:last-child {
  margin-bottom: 0 !important;
}

/* Responsive Design for Sectors */
@media (max-width: 768px) {
  .sector-section {
    min-height: auto !important;
    flex-direction: column !important;
    padding: 40px 0 !important;
  }
  
  .sector-image {
    position: relative !important;
    width: 100% !important;
    height: 250px !important;
    top: 0 !important;
    margin-bottom: 20px !important;
  }
  
  .sector-image img {
    border-radius: 12px !important;
  }
  
  .sector-content {
    width: 100% !important;
    padding: 30px 20px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
  }
  
  .sector-section.image-right .sector-content,
  .sector-section.image-left .sector-content {
    margin: 0 !important;
  }
}

/* Contact Page Styles - New Design */
.contact-section {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  gap: 60px;
}

.contact-left {
  background: #ffffff;
  color: #333333;
  padding: 60px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-left h1 {
  font-size: 52px;
  font-weight: 300;
  margin: 0 0 10px 0;
  color: #333333;
  letter-spacing: -1px;
}

.contact-left .contact-subtitle {
  font-size: 18px;
  color: #0c8060;
  margin: 0 0 40px 0;
  font-weight: 600;
}

.contact-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 60px 0;
  max-width: 450px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 45px;
  gap: 25px;
}

.contact-icon {
  width: 65px;
  height: 65px;
  border: 2px solid #0c8060;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ffffff;
}

.contact-icon i {
  font-size: 26px;
  color: #0c8060;
}

.contact-details {
  flex: 1;
  padding-top: 10px;
}

.contact-title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px 0;
}

.contact-subtitle-info {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

.contact-right {
  background: #ffffff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.social-media-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 50px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon {
  width: 55px;
  height: 55px;
  background: #0c8060;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #0a6b50;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 128, 96, 0.3);
}

.modern-contact-form {
  max-width: 450px;
  margin: 70px 0 0 0;
  width: 100%;
}

.modern-contact-form .form-group {
  margin-bottom: 35px;
}

.modern-contact-form label {
  display: block;
  font-size: 16px;
  color: #333333;
  margin-bottom: 10px;
  font-weight: 500;
}

.modern-contact-form input,
.modern-contact-form textarea {
  width: 100%;
  padding: 0 0 12px 0;
  border: none;
  border-bottom: 1px solid #cccccc;
  background: transparent;
  font-size: 18px;
  color: #333333;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
  border-bottom-color: #0c8060;
}

.modern-contact-form textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 12px;
}

.send-button {
  background: #ffffff;
  color: #0c8060;
  border: 2px solid #0c8060;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 25px;
}

.send-button:hover {
  background: #0c8060;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 128, 96, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 60px 40px;
    gap: 50px;
  }
  
  .contact-left,
  .contact-right {
    padding: 40px 30px;
  }
  
  .social-media-top {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .modern-contact-form {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }
  
  .contact-wrapper {
    padding: 40px 20px;
    gap: 40px;
  }
  
  .contact-left,
  .contact-right {
    padding: 30px 20px;
  }
  
  .contact-left h1 {
    font-size: 40px;
  }
  
  .contact-info-item {
    margin-bottom: 35px;
  }
  
  .modern-contact-form {
    margin-top: 20px;
  }
}

/* Product Detail Page Styles - Moved from emobseries.html */
/* Force product detail pages to always show sticky header style */
.product-detail-page #site-header.header,
.product-detail-page #site-header.header.sticky,
.product-detail-page #site-header.header.is-hidden {
  background: var(--header-bg-sticky) !important;
  -webkit-backdrop-filter: blur(10px) saturate(120%) !important;
  backdrop-filter: blur(10px) saturate(120%) !important;
  box-shadow: var(--shadow) !important;
  border-bottom: 1px solid rgba(255,255,255,0.32) !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  z-index: 1100 !important;
  pointer-events: auto !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

/* Ensure header elements are clickable */
.product-detail-page #site-header.header * {
  pointer-events: auto !important;
}

/* Page Title Styles */
.page-title-section {
  background: #ffffff;
  padding: 60px 0 40px;
  text-align: left;
  margin-top: 120px; /* Add top margin to push content below the menu */
}
.page-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #0c8060;
  margin: 0 0 0 0px;
  letter-spacing: 0.02em;
}

/* Product Description Section */
.product-description-section {
  background: #ffffff;
  padding: 80px 0;
  margin-top: 120px; /* Add top margin to push content below the menu */
}
.description-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

/* Left side styles */
.product-category {
  font-size: 14px;
  font-weight: 600;
  color: #00bfa5;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-name {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: #37474f;
  line-height: 1.1;
  margin: 0 0 30px 0;
  letter-spacing: -0.02em;
}
.product-specs {
  margin-bottom: 40px;
}
.product-specs p {
  font-size: 16px;
  line-height: 1.6;
  color: #546e7a;
  margin: 0 0 12px 0;
}
.product-specs p:last-child {
  margin-bottom: 0;
}

.benefits-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: #00bfa5;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits-list li {
  font-size: 14px;
  line-height: 1.5;
  color: #546e7a;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}
.benefits-list li:before {
  content: '■';
  color: #00bfa5;
  position: absolute;
  left: 0;
  top: 0;
}

/* Right side styles */
.description-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.product-image-container {
  position: relative;
  width: 100%;
}
.product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.product-image:hover {
  transform: scale(1.02);
}

/* Applications Title Section */
.applications-title-section {
  background: #ffffff;
  padding: 60px 0 20px;
  text-align: center;
}
.applications-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 600;
  color: #0c8060;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .description-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .description-right {
    align-items: center;
  }
}

/* Video Section Styles */
.video-section {
  background: #ffffff;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.video-container iframe {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .video-container iframe {
    height: 300px;
  }
}

/* Mini Slider Styles - Centered on Page */
.mini-slider-section {
  background: #ffffff;
  padding: 40px 0 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}
.mini-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  margin: 0 auto;
}
.mini-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg) center/cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.mini-slide.active {
  opacity: 1;
}
.mini-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 128, 96, 0.3), rgba(0, 0, 0, 0.2));
}
.mini-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.mini-arrow {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  color: #0c8060;
  font-size: 18px;
  line-height: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}
.mini-arrow:hover {
  background: rgba(255,255,255,1);
  transform: scale(1.1);
}
.mini-timeline {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.mini-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.mini-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}
.mini-dots button.active {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .mini-slider {
    max-width: 100%;
    height: 300px;
  }
}

/* Image Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.image-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  animation: modalZoomIn 0.3s ease-out;
}

.image-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 10000;
  transition: opacity 0.2s ease;
}

.image-modal .close-modal:hover {
  opacity: 0.7;
}

@keyframes modalZoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Basic text column styling */
.section-text-column {
  text-align: left !important;
  margin: 0 !important;
}

/* Machine image styling */
.machine-image {
  margin: 0 !important;
}

/* SECTION SPECIFIC LAYOUTS */
/* PBT: Text LEFT, Image RIGHT */
.pbt-section .section-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 40px !important;
}
.pbt-section .section-text-column { order: 1 !important; flex: 1 !important; }
.pbt-section .machine-image { order: 2 !important; flex: 0 0 500px !important; width: 500px !important; }

/* AMOB: Image LEFT, Text RIGHT */
.amob-section .section-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 40px !important;
}
.amob-section .machine-image { order: 1 !important; flex: 0 0 500px !important; width: 500px !important; }
.amob-section .section-text-column { order: 2 !important; flex: 1 !important; }

/* KALTENBACH: Text LEFT, Image RIGHT */
.kaltenbach-section .section-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 40px !important;
}
.kaltenbach-section .section-text-column { order: 1 !important; flex: 1 !important; }
.kaltenbach-section .machine-image { order: 2 !important; flex: 0 0 500px !important; width: 500px !important; }

/* G-CNC: Image LEFT, Text RIGHT */
.gcnc-section .section-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 40px !important;
}
.gcnc-section .machine-image { order: 1 !important; flex: 0 0 500px !important; width: 500px !important; }
.gcnc-section .section-text-column { order: 2 !important; flex: 1 !important; }

/* WORTELBOER: Text LEFT, Image RIGHT */
.wortelboer-section .section-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 40px !important;
}
.wortelboer-section .section-text-column { order: 1 !important; flex: 1 !important; }
.wortelboer-section .machine-image { order: 2 !important; flex: 0 0 500px !important; width: 500px !important; }

/* DRIVECNC: Image LEFT, Text RIGHT */
.drivecnc-section .section-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 40px !important;
}
.drivecnc-section .machine-image { order: 1 !important; flex: 0 0 500px !important; width: 500px !important; }
.drivecnc-section .section-text-column { order: 2 !important; flex: 1 !important; }

/* Catalog Download Section */
.catalog-download {
  padding: 80px 0 170px 0;
  background: white;
  position: relative;
}

.catalog-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.catalog-left h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.catalog-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin: 0 0 40px;
  line-height: 1.5;
}

.catalog-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.catalog-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  color: #333;
}

.catalog-features i {
  color: #0c8060;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.catalog-form-container {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
}

.catalog-form-container h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.catalog-form-container > p {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 30px;
  line-height: 1.4;
}

/* Contact form style for catalog */
.catalog-contact-form {
  max-width: 500px;
  margin: 0;
  width: 100%;
}

.catalog-contact-form .form-group {
  margin-bottom: 25px;
}

.catalog-contact-form label {
  display: block;
  font-size: 14px;
  color: #333333;
  margin-bottom: 8px;
  font-weight: 500;
}

.catalog-contact-form input[type="text"],
.catalog-contact-form input[type="email"] {
  width: 100%;
  padding: 0 0 10px 0;
  border: none;
  border-bottom: 1px solid #cccccc;
  background: transparent;
  font-size: 16px;
  color: #333333;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.catalog-contact-form input:focus {
  border-bottom-color: #0c8060;
}

.checkbox-group {
  margin-top: 20px;
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  color: #555;
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #ddd;
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
  background: #0c8060;
  border-color: #0c8060;
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 1px;
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.catalog-send-button {
  background: #ffffff;
  color: #0c8060;
  border: 2px solid #0c8060;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.catalog-send-button:hover {
  background: #0c8060;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 128, 96, 0.3);
}

.catalog-send-button i {
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .catalog-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .catalog-download {
    padding: 60px 0 120px 0;
  }
  
  .catalog-contact-form {
    max-width: 100%;
    margin: 0;
  }
}

/* ========== MOBILE MENU STYLES ========== */

/* Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.mobile-logo img {
  width: 120px;
  height: auto;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
  background: #f5f5f5;
}

/* Mobile Navigation */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.mobile-nav a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover {
  color: #0c8060;
  background: rgba(12, 128, 96, 0.05);
  transform: translateX(4px);
}

.mobile-contact-btn {
  background: #0c8060;
  color: #fff !important;
  padding: 16px 24px;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
  background: #0a6b52;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Mobile Categories */
.mobile-categories {
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.mobile-categories h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-categories a {
  display: block;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid #f8f8f8;
  border-radius: 6px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.mobile-categories a:hover {
  color: #0c8060;
  background: rgba(12, 128, 96, 0.05);
  transform: translateX(4px);
}

/* ========== RESPONSIVE HEADER STYLES ========== */

/* Tablet and Mobile Styles */
@media (max-width: 980px) {
  .hamburger-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
    transition: all 0.3s ease;
    margin-left: 8px;
  }
  
  .hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
  }
  
  .hamburger-btn:active {
    transform: scale(0.95);
  }
  
  .hamburger-line {
    width: 28px;
    height: 4px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
  }
  
  .primary-nav {
    display: none !important;
  }
  
  .categories {
    display: none !important;
  }
  
  .header-actions .btn.contacts {
    display: none;
  }
  
  /* Adjust header layout for mobile */
  .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  
  .logo img {
    width: 150px;
    height: auto;
  }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  .mobile-menu {
    width: 280px;
  }
  
  .logo img {
    width: 120px;
  }
  
  .topbar {
    padding: 8px 12px;
  }
  
  .header .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .mobile-menu {
    width: 100%;
  }
  
  .mobile-menu-overlay.active .mobile-menu {
    right: 0;
  }
  
  .logo img {
    width: 100px;
  }
}

/* General mobile font improvements */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
  }
  
  p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .section-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  
  .btn {
    font-size: 16px;
    padding: 12px 24px;
    min-height: 48px;
  }
  
  /* About page specific mobile improvements */
  .about-section {
    padding: 50px 0;
  }
  
  .about-section .container {
    width: 95vw;
    max-width: 1200px;
  }
  
  .section-content {
    padding: 0 15px;
  }
  
  /* Footer mobile improvements */
  .footer-categories a {
    font-size: 16px;
    margin: 0 10px 0 0;
  }
  
  .footer-nav a {
    font-size: 16px;
  }
  
  .contact-item p {
    font-size: 16px;
  }
  
  .f-title {
    font-size: 20px;
  }
}

/* Map Section */
.map-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Map */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}
