/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  
   background: linear-gradient(135deg, #fff8f0 0%, #fdd6a4 100%);
  color: #333;
  line-height: 1.6;
}

/* HEADER */
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  background: linear-gradient(90deg, #a76c35, #f79b45);
  padding: 1rem 2rem;
}

header nav div p {
  
  font-weight: bold;
  font-size: 1.3rem;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  padding: 0.4rem 0.8rem;
  
  transition: 0.3s;
}



/* HERO */
.contact-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;

  border-bottom: 1px solid #ddd;
}

.contact-hero h1 {
  font-size: 2.5rem;
  color: #1c1c1c;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #555;
}

/* CONTACT GRID */
.contact-main {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* CONTACT CARDS */
.contact-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* FORM CARD */
.form-card h2 {
  color: #ff6600;
  margin-bottom: 1.5rem;
}

.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.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 8px rgba(255,102,0,0.3);
}

.submit-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #e65c00;
}

/* INFO CARD */
.info-card h2 {
  color: #ff6600;
  margin-bottom: 1rem;
}

.info-card p {
  margin-bottom: 0.8rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.contact-buttons .btn {
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.contact-buttons .call {
  background-color: #4eaee6;
}

.contact-buttons .call:hover {
  background-color: #4f91e7;
}

.contact-buttons .whatsapp {
  background-color: #25D366;
}

.contact-buttons .whatsapp:hover {
  background-color: #1ebe57;
}

/* MAP */
.map-container {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}



/* ==== HEADER & NAV ==== */
header {
  background: linear-gradient(90deg, #a76c35, #f7b731); /* gold-orange gradient */
  
  
  
  align-items: center;
  box-shadow: 0 4px 12px rgba(58, 22, 22, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #004aad; /* subtle blue brand accent */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
  padding-bottom: 3px;
}

nav a:hover,
nav a.active {
  color: #cc8239; /* Mid Orange for active/hover */
  border-bottom: 2px solid #9c6319;
  transform: scale(1.1);
}

/* ==== FOOTER ==== */
footer {
  background: linear-gradient(135deg, #a76c35, #f7b731); /* gold-orange gradient matching header */
  text-align: center;
  color: white;
  padding: 10px 25px;
  font-size: 1rem;
  letter-spacing: 0.5px;

  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
}

footer p {
  margin: 0;
  color: #fff;
  font-weight: 500;
}

footer p:hover {
  color: #004aad; /* blue hover for contrast */
  transition: color 0.3s ease;
}

/* ==== RESPONSIVE HEADER ==== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  /* Contact grid: stack columns on mobile */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 6rem 1rem 2rem;
  }

  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .contact-main {
    padding: 0 1rem;
    margin: 2rem auto;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 1.5rem;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    text-align: center;
  }
}

/* ==== INFO CARD SOCIAL ICONS ==== */
.info-social {
  margin-top: 15px;
  text-align: center;
}

.info-social .social-text {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.info-social a {
  margin: 0 10px;
  color: #ff6600; /* orange accent for info card */
  font-size: 1.6rem;
  transition: transform 0.3s, color 0.3s;
}

.info-social a:hover {
  color: #e65c00; /* darker orange on hover */
  transform: scale(1.2);
}

/* ==== FOOTER SOCIAL ICONS ==== */
.footer-social {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social a {
  color: rgb(250, 250, 248);
  font-size: 1.5rem;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  color: #f7b731; /* gold color on hover */
  transform: scale(1.2);
}
