/* ===============================
   CINEMATIC CONTACT SECTION
================================ */
.saitech-contact {
  padding: 8rem 0;
  background: radial-gradient(circle at top, #0b0b0b, #000);
  color: #fff;
  overflow: hidden;
}

.saitech-contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ===============================
   CONTACT INFO
================================ */
.saitech-contact-info {
  max-width: 1000px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.saitech-contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.saitech-contact-info p {
  color: #aaa;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* ===============================
   DETAILS LIST
================================ */
.saitech-contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}

.saitech-contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.saitech-contact-details i {
  color: #c4a668;
  font-size: 1.3rem;
  margin-top: 0.2rem;
}

.saitech-contact-details span {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #ccc;
}

.saitech-contact-details strong {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.saitech-contact-details a {
  color: #c4a668;
  text-decoration: none;
  transition: color 0.3s ease;
}

.saitech-contact-details a:hover {
  color: #fff;
}

/* ===============================
   MAP
================================ */
.saitech-contact-map {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}

.saitech-contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.4s ease;
}

.saitech-contact-map iframe:hover {
  filter: grayscale(0%) contrast(1.05);
}

/* ===============================
   ANIMATION
================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .saitech-contact-container {
    flex-direction: column;
    align-items: center;
  }

  .saitech-contact-info {
    max-width: 1000%;
    text-align: center;
  }

  .saitech-contact-map {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .saitech-contact-map {
    height: 160px;
  }
}












/* =========================
   CONTACT PAGE
========================= */
.saitech-contact {
  padding: 8rem 5%;
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.saitech-contact::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,166,104,0.12), transparent 70%);
  animation: contactGlow 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes contactGlow {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(4%, -3%) rotate(1deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

/* SECTION TITLE */
.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #c4a668;
  z-index: 1;
  position: relative;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* CARDS */
.contact-form-card,
.contact-info-card {
  background: linear-gradient(160deg, #111, #070707);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 40px 110px rgba(0,0,0,0.95);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(2px);
}

/* Hover lift effect */
.contact-form-card:hover,
.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 70px 160px rgba(0,0,0,1);
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border: none;
  background: #0d0d0d;
  color: #fff;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-btn {
  background: #c4a668;
  color: #0a0a0a;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
  background: #e0c47a;
  transform: translateY(-3px);
}

/* INFO CARD */
.contact-info-list {
  list-style: none;
  padding: 0;
  color: #b0b0b0;
  line-height: 2;
  margin-bottom: 2rem;
}

.contact-info-list a {
  color: #c4a668;
  text-decoration: none;
}

.contact-social a {
  color: #c4a668;
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}

.contact-social a:hover {
  transform: scale(1.2);
}

/* SCROLL REVEAL */
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .saitech-contact {
    padding: 6rem 3%;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 2.5rem 2rem;
  }
}
