:root {
  --primary: #ff9500;
  --primary-dark: #e67e00;
  --accent: #f5a623;
  --text: #1a1410;
  --text-light: #5a5a5a;
  --surface: #fff4e6;
  --border: #f5e6d3;
  --bg-light: #fafafa;
  --shadow: 0 18px 45px rgba(255, 149, 0, 0.12);
  --shadow-soft: 0 8px 20px rgba(255, 149, 0, 0.06);
  --glass: rgba(255, 255, 255, 0.85);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.5) 0%, rgba(255, 250, 245, 0.5) 100%);
  min-height: 100vh;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

/* HEADER & NAVBAR */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 220px;
  height: 110px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 auto;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
}

.cta-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* BUTTONS */
.btn {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.lang-switch {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
}

.lang-switch button {
  padding: 6px 14px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-switch button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* HERO SECTION */
.hero {
  padding: 100px 0 120px;
  text-align: left;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 149, 0, 0.15) 0%, rgba(230, 126, 0, 0.1) 100%), url('../../back1.avif') center/cover;
  color: white;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-grid > div:first-child {
  max-width: 650px;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-card h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.hero-card p {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.hero-card .list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card .list li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.hero-card .list li:last-child {
  border-bottom: none;
}

.hero-card .list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1rem;
}

/* SECTIONS */
.section {
  padding: 70px 0;
  position: relative;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 50px;
}

.who-we-are p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* VALUES & CARDS */
.values-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-card,
.card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
}

.value-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.value-card h3,
.card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card p,
.card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* PROCESS SECTION */
.process-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.process-column h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 700;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 600;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* COMPLIANCE SECTION */
.compliance {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-soft);
  margin-top: 50px;
}

.compliance h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.compliance p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  margin: 70px 0;
  border-radius: 12px;
}

.cta-band h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-band p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-band-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band .btn {
  background: white;
  color: var(--primary);
  font-weight: 700;
}

.cta-band .btn:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

/* CONTACT BLOCK */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.contact-info h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.contact-detail {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-detail strong {
  color: var(--primary);
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.contact-detail p {
  color: var(--text);
  font-size: 1rem;
  margin: 0;
}

.contact-detail a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* CONTACT FORM */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 20px;
}

/* FILTER FORM STYLES */
.form {
  display: grid;
  gap: 16px;
}

.input-group {
  display: grid;
  gap: 8px;
}

.input-group label {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff9500' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

.input-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* FOOTER */
footer {
  background: var(--text);
  color: white;
  padding: 50px 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-column p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-column a {
  display: block;
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* LEGACY SUPPORT */
.page-hero {
  padding: 52px 0 20px;
}

.page-hero .breadcrumb {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.list li,
.list a {
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: all 0.3s ease;
}

.list a:hover {
  color: var(--primary);
  background: var(--surface);
}

.notice {
  padding: 16px;
  border-radius: 12px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.table th, .table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

a {
  color: inherit;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .brand {
    order: 1;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .nav-links {
    order: 4;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 500px;
  }

  .nav-links a {
    padding: 12px 16px;
    display: block;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .cta-header {
    order: 2;
    gap: 8px;
  }

  .lang-switch {
    gap: 4px;
  }

  .lang-switch button {
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 60px 0 80px;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-card {
    padding: 30px;
  }

  .stats {
    gap: 15px;
  }

  .stat {
    flex: 1 1 calc(50% - 15px);
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .values-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .process-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-column h3 {
    font-size: 1.2rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info,
  .contact-form {
    padding: 24px;
  }

  .cta-band {
    padding: 40px 0;
    margin: 50px 0;
  }

  .cta-band h2 {
    font-size: 1.5rem;
  }

  .cta-band p {
    font-size: 0.95rem;
  }

  .cta-band-buttons {
    flex-direction: column;
  }

  .cta-band .btn {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-column h4 {
    font-size: 0.95rem;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.85rem;
  }

  .section {
    padding: 50px 0;
  }

  .who-we-are p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100%, 95%);
  }

  .brand {
    font-size: 1rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  header {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .value-card,
  .card {
    padding: 20px 16px;
  }

  .value-card h3,
  .card h3 {
    font-size: 1rem;
  }

  .value-card p,
  .card p {
    font-size: 0.85rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-content h4 {
    font-size: 0.95rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  .compliance {
    padding: 24px;
  }

  .compliance h3 {
    font-size: 1.1rem;
  }

  .compliance p {
    font-size: 0.85rem;
  }

  .contact-detail {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .cta-band {
    margin: 40px 0;
    padding: 32px 0;
  }

  .cta-band h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .cta-band p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }
}
