:root {
  --bg: #f4f7fa;
  --text: #1a1a1a;
  --primary: #f45748;
  --secondary: rgba(255, 255, 255, 0.7);
  --card-bg: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(10px);
  --shadow: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
  --bg: #121212;
  --text: #e0e0e0;
  --primary: #f45748;
  --secondary: rgba(30, 30, 30, 0.7);
  --card-bg: rgba(50, 50, 50, 0.4);
  --glass-blur: blur(10px);
  --shadow: rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: all 0.3s ease;
  line-height: 1.6;
}

header {
  backdrop-filter: var(--glass-blur);
  background-color: var(--secondary);
  color: var(--text);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px var(--shadow);
}

header h1 {
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav a {
  color: var(--text);
  margin: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

#toggleDarkMode {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.3s ease;
}

#toggleDarkMode:hover {
  transform: rotate(20deg);
}

main {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

section {
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
}

section:hover {
  transform: scale(1.01);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  box-shadow: 0 2px 4px var(--shadow);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea {
  background: rgba(0, 0, 0, 0.5);
  color: white;
}

input:focus, textarea:focus {
  outline: 2px solid var(--primary);
}

button, input[type="submit"] {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover, input[type="submit"]:hover {
  background-color: #f45748;
  transform: scale(1.03);
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--secondary);
  color: var(--text);
  font-size: 0.9rem;
  backdrop-filter: var(--glass-blur);
  margin-top: 3rem;
}

footer a {
  margin: 0.5rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary);
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1rem;
  }

  nav a, #toggleDarkMode {
    margin: 0.5rem 0;
    display: inline-block;
  }
}

/* FAQ PAGE STYLE */

.faq-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

.faq-item {
  margin-bottom: 2rem;
  background-color: rgba(0, 0, 0, 0.03);
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--primary, #0074D9);
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

[data-theme="dark"] .faq-item {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-item h2 {
  margin-top: 0;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  gap: 0.5rem;
}

.faq-item p {
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

.faq-item a {
  color: var(--primary, #0074D9);
  text-decoration: underline;
}

.faq-item a:hover {
  text-decoration: none;
}

/* HOME PAGE STYLE */

.home-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
}

[data-theme="dark"] .hero {
  background: rgba(255, 255, 255, 0.05);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: var(--primary, #f45748);
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #c03636;
}

.what-we-do, .features, .call-to-action {
  margin-top: 3rem;
}

.features h2, .what-we-do h2, .call-to-action h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-item {
  flex: 1 1 250px;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

[data-theme="dark"] .feature-item {
  background-color: rgba(255, 255, 255, 0.03);
}

.feature-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary, #0074D9);
}

/* MAP PAGE STYLE */

.map-hero {
  text-align: center;
  padding: 3rem 1rem 1.5rem;
  background: linear-gradient(to right, #f45748, #ff8080);
  color: white;
}

.map-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.map-hero p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.map-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

#map {
  height: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-footer-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text);
}

@media (max-width: 600px) {
  #map {
    height: 400px;
  }

  .map-hero h1 {
    font-size: 2rem;
  }
}



/* STATUS PAGE STYLE */


.status-container {
  max-width: 960px;
  margin: 2rem auto;
  padding: 2rem 1rem;
}

.status-updated {
  color: var(--text);
  margin-bottom: 2rem;
}

.status-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.status-card {
  flex: 1 1 280px;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.status-card i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.status-card.success {
  background-color: #28a745;
}

.status-card.warning {
  background-color: #ffc107;
  color: black;
}

.status-card.danger {
  background-color: #f54748;
}

.notice-box {
  margin-top: 3rem;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  border-radius: 6px;
}

[data-theme="dark"] .notice-box {
  background-color: rgba(255, 255, 255, 0.05);
}

.notice-box h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.notice-box ul {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
}



