/* =========================
   PATCHES SECTION
========================= */
.patches-section {
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.patches-title {
      display: inline-block;
    margin: 0 auto 20px auto;

    padding: 14px 36px; /* bigger padding */
    border-radius: 40px;

    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.4rem; /* bigger text */
    letter-spacing: 1px;

    color: white;
    background: linear-gradient(135deg, #42a5f5, #1565c0);

    box-shadow: 0px 6px 18px rgba(0, 150, 255, 0.35);

    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);

    text-transform: uppercase;
}

/* =========================
   GRID LAYOUT
========================= */
.patches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}

/* =========================
   PATCH CARD (IMPROVED VISIBILITY)
========================= */
.patch-card {
  background: rgba(10, 20, 35, 0.65); /* darker glass */
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

  /* stronger depth */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* hover effect */
.patch-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 12px 35px rgba(0, 229, 255, 0.2);
}

/* IMAGE FIX */
.patch-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;

  /* makes logos visible on bright backgrounds */
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

/* TITLE */
.patch-card h3 {
  margin: 10px 0;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

/* =========================
   COMING SOON (MORE VISIBLE)
========================= */
.coming-soon {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #00e5ff;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

/* underline glow */
.coming-soon::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin: 8px auto 0;
  background: #00e5ff;
  box-shadow: 0 0 12px #00e5ff;
  border-radius: 10px;
}


.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 90px 20px;
  color: #eaf6ff;
}

.contact-container {
  width: 100%;
  max-width: 600px;

  /* darker glass effect */
  background: rgba(10, 25, 45, 0.85);
  border: 1px solid rgba(120, 190, 255, 0.25);
  border-radius: 18px;

  padding: 40px;

  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.contact-container h2 {
  font-size: 34px;
  margin-bottom: 10px;
  text-align: center;
  color: #d6f0ff;
  letter-spacing: 1px;
}

.contact-container p {
  text-align: center;
  margin-bottom: 25px;
  font-size: 14px;
  color: #9fd9ff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;

  border-radius: 10px;
  border: 1px solid rgba(120, 190, 255, 0.25);

  /* darker inputs */
  background: rgba(5, 15, 30, 0.9);

  color: #eaf6ff;
  outline: none;

  transition: all 0.25s ease;
  z-index: 1;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(160, 210, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4fc3ff;
  box-shadow: 0 0 12px rgba(79, 195, 255, 0.4);
}

.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 10px;

  background: linear-gradient(135deg, #3aaeff, #9ad9ff);
  color: #041a2b;

  font-weight: bold;
  cursor: pointer;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(58, 174, 255, 0.35);
}