* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background: #fff;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.logo span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #b8860b;
}
.logo img {
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #b8860b;
  transform: scale(1.05);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #b8860b;
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.mobile-menu a {
  padding: 10px 0;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.3s;
}
.mobile-menu a:hover {
  color: #b8860b;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.show {
    display: flex;
    animation: fadeDown 0.3s ease;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.hero-content h1 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.contact-section {
  padding: 6rem 2rem;
  background: #f9f9f9;
}
.contact-container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.contact-container h2 {
  text-align: center;
  color: #b8860b;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
button[type="submit"] {
  background: #b8860b;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
button[type="submit"]:hover {
  background: #e0a106;
}

#formMessage {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 1.5rem;
  }
}

.footer {
  background: #111;
  color: #fff;
  padding: 3rem 1rem 2rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}
.footer-about {
  text-align: center;
  margin-bottom: 1.5rem;
}
.footer-about img {
  height: 50px;
  margin-bottom: 0.5rem;
}
.footer-about h3 {
  color: #b8860b;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.footer-about p {
  color: #ccc;
  font-size: 0.9rem;
}
.footer-links h4,
.footer-contact h4 {
  color: #b8860b;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.25rem;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #b8860b;
}
.footer-contact p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.footer-contact a {
  color: #b8860b;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.social-icons {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.social-icons a {
  color: #b8860b;
  font-size: 1.1rem;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #fff;
  transform: scale(1.05);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: #aaa;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0 1rem;
  }
}
@media (min-width: 769px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    padding: 0 2rem 3rem;
  }
  .footer-about,
  .footer-links,
  .footer-contact {
    text-align: left;
    margin-bottom: 0;
  }
  .social-icons {
    justify-content: flex-start;
    gap: 1rem;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #b8860b;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  z-index: 999;
}
.back-to-top.show {
  display: flex;
}
.back-to-top:hover {
  background: #e0a106;
  transform: scale(1.1);
}
.contact-details {
  text-align: center;
  font-size: 1.1rem;
  line-height: 2;
  color: #333;
}

.contact-details i {
  color: #b8860b;
  margin-right: 8px;
}

.contact-details a {
  color: #b8860b;
  text-decoration: none;
  transition: 0.3s;
}

.contact-details a:hover {
  text-decoration: underline;
}
