/* ========================
   Contact Page Hero Section
======================== */
.contact-hero {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Contact Page Toast */
.contact-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00ff88;
  color: #000;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3000;
}

.contact-toast.show {
  opacity: 1;
  transform: translateY(0px);
}


.hero-overlay {

  color: #fff;
   background: rgba(0, 0, 0, 0.2) !important;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00ff88; /* your theme accent color */
  text-shadow: #00ff88 0 0 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-overlay p {
  font-size: 1.1rem;
  color: #ddd;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .contact-hero {
    height: 220px;
  }
  .hero-overlay h1 {
    font-size: 1.8rem;
  }
  .hero-overlay p {
    font-size: 0.95rem;
  }
}




/* Contact Section */
.contact-section {
  
  padding: 60px 20px;
   background: rgba(0, 0, 0, 0.6);
  /* background: linear-gradient(120deg, #0a0a0a, #111111); */
  color: #e0e0e0;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 0.9rem;
text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 5px;
}

.contact-left .sub-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-left p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Info Items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.icon-circle {
  width: 45px;
  height: 45px;
  background: #333;               /* grey background circle */
  border-radius: 50%;             /* makes it round */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;                 /* prevents resizing */
  transition: all 0.3s ease;
}

.icon-circle i {
  color: #00ff88;                 /* your green theme */
  font-size: 18px;
}

/* On hover: subtle glow */
.icon-circle:hover {
  background: #444;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
  transform: scale(1.05);
}

.contact-item p {
  margin: 0;
  color: #e0e0e0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.contact-right {
  flex: 1; 
  max-width: 500px; 
  max-height: 450px;
  background: #1a1a1a;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  margin: 0 auto;
  
}

.contact-right textarea {
  width: 100%;
  max-height: 80px;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: none;
  background: #111111;
  color: #e0e0e0;
  font-size: 1rem;
}

.contact-right input{
  width: 100%;
  max-height: 40px;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: none;
  background: #111111;
  color: #e0e0e0;
  font-size: 1rem;
}

.contact-right input:focus,
.contact-right textarea:focus {
  outline: 2px solid #27ae60;
}

.contact-right button.btn {
  width: 100%;
  background: #27ae60;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.3s;
}

.contact-right button.btn:hover {
  background: #1e8449;
}

#statusMsg {
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-container { flex-direction: column; }
  .contact-left, .contact-right { min-width: 100%; }
}

@media (max-width: 768px) {
  .contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .icon-circle {
    margin-bottom: 5px;
  }
}