@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=SUSE:wght@100..800&family=Suwannaphum:wght@100;300;400;700;900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #000;
}

:root {
  --primary-color: #07063e;
  --secondary-color: #0f59af;
  --accent-color: #ff6b6b;
  --bg-light: #f8f9fa;
  --text-dark: #000;
  --text-light: #ecf0f1;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  width: 60px;
}

.top-nav {
  background-color: var(--primary-color);
  padding: 12px 0;
}

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

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-family: "Ubuntu";
  font-weight: bold;
  font-size: 25px;
  color: white;
  text-decoration: none;
  margin-left: 10px;
}

.brand-section {
  display: flex;
  align-items: center;
}

.menu-button {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
}

.nav-links li a::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #ffffff;
  width: 0;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.hero-section {
  background: linear-gradient(rgba(108, 99, 255, 0.8), rgba(74, 144, 226, 0.8));
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: white;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.section {
  padding: 50px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.column {
  flex: 1;
  min-width: 300px;
}

.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
}

.card-body {
  padding: 20px;
  text-align: center;
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.card-text {
  margin-bottom: 8px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.form-column {
  flex: 1;
  min-width: 250px;
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
}

.form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

.form-input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

.text-center {
  text-align: center;
}

.submit-btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #ff5252;
}

.map-img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 40px 0 20px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-title {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  font-size: 24px;
  justify-content: flex-end;
  margin-top: 15px;
}

.social-link {
  color: white;
  text-decoration: none;
}

.social-link:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.copyright {
  text-align: center;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .footer-column {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
