/* =========================
   CONTACT.HTML SPECIFIC CSS WITH ANIMATIONS
========================= */

/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #A6882B;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   HEADER
========================= */
header {
  background: #000;
  border-bottom: 1px solid #A6882B;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-50px);
  animation: fadeDown 1s ease forwards;
}

/* =========================
   PAGE HEADER
========================= */
.page-header {
  text-align: center;
  padding: 120px 20px 50px 20px;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.5s;
}

.page-header h1 {
  font-size: 36px;
  color: #A6882B;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  color: #fff;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  gap: 40px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s forwards;
  animation-delay: 1s;
}

/* CONTACT FORM */
.contact-section form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #111;
  border: 1px solid #A6882B;
  border-radius: 12px;
  padding: 30px;
  transform: scale(0.95);
  animation: popIn 0.8s forwards;
}

.contact-section form h3 {
  color: #A6882B;
  margin-bottom: 10px;
}

.contact-section input,
.contact-section textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #A6882B;
  background: #000;
  color: #fff;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Input focus animation */
.contact-section input:focus,
.contact-section textarea:focus {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(166, 136, 43, 0.4);
  outline: none;
}

.contact-section button {
  width: 150px;
  padding: 12px 0;
  border-radius: 25px;
  border: none;
  background: #A6882B;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.contact-section button:hover {
  transform: scale(1.05) translateY(-3px);
}

/* CONTACT INFO */
.contact-info {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  border: 1px solid #A6882B;
  padding: 30px;
  border-radius: 12px;
  background: #111;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s forwards;
  animation-delay: 1.2s;
}

.contact-info p {
  margin-bottom: 10px;
}

/* =========================
   FOOTER
========================= */
footer {
  border-top: 1px solid #A6882B;
  padding: 25px;
  text-align: center;
  font-size: 14px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s forwards;
  animation-delay: 1.5s;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes floatUp {
  0% { transform: translateY(10px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes rotateIn {
  0% { transform: rotate(-180deg) scale(0); opacity: 0; }
  100% { transform: rotate(0deg) scale(1); opacity: 1; }
}

@keyframes wobble {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }

  .contact-section form,
  .contact-info {
    flex: 1 1 100%;
  }
}
