/* ==========================================================================
   CONTACT SECTION (Inspired by Brutalist Proposal + Glassmorphic Form)
   ========================================================================== */
.contact-main-section {
  padding: 20px 0 4rem;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

/* Background floating orbs for the glassmorphic form to reflect */
.contact-orb-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--brand-red);
  filter: blur(100px);
  top: 10%;
  right: 5%;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}
.contact-orb-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--brand-black);
  filter: blur(120px);
  bottom: 10%;
  right: 20%;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* --- Left Column: Brutalist / Editorial Details (Inspired by Proposal image) --- */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-brutalist-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 2px solid var(--brand-black);
}
.contact-brutalist-card:first-child {
  border-top: 2px solid var(--brand-black);
}

/* The large numerical indicators */
.contact-number {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-black);
  line-height: 0.8;
  position: relative;
}
/* Yellow/Red pill tag under the number */
.contact-number::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: var(--brand-red);
  border-radius: 5px;
  margin-top: 10px;
}

.contact-details h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 10px;
}
.contact-details p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* --- Right Column: Glassmorphic Form (Inspired by Smart Digital Solutions) --- */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 50px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  position: relative;
}

/* Floating aesthetic elements around the form */

.contact-form-header {
  margin-bottom: 30px;
}
.contact-form-header h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-black);
  margin-bottom: 10px;
}
.contact-form-header p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-input-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-black);
  letter-spacing: 1px;
}

/* Dark, sleek inner inputs */
.contact-input {
  background: var(--brand-black-light);
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: var(--transition);
}
.contact-input:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 15px rgba(255, 12, 7, 0.2);
}
textarea.contact-input {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background: var(--brand-red);
  color: var(--white);
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(255, 12, 7, 0.3);
  margin-top: 10px;
}
.contact-submit-btn:hover {
  background: var(--brand-black);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-form-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .contact-main-section {
    padding: 80px 0;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  .cf-1,
  .cf-2 {
    display: none;
  } /* Hide floating elements on small mobile */
  .contact-brutalist-card {
    flex-direction: column;
    gap: 10px;
    padding: 25px 0;
  }
  .contact-number::after {
    width: 40px;
  }
}

/* ==========================================================================
   MINIMAL LIGHT FOOTER (For Contact Page)
   ========================================================================== */
.footer-minimal-light {
  background-color: var(
    --bg-light
  ); /* Blends perfectly with the contact page */
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.footer-minimal-light .footer-bottom {
  border-top: none; /* Removed since there is no upper footer content */
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-minimal-light .footer-bottom p {
  margin: 0;
}

.footer-minimal-light .footer-bottom-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.footer-minimal-light .footer-bottom-links a {
  color: var(--text-gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  font-weight: 600;
}

.footer-minimal-light .footer-bottom-links a:hover {
  color: var(--brand-red);
}

.footer-minimal-light .footer-bottom-links i {
  font-size: 1.2rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .footer-minimal-light .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
