/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --primary: #1e73be;
  --dark: #0f1f2e;
  --light: #f7f9fc;
  --text: #333;
}

/* ================= GLOBAL ================= */
body {
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HEADER ================= */
.header {
  background: #fff;
  border-bottom: 2px solid var(--primary);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 50px;
}

.nav a {
  margin: 0 12px;
  font-weight: bold;
  position: relative;
  padding: 5px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch a {
  font-size: 14px;
  font-weight: bold;
}

/* ================= HERO ================= */
.hero {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 700px;
}

.heading-h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

/* ================= PAGE HEADER ================= */
.page-header {
  padding: 40px 0 40px;
  text-align: center;
}


.page-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
}

/* ================= PRODUCTS ================= */
.products {
  padding: 60px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.product-image {
  width: 100%;
  height: 160px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
}

.product-image img {
  width: 100%;
  height: 100%;
 object-fit: cover;}


.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.product-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* ================= PRODUCT CONTENT ================= */
.product-content {
  padding: 60px 0;

}

.product-content h2 {
  margin-bottom: 15px;
}

.product-content h3 {
  margin: 25px 0 10px;
}

.product-list {
  margin-left: 20px;
}

.product-list li {
  margin-bottom: 6px;
}



/* ================= INFO BOX ================= */
.product-info-box {
  background: var(--light);
  border-left: 4px solid var(--primary);
  padding: 15px;
  margin: 20px 0;
}

/* ================= TABLE ================= */
.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.tech-table th,
.tech-table td {
  border: 1px solid #ddd;
  padding: 10px;
}

.tech-table th {
  background: var(--light);
}

/* ================= BUTTONS ================= */
.product-btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--dark);
  color: #d1d5db;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.footer-col h4 {
  margin-bottom: 10px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #9ca3af;
}

/* ================= ABOUT ================= */
.about-intro {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.about-box {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.about-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.about-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1f33;
  margin-bottom: 8px;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* ================= CONTACT ================= */
.contact-clean {
  padding: 70px 20px;
  background: #f7f9fc;
}

.contact-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* ================= RTL ================= */
body.rtl {
  direction: rtl;
  text-align: right;
}

body.rtl .header-container {
  flex-direction: row-reverse;
}

body.rtl .products-grid,
body.rtl .about-grid {
  direction: rtl;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-img {
    height: 260px;
  }

  .heading-h1 {
    font-size: 28px;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }
}

/* ================= WHY AKSA ================= */
.why-aksa {
  padding: 80px 0;
  background: #f8fafc;
}

.why-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 17px;
  color: #555;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.why-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.why-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 15px;
  color: #666;
}


/* ================= TECH SUPPORT ================= */
.tech-support {
  padding: 80px 0;
  background: #ffffff;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tech-card {
  background: #0f172a;
  color: #fff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
}

.tech-icon {
  font-size: 34px;
  margin-bottom: 15px;
}

.tech-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tech-card p {
  font-size: 15px;
  color: #cbd5e1;
}

.tech-cta {
  margin-top: 40px;
  text-align: center;
}

/* ================= FORCE SECTION LAYOUT ================= */
section {
  display: block;
  width: 100%;
}

/* FIX WHY & TECH GRID COLLAPSE */
.why-grid,
.tech-grid {
  width: 100%;
}

.why-box,
.tech-card {
  display: block;
}


/* ===== SECTION TITLE ALIGN ===== */
.why-aksa .section-title,
.tech-support .section-title {
  text-align: center;
}

/* ===== HOVER EFFECTS ===== */
.why-box,
.tech-card {
  transition: all 0.3s ease;
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.15);
}

/* ===== TECH SUPPORT CARD FIX ===== */
.tech-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.tech-card p {
  color: #475569;
}

/* ===== ICON COLOR ===== */
.why-icon,
.tech-icon {
  color: #2563eb;
}

/* ================= PRODUCT DETAIL – CLEAN ================= */

/* ================= COMPLIANCE (ROHS / REACH) ================= */


/* ================= COMPLIANCE (ROHS / REACH) ================= */

/* ================= COMPLIANCE (ROHS / REACH) ================= */

/* ================= COMPLIANCE (ROHS / REACH) – FINAL ================= */

.compliance-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 40px auto 0;
  align-items: flex-start;
}

.compliance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.compliance-item img {
  height: 52px;
  width: auto;
  margin-bottom: 12px;
}

.compliance-item h4 {
  margin-bottom: 8px;
}

.compliance-item p {
  text-align: justify;
  max-width: 420px;
}


.product-detail-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.product-section {
  margin-top: 42px;
}

.product-section h3 {
  font-size: 21px;
  font-weight: 500;
  color: #0b2c4d;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
}

.product-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.product-section p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #444;
  max-width: 820px;
}

.product-section ul {
  list-style: none;
  margin-top: 12px;
  padding-left: 0;
}

.product-section li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15.5px;
  color: #444;
}

.product-section li::before {
  content: "›";
  font-size: 18px;
  color: var(--primary);
  line-height: 1.2;
  margin-top: 2px;
}

/* Application Areas – visual rhythm */
.product-section.apps {
  background: linear-gradient(90deg, #f5f9ff, #ffffff);
  padding: 34px 32px;
  border-radius: 16px;
}

.product-section.apps ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 36px;
}

/* CTA button safety */

/* ===== PRODUCT CTA = HEADER CTA ===== */

.product-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 600;
}
/* ===== COMPLIANCE CONTEXT FIX (TR = EN) ===== */

.product-content .compliance-box {
  max-width: 820px;          /* üst metinlerle aynı optik genişlik */
  margin-left: 0;            /* ortalamayı iptal */
  margin-right: 0;
}

/* ===== COMPLIANCE TEXT VISIBILITY FIX ===== */

.compliance-item p {
  display: block;
  width: 100%;
  max-width: none;
  color: #333;              /* zorla görünür */
  margin-top: 6px;
}

/* ===== COMPLIANCE TEXT HARD FIX ===== */

.compliance-item p {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  margin-top: 8px;
  color: #333;
}

/* ===================================================
   GLOBAL SECTION RITIM FIX (SAFE OVERRIDE)
   =================================================== */
.section {
  padding: 60px 0;
}

.section-light {
  padding: 60px 0;
  background: #f7f9fc;
}

/* ===================================================
   ABOUT PAGE – LAYOUT & SPACING FIX
   Sadece hakkimizda sayfasını etkiler
   =================================================== */

.about-intro {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-title {
  margin-bottom: 16px;
}

/* ABOUT GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* ABOUT BOX */
.about-box {
  background: #ffffff;
  padding: 26px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* ABOUT ICON */
.about-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

/* ABOUT TEXT */
.about-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.about-box p {
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================================
   BUTTON CONSISTENCY (NO BREAKING CHANGE)
   =================================================== */
.product-btn,
.header-btn {
  background: var(--primary, #0F4C75);
  color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
}

.product-btn:hover,
.header-btn:hover {
  opacity: 0.9;
}

/* ================= SECTION BASE FIX ================= */

.section {
  padding: 70px 0;
}

.section-light {
  background: #f7f9fc;
}

/* ================= ABOUT PAGE HEADER FIX ================= */

.section .section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section p {
  text-align: center;
}

/* ================= ABOUT GRID ALIGN FIX ================= */

.about-grid {
  margin-top: 20px;
}
.product-compare-box {
  margin-top: 56px;
  padding: 36px;
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.product-compare-box h3 {
  margin-bottom: 18px;
}

/* TABLE */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px; /* SATIRLAR ARASI BOŞLUK */
  margin-top: 20px;
}

.compare-table thead th {
  font-weight: 600;
  padding: 14px;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  background: #ffffff;
}

.compare-table tr td:first-child {
  font-weight: 500;
  color: #333;
}

/* HEADER ROW */
.compare-table tr:first-child th {
  background: transparent;
  border: none;
}

/* DATA ROWS */
.compare-table tr td,
.compare-table tr th {
  border-radius: 10px;
}

/* COLUMN EMPHASIS */
.compare-table tr td:nth-child(3),
.compare-table tr th:nth-child(3) {
  background: #f0f5ff;
  font-weight: 600;
}

/* CTA AREA */
.compare-cta {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #e2e6ee;
}

.compare-cta p {
  margin-bottom: 14px;
  color: #555;
}


.product-spec-box {
  margin: 40px 0;
  padding: 28px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e8ef;
}

.spec-table td:first-child {
  width: 35%;
  font-weight: 500;
  color: #333;
  background: #f8f9fc;
}



