/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; background: #fff; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; }
h1 { font-size: 3.2rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.subtitle { font-size: 1.2rem; color: #555; margin: 1rem 0 2rem; }

/* Buttons */
.btn-primary, .btn-outline {
  display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 600;
  text-decoration: none; transition: all 0.3s ease; margin: 10px 5px; font-size: 1rem;
}
.btn-primary { background: #1a3a6e; color: white; border: 2px solid #1a3a6e; }
.btn-primary:hover { background: #0f2a54; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(26,58,110,0.2); }
.btn-outline { background: transparent; color: #1a3a6e; border: 2px solid #1a3a6e; }
.btn-outline:hover { background: #1a3a6e; color: white; }

/* Navbar */
.navbar { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-link { color: #333; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-link:hover { color: #1a3a6e; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: #333; transition: 0.3s; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; background: linear-gradient(135deg, #f8f9fc 0%, #e3e8f0 100%); }
.hero-content { flex: 1; max-width: 600px; }
.hero-image { flex: 1; text-align: right; }
.hero-image img { max-width: 100%; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Section */
.section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 3rem; position: relative; }
.section-title::after { content: ''; width: 80px; height: 4px; background: #1a3a6e; display: block; margin: 1rem auto; border-radius: 2px; }
.bg-light { background: #f8f9fc; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-card { background: white; padding: 2rem; border-radius: 12px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.icon { width: 70px; height: 70px; background: #1a3a6e; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-weight: bold; font-size: 1.5rem; }

/* Service Language */
.service-lang > .lang { display: none; }
.service-lang > .lang.active { display: block; }
.service-card ul { margin: 1rem 0; padding-left: 1.5rem; text-align: left; }
.service-card ul li { margin-bottom: 0.5rem; list-style: disc; }
.service-card .cta { margin-top: 1rem; font-weight: 600; color: #1a3a6e; font-size: 0.95rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-team { display: flex; justify-content: center; }
.profile-card { max-width: 380px; text-align: center; }
.profile-img { width: 100%; max-width: 300px; height: auto; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.profile-text { margin-top: 1.5rem; text-align: left; }
.profile-text h4 { color: #1a3a6e; margin-bottom: 0.75rem; }

/* Checklists — NO ICONS */
.checklist { list-style: none; margin: 1.5rem 0; padding: 0; }
.checklist li { padding: 0.5rem 0; position: relative; }
.checklist li strong { color: #1a3a6e; }
.checklist ul { margin: 0.75rem 0 0 1.5rem; }
.checklist ul li { list-style: disc; font-size: 0.95rem; padding: 0.25rem 0; }
.checklist.small li { font-size: 0.9rem; }

/* Form */
.contact-form { max-width: 600px; margin: 2rem auto; background: white; padding: 2.5rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: #1a3a6e; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #ddd; border-radius: 8px; font-size: 1rem; transition: border 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #1a3a6e; box-shadow: 0 0 0 3px rgba(26,58,110,0.1);
}
.form-group textarea { resize: vertical; }
.form-status { margin-top: 1rem; font-size: 0.95rem; text-align: center; }
.form-status.success { color: #2e8b57; }
.form-status.error { color: #dc3545; }

/* Footer */
.footer { background: #1a1a1a; color: #ccc; padding: 3rem 0 1rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-logo { filter: brightness(0) invert(1); height: 40px; }
.footer-links a { color: #ccc; text-decoration: none; display: block; margin: 0.5rem 0; }
.footer-links a:hover { color: white; }
.footer-bottom { text-align: center; padding-top: 1rem; border-top: 1px solid #333; font-size: 0.9rem; }
/* Barcode Styling */
.barcode-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 12px auto;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 8px;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.footer-barcode {
  max-width: 150px;
  margin-top: 8px;
}
/* Language Switcher */
.lang-switcher { position: fixed; top: 20px; right: 20px; z-index: 1001; background: white; padding: 8px; border-radius: 50px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.lang-btn { background: none; border: none; padding: 8px 12px; font-weight: 600; cursor: pointer; border-radius: 50px; transition: 0.3s; }
.lang-btn.active, .lang-btn:hover { background: #1a3a6e; color: white; }

/* Responsive */
@media (max-width: 992px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-image { margin-top: 2rem; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .profile-text { text-align: center; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; background: white; flex-direction: column; padding: 2rem; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
  .nav-menu.active { left: 0; }
  .nav-link { padding: 1rem 0; font-size: 1.1rem; }
  h1 { font-size: 2.5rem; }
}