/* ===== HERO ===== */
.contact-hero {
  position: relative;
  height: 70vh;
  background: url("../img/contact.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.contact-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 3rem;
  color: #00eaff;
  text-shadow: 0 0 25px #00eaff;
}

.contact-hero p {
  margin-top: 10px;
  font-size: 1rem;
}

.contact-hero a {
  color: #00eaff;
  text-decoration: none;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #0b0e10;
  color: #fff;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
}

.contact-container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2rem;
  color: #00eaff;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #ccc;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-info i {
  color: #00eaff;
  margin-right: 10px;
}

.social-links a {
  display: inline-block;
  margin-right: 12px;
  color: #00eaff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

/* ===== FORM ===== */
.contact-form {
  flex: 1;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  display: flex;
  gap: 10px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 0 5px rgba(0, 234, 255, 0.2);
}

textarea {
  resize: none;
}

input:invalid,
textarea:invalid {
  border: 2px solid #ff4d4d !important;
  box-shadow: 0 0 10px #ff4d4d;
}


/* ===== FORM FIELD NEON OUTLINE ON FOCUS ===== */
input,
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 5px rgba(0, 234, 255, 0.2);
}


/* When clicked (focus state) */
input:focus,
textarea:focus {
  border-color: #00eaff;
  box-shadow: 0 0 10px #00eaff, 0 0 25px #00eaff, inset 0 0 10px #00eaff;
  background: #0b0e10;
}

/* ===== FORM BUTTON ===== */
.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  border: 2px solid #00eaff;
  border-radius: 40px;
  background-color: transparent;
  color: #00eaff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  align-self: start;
}

.cta-btn:hover {
  background-color: #00eaff;
  color: #000;
  transform: scale(1.05);
}

/* ===== MAP ===== */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .input-group {
    flex-direction: column;
  }

  .contact-info, .contact-form {
    width: 100%;
  }
}
/* --- existing styles remain --- */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10000;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

.popup-box {
  position: relative;
  background: #0d1117;
  border: 1px solid #00eaff;
  box-shadow: 0 0 25px #00eaff;
  border-radius: 20px;
  padding: 40px 50px;
  text-align: center;
  color: #fff;
  max-width: 420px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #00eaff;
  transform: scale(1.2);
}








/* ===== CTA SECTION (Match Services & Gallery) ===== */
.cta-section {
  background: linear-gradient(90deg, #007bff, #00eaff);
  text-align: center;
  color: #000;
  padding: 80px 20px;
  position: relative;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

/* CTA Button same as services page */
.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  border: 2px solid #ffffff;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.cta-btn:hover {
  background-color: #fff;
  color: #007bff;
  transform: scale(1.05);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 15px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}








/* ===== FOOTER (Same as other pages) ===== */
footer {
  background: #050c11;
  color: #ccc;
  text-align: center;
  padding: 40px 20px 10px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-info p {
  margin: 5px 0;
  color: #b8c5d1;
  font-size: 0.95rem;
}

.footer-info i {
  color: #00eaff;
  margin-right: 8px;
}

.footer-social a {
  color: #00eaff;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
  text-shadow: 0 0 15px #00eaff;
}

.footer-bottom {
  border-top: 1px solid #0d1b21;
  margin-top: 15px;
  padding-top: 15px;
  color: #888;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    margin-top: 10px;
  }
}
