/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0a38c2;
  --primary-light: #1a52e0;
  --accent: #3b82f6;
  --accent-dark: #2563eb;
  --light: #f0f4f8;
  --white: #ffffff;
  --text: #2d3748;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --transition: all 0.3s ease;
  --header-h: 140px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input,
select,
textarea {
  font-family: inherit;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: white;
}
.logo-img {
  height: 120px;
  width: auto;
  display: block;
}
.footer .logo-img {
  height: 64px;
}
.logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  padding: 0 16px;
}
.nav-link {
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(10, 56, 194, 0.08);
}
.nav-link.active {
  color: var(--primary);
  font-weight: 700;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-toggle {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
}
.lang-toggle:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SLIDER ===== */
.hero {
  margin-top: var(--header-h);
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--primary);
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
}
.slide-bg-icon {
  font-size: 22rem;
  opacity: 0.05;
  margin-right: -2rem;
  line-height: 1;
}
.slide-1 {
  background:
    linear-gradient(
      100deg,
      rgba(4, 16, 64, 0.88) 0%,
      rgba(8, 40, 150, 0.72) 45%,
      rgba(10, 56, 194, 0.45) 100%
    ),
    url("../img/slides/G1.jpg") center / cover no-repeat;
}
.slide-2 {
  background:
    linear-gradient(
      100deg,
      rgba(4, 16, 64, 0.88) 0%,
      rgba(8, 40, 150, 0.72) 45%,
      rgba(10, 56, 194, 0.45) 100%
    ),
    url("../img/slides/G2.jpg") center / cover no-repeat;
}
.slide-3 {
  background:
    linear-gradient(
      100deg,
      rgba(4, 16, 64, 0.88) 0%,
      rgba(8, 40, 150, 0.72) 45%,
      rgba(10, 56, 194, 0.45) 100%
    ),
    url("../img/slides/G3.jpg") center / cover no-repeat;
}

.slide-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 15% 80%,
      rgba(255, 255, 255, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 20%,
      rgba(10, 56, 194, 0.35) 0%,
      transparent 55%
    );
}
.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding: 0 40px;
  text-align: left;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.slide-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.slide-title .accent {
  color: #ffffff;
  opacity: 0.85;
}
.slide-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 520px;
}
.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}
.slide-cta:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--accent);
  width: 28px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.slider-arrow.prev {
  left: 24px;
}
.slider-arrow.next {
  right: 24px;
}

/* ===== SEARCH SECTION ===== */
.search-section {
  background: var(--light);
  padding: 44px 24px;
  border-bottom: 1px solid var(--border);
}
.search-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.search-label {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 500;
}
.search-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  transition: var(--transition);
}
.search-form:focus-within {
  border-color: var(--accent);
}
.search-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  font-size: 1rem;
  outline: none;
  color: var(--text);
  background: white;
}
.search-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 16px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-btn:hover {
  background: var(--accent-dark);
}

/* ===== SHARED SECTION ===== */
.section {
  padding: 80px 24px;
}
.section-alt {
  background: var(--light);
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== CATEGORY CARDS ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.category-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}
.category-card:hover::after {
  transform: scaleX(1);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.category-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.category-desc {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.category-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.brand-tag {
  background: var(--light);
  color: var(--text-light);
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
  background: var(--primary);
  padding: 64px 24px;
}
.brands-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.brands-section-title {
  text-align: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.brands-section-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}
.brand-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
}
.brand-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.brand-logo-box {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.2;
  color: white;
}
.brand-card-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* Brand logo images */
.brand-logo-box.has-img {
  background: var(--white);
  padding: 5px;
  width: 74px;
  height: 54px;
}
.brand-logo-box.has-img img,
.brand-page-logo.has-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-page-logo.has-img {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px;
  width: 120px;
  height: 88px;
}

/* Brand colors */
.bc-belimo {
  background: #cc0000;
}
.bc-siemens {
  background: #009999;
}
.bc-nenutec {
  background: #5b21b6;
}
.bc-samsung {
  background: #1428a0;
}
.bc-heatex {
  background: #d97706;
}
.bc-untes {
  background: #16a34a;
}
.bc-imas {
  background: #1e3a5f;
}
.bc-abb {
  background: #cc0000;
}
.bc-danfoss {
  background: #c00;
}
.bc-wilo {
  background: #8b0000;
}
.bc-lowara {
  background: #1d4ed8;
}
.bc-grundfos {
  background: #002f6c;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--accent);
  padding: 44px 24px;
}
.cta-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip-text h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.cta-strip-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.cta-btn-white {
  background: var(--white);
  color: var(--accent);
}
.cta-btn-white:hover {
  background: var(--primary);
  color: var(--white);
}
.cta-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: #040f1e;
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 24px 28px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}
.fci-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  margin-top: var(--header-h);
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 60%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
}
.breadcrumb .current {
  color: var(--accent);
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-icon {
  font-size: 14rem;
  opacity: 0.07;
  line-height: 1;
}
.about-visual-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 32px;
}
.about-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.about-stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 500;
}

.about-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}
.highlight-icon {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== VISION MISSION ===== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}
.vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.vm-card.vision::before {
  background: var(--accent);
}
.vm-card.mission::before {
  background: var(--primary);
}
.vm-big-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}
.vm-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.vm-card p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 0.95rem;
}

.values-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 32px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.value-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}
.value-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.value-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===== HR PAGE ===== */
.hr-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}
.apply-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--light);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.file-drop {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.file-drop:hover,
.file-drop:focus-within {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.03);
}
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-drop-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 8px;
}
.file-drop-text {
  color: var(--text-light);
  font-size: 0.875rem;
}
.file-drop-text strong {
  color: var(--accent);
}

.submit-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 15px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px;
}
.form-success-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--text-light);
}

/* ===== BRANDS PAGE ===== */
.brands-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 24px;
}
.brand-page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.brand-page-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.4);
}
.brand-page-logo {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
}
.brand-page-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.brand-page-cats {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ===== KATEGORILER PAGE ===== */
.search-result-bar {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 32px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.search-result-bar.visible {
  display: flex;
}
.search-result-bar p {
  font-size: 0.9rem;
  color: var(--text);
}
.search-result-bar p strong {
  color: var(--accent);
}
.clear-search {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.clear-search:hover {
  color: var(--accent);
}

/* ── Category accordion ── */
.kat-acc {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.kat-acc.open {
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.35);
}
.kat-acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
}
.kat-acc-header .cat-section-icon {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}
.kat-acc-title {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}
.kat-acc-chevron {
  color: var(--text-light);
  transition: var(--transition);
}
.kat-acc.open .kat-acc-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.kat-acc-body {
  display: none;
  padding: 0 22px 24px;
}
.kat-acc.open .kat-acc-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}
.kat-acc-img {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--light);
}
.kat-acc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kat-acc-img-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  min-height: 220px;
}
.kat-acc-desc {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.kat-acc-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kat-sub-tag {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .kat-acc.open .kat-acc-body {
    grid-template-columns: 1fr;
  }
}

.cat-section {
  margin-bottom: 60px;
}
.cat-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.cat-section-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cat-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  padding-left: 14px;
  border-left: 4px solid var(--accent);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}
.product-card.hidden {
  display: none;
}
.product-img {
  height: 150px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.product-img-brand {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.product-body {
  padding: 14px;
}
.product-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.product-brand-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===== ILETISIM PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: white;
}
.contact-item-body h3 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.contact-item-body p,
.contact-item-body a {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
}
.contact-item-body a:hover {
  color: var(--accent);
}

.contact-social-block {
  margin-top: 8px;
}
.contact-social-block h3 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.social-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.social-btn-ig {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  color: white;
}
.social-btn-wa {
  background: #25d366;
  color: white;
}
.social-btn-li {
  background: #0077b5;
  color: white;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.map-wrap {
  margin-top: 56px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== URUN DETAIL PAGE ===== */
.urun-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: flex-start;
}
.urun-img-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.urun-info {
  padding-top: 8px;
}
.urun-name {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  margin: 16px 0 20px;
  line-height: 1.2;
}
.urun-desc {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 32px;
}
.urun-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.urun-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.urun-btn-wa {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.urun-btn-wa:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}
.urun-btn-ds {
  background: var(--primary);
  color: white;
}
.urun-btn-ds:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.urun-btn-contact {
  background: var(--light);
  color: var(--text);
  border: 1px solid var(--border);
}
.urun-btn-contact:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .urun-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .urun-img-box {
    position: static;
    min-height: 240px;
  }
}

/* ===== UTILITY ===== */
.lang-tr,
.lang-en {
}
.hidden-lang {
  display: none !important;
}
.text-accent {
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .about-grid {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  :root {
    --header-h: 88px;
  }
  .logo-img {
    height: 68px;
  }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .nav.open {
    display: flex;
  }
  .nav-link {
    padding: 12px 16px;
  }
  .hamburger {
    display: flex;
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 500px;
  }
  .slide-content {
    padding: 0 24px;
    text-align: center;
  }
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .apply-form-wrap {
    padding: 28px;
  }
  .contact-form-card {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 440px;
  }
  .slider-arrow {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .vm-card {
    padding: 28px;
  }
}
