@import url("https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap");

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

body {
  font-family: "Quantico", sans-serif;
  margin-left: 4.5%;
  margin-right: 4.5%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* --- Navigation --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4.5%;
  position: relative;
}

#Logo {
  width: 7rem;
  height: 7rem;
  z-index: 1001;
}

#Logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* Hamburger Animation when open */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.Nav-Items ul {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  align-items: center;
}

.Nav-Items li a {
  color: black;
  text-decoration: none;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.Nav-Items li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #a15f07;
  transition: width 0.3s ease;
}

.Nav-Items li a:hover::after {
  width: 100%;
}

.Nav-Items li a.active::after {
  width: 100%;
}

.Nav-Items li a.active {
  color: #a15f07;
}

/* --- Hero --- */
.contact-hero {
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/assets/contact/contact2.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  width: 100%;
  border-radius: 0.1rem;
  padding: 2rem;
}

.contact-hero .hero-content h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-hero .hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* --- Contact Main Section --- */
.contact-main {
  padding: 80px 4.5%;
  width: 100%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.intro-p {
  margin-bottom: 30px;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.info-item {
  margin-bottom: 20px;
}

.info-item strong {
  color: #a15f07;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 5px;
}

.info-item p {
  color: #555;
  font-size: 1rem;
}

/* --- Form Styling --- */
.contact-form {
  background: #f8f9fa;
  padding: 40px;
  border: 2px solid #a15f07;
  border-radius: 2px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-family: "Quantico", sans-serif;
  outline: none;
  border-radius: 1px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #a15f07;
}

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

.btn-send {
  width: 100%;
  padding: 15px;
  background: #a15f07;
  color: #fff;
  border: none;
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 26, 26, 0.3);
}

/* --- Map --- */
.map-section {
  width: 100%;
  line-height: 0;
  margin-top: 2rem;
}

.map-section iframe {
  display: block;
}

/* --- CTA Section --- */
.cta-section {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 80px 4.5%;
  text-align: center;
  width: 100%;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ========== MOBILE RESPONSIVE STYLES ========== */

@media (max-width: 768px) {
  body {
    margin-left: 2%;
    margin-right: 2%;
    gap: 1rem;
  }

  nav {
    padding: 0.5rem 2%;
  }

  #Logo {
    width: 5rem;
    height: 5rem;
  }

  /* Show hamburger menu */
  .menu-toggle {
    display: flex;
  }

  /* Hide nav items by default on mobile */
  .Nav-Items {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
  }

  /* Show nav items when open */
  .Nav-Items.open {
    right: 0;
  }

  .Nav-Items ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 0 2rem;
  }

  .Nav-Items li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .Nav-Items li a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.1rem;
  }

  .Nav-Items li a::after {
    display: none;
  }

  .Nav-Items li a.active {
    color: #a15f07;
    font-weight: 700;
  }

  /* Hero Section */
  .contact-hero {
    height: 35vh;
    min-height: 280px;
    padding: 1.5rem;
  }

  .contact-hero .hero-content h1 {
    font-size: 2rem;
  }

  .contact-hero .hero-content p {
    font-size: 1rem;
  }

  /* Contact Main */
  .contact-main {
    padding: 50px 2%;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .intro-p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .info-item {
    margin-bottom: 18px;
  }

  .info-item strong {
    font-size: 0.85rem;
  }

  .info-item p {
    font-size: 0.95rem;
  }

  /* Form */
  .contact-form {
    padding: 30px 20px;
  }

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

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 0.95rem;
  }

  .btn-send {
    padding: 12px;
    font-size: 0.9rem;
  }

  /* Map */
  .map-section iframe {
    height: 350px;
  }

  /* CTA Section */
  .cta-section {
    padding: 50px 2%;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  #Logo {
    width: 4.5rem;
    height: 4.5rem;
  }

  .Nav-Items {
    width: 80%;
  }

  .Nav-Items ul {
    padding: 0 1.5rem;
  }

  .Nav-Items li a {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .contact-hero .hero-content h1 {
    font-size: 1.6rem;
  }

  .contact-hero .hero-content p {
    font-size: 0.9rem;
  }

  .contact-main {
    padding: 40px 2%;
  }

  .contact-container {
    gap: 30px;
  }

  .contact-info h2 {
    font-size: 1.4rem;
  }

  .intro-p {
    font-size: 0.95rem;
  }

  .info-item {
    margin-bottom: 15px;
  }

  .info-item strong {
    font-size: 0.8rem;
  }

  .info-item p {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 25px 15px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 0.9rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .btn-send {
    padding: 11px;
    font-size: 0.85rem;
  }

  .map-section iframe {
    height: 300px;
  }

  .cta-section {
    padding: 40px 2%;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.9rem;
  }
}