/* Kedi Soap - Modern Clean Corporate Style */
:root {
  --primary: #2d8a5e;
  --primary-dark: #1f6b47;
  --primary-light: #e8f5ee;
  --accent: #f0a500;
  --text: #222;
  --text-light: #555;
  --bg: #ffffff;
  --bg-alt: #f7faf8;
  --border: #e0e8e3;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --max-w: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.logo span {
  color: var(--text);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.lang-switch {
  display: flex;
  gap: 6px;
  font-size: 0.85rem;
}
.lang-switch a {
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--text-light);
  border: 1px solid transparent;
}
.lang-switch a.active,
.lang-switch a:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #e8f5ee 0%, #f7faf8 50%, #fff 100%);
  padding: 70px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 28px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  margin-left: 12px;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff !important;
}

/* Sections */
.section {
  padding: 60px 0;
}
.section-alt {
  background: var(--bg-alt);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.card .icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--primary);
}
.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}
.card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Features list */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-item .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}
.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
  margin-top: 20px;
}
.stat-item {
  padding: 20px;
}
.stat-item .number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}
.stat-item .label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* About content */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.about-text h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 14px;
}
.about-box {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 30px;
  border-left: 4px solid var(--primary);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-3px);
}
.product-card .img-placeholder {
  height: 160px;
  background: linear-gradient(135deg, #d4edda, #e8f5ee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
}
.product-card .body {
  padding: 20px;
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.tag {
  display: inline-block;
  font-size: 0.75rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-item .icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-form {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

/* Footer */
.footer {
  background: #1a2e24;
  color: #c8d6cf;
  padding: 50px 0 20px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.footer p,
.footer a {
  color: #a8bdb3;
  font-size: 0.9rem;
}
.footer a:hover {
  color: #fff;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid #2a4036;
  padding-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: #7a9488;
}

/* Utilities */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

/* Mobile nav simple */
@media (max-width: 700px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 16px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  .lang-switch {
    margin-left: auto;
  }
}
/* Images */
.hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.service-imgs img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 700px) {
  .service-imgs {
    grid-template-columns: 1fr;
  }
}
