/* ===== Global ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #fffdf5;
  color: #333;
  line-height: 1.6;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #F1C338;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ===== Logo with Text & Tagline ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .main-name {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', Times, serif;
  letter-spacing: 1px;
}

.logo-text .tagline {
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== Nav Links ===== */
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background-color: #222;
}

/* ===== Hamburger Button ===== */
.hamburger {
  display: none;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* ===== Contact Section ===== */
.contact-section {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

.card {
  background: #fff;
  max-width: 950px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

@media (max-width: 880px) {
  .card {
    grid-template-columns: 1fr;
  }

  .card .form-wrap {
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.03);
    padding-top: 18px;
  }
}

.info {
  padding: 36px 44px;
  background: #fffdf5;
}

.info h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.info p {
  color: #555;
  margin-bottom: 20px;
}

.contact-meta {
  margin-top: 18px;
}

.small {
  font-size: 13px;
  color: #777;
}

/* ===== Form ===== */
.form-wrap {
  background: #fff;
  padding: 28px;
  border-left: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

form {
  display: grid;
  gap: 12px;
}

.row {
  display: flex;
  gap: 12px;
}

.col {
  flex: 1;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #555;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

textarea {
  min-height: 120px;
}

input:focus, textarea:focus {
  border-color: #F1C338;
  outline: none;
}

button {
  background: #F1C338;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

button:hover {
  background: #e0b92e;
}

/* ===== Error & Success Messages ===== */
.error {
  font-size: 13px;
  color: #e11d48;
  margin-top: 4px;
  display: block;
}

.success {
  display: none;
  color: #16a34a;
  font-weight: 600;
  transition: opacity 0.4s ease;
}

/* ===== Map Section ===== */
.location-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff7df;
}

.location-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.location-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.map-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== Footer ===== */
.footer-grid {
  background: #F1C338;
  padding: 60px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  color: #222;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #007bff;
  margin-top: 8px;
  border-radius: 2px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-column a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #007bff;
}

/* ===== Contact Info ===== */
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* ===== Social Links ===== */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #222;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: #007bff;
  transform: translateX(5px);
}

.social-links i {
  font-size: 1.3rem;
  color: #007bff;
  width: 25px;
  text-align: center;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  background: #e2b92e;
  padding: 18px 10%;
  text-align: center;
  font-size: 0.95rem;
  color: #222;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .logo img { height: 45px; }
  .logo-text .main-name { font-size: 1.4rem; }
  .logo-text .tagline { font-size: 0.8rem; }
  .nav-links a { font-size: 1rem; padding: 6px 10px; }
  .info { padding: 28px; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    right: 25px;
    flex-direction: column;
    background: #F1C338;
    padding: 20px;
    width: 220px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease forwards;
  }
  .nav-links.active { display: flex; }
  .nav-links a {
    padding: 14px 0;
    margin: 6px 0;
    text-align: center;
    width: 100%;
  }
  .card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; padding: 40px 7%; }
  .footer-column h3::after { margin: 8px auto; }
  .social-links { align-items: center; }
  .social-links a { justify-content: center; }
  .contact-info li { justify-content: center; }
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 1; transform: translateY(0); }
}
