/* style.css */

:root {
  --primary-color: #1f2937;
  --accent-color: #f97316;
  --bg-light: #f9fafb;
  --text-color: #111827;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --radius: 12px;
}

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

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.header {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 4rem 1rem;
}

.header h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #ea580c;
}

.services {
  background: var(--white);
  padding: 4rem 1rem;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2rem;
}

.service-item {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact, .feedback, .faq {
  padding: 4rem 1rem;
  background-color: var(--white);
}

.map-placeholder {
  margin-top: 1rem;
  height: 200px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  border-radius: var(--radius);
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.faq-item {
  margin-top: 1.5rem;
}

.faq-item h3 {
  font-weight: 600;
}

.footer {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
.language-switcher {
  position: absolute;
  top: 10px;
  right: 20px;
}

.language-switcher button {
  margin: 0 5px;
  padding: 5px 10px;
  background-color: #eee;
  border: 1px solid #ccc;
  cursor: pointer;
}
.language-switcher button:hover {
  background-color: #ddd;
}

@media (max-width: 600px) {
  .header h1 {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* --- Added styles for new sections --- */
.section { background: var(--white); padding: 2rem 1rem; }
.table-scroll { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border: 1px solid #e5e7eb; padding: 0.75rem; text-align: left; }
.table thead th { background: #f3f4f6; font-weight: 600; }
.muted { color: #6b7280; font-size: 0.9rem; margin-top: 0.75rem; display: block; }
.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.75rem; margin: 1rem 0 2rem; }
.guide-card { display: block; padding: 1rem; background: var(--bg-light); border-radius: var(--radius); text-decoration: none; color: var(--text-color); box-shadow: var(--shadow); text-align: center; }
.media { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.75rem; }
.media-item { background: var(--bg-light); padding: 1rem; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.media-thumb, .video-embed { height: 160px; display: flex; align-items: center; justify-content: center; border: 2px dashed #d1d5db; border-radius: var(--radius); }
.bullet-list { margin-top: 1rem; padding-left: 1.2rem; }
.bullet-list li { margin: 0.5rem 0; }
.contact-list { margin-top: 1rem; padding-left: 1.2rem; }
.contact-list li { margin: 0.5rem 0; }
@media (max-width: 600px) {
  .media-thumb, .video-embed { height: 120px; }
}

/* Footer bottom positioning */
html, body { height: 100%; display: flex; flex-direction: column; }
body > footer { margin-top: auto; }

/* tighter vertical rhythm */
.section + .section { margin-top: 0; }
.container > h2 { margin-bottom: 0.75rem; }
.table { margin-top: 0.5rem; }
