/* =========================================
   GET IN TOUCH — HERO
   ========================================= */

.git-hero {
  width: 100%;
  padding: 120px 64px;
  background-color: #0d0300;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.git-hero__container {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* LEFT SIDE */
.git-hero__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 600px;
}

.git-hero__heading {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.git-hero__text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
}

/* GLASS BUTTON */
.glass-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: 0.25s ease;
  text-decoration: none;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.git-hero__btn {
  width: max-content;
}


/* RIGHT IMAGE */
.git-hero__media {
  margin: 0;
}

.git-hero__image {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 0px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .git-hero {
    padding: 80px 24px;
  }

  .git-hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .git-hero__heading {
    font-size: 40px;
  }

  .git-hero__image {
    max-height: 380px;
  }
}

/* ===== Get in Touch – Connect Section (like screenshot) ===== */

.git-connect {
  width: 100%;
  background-color: #ebf3ff;            /* light blue background */
  padding: 112px 64px;
  box-sizing: border-box;
  font-family: var(--font-urbanist, Urbanist, system-ui, -apple-system, "Segoe UI", Arial, sans-serif);
  color: #0d0300;
}

.git-connect__container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.git-connect__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr); /* image | text */
  gap: 80px;
  align-items: stretch;
}

/* Left image */

.git-connect__media {
  margin: 0;
}

.git-connect__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right content */

.git-connect__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.git-connect__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.git-connect__heading {
  margin: 0;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.git-connect__text {
  margin: 0;
  font-family: var(--font-inter, Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif);
  font-size: 18px;
  line-height: 1.6;
}

/* Contact methods list */

.git-connect__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-inter, Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif);
  font-size: 16px;
}

.git-connect__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.git-connect__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d0300;
  flex-shrink: 0;
}

.git-connect__icon svg {
  width: 100%;
  height: 100%;
}

.git-connect__label {
  line-height: 1.5;
}

/* Responsive */

@media (max-width: 900px) {
  .git-connect {
    padding: 80px 24px;
  }

  .git-connect__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .git-connect__heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .git-connect__text {
    font-size: 16px;
  }
}

/* ============================
   GET IN TOUCH – FORM SECTION
   ============================ */

.contact-touch {
  width: 100%;
  background: #ffffff;
  padding: 112px 64px;
  font-family: var(--font-inter, Inter, sans-serif);
  color: #0d0300;
  box-sizing: border-box;
}

.contact-touch__container {
  max-width: 1200px;
  margin-inline: auto;
}

.contact-touch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left Panel */

.contact-touch__tag {
  font-size: 16px;
  font-weight: 600;
}

.contact-touch__heading {
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-top: 8px;
}

.contact-touch__subtext {
  margin: 8px 0 32px;
  font-size: 18px;
  color: #333;
}

/* Form Styling */

.contact-touch__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-label {
  font-size: 16px;
  font-weight: 500;
}

.ct-field input,
.ct-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 8px 0;
  font-size: 16px;
  background: transparent;
  outline: none;
}

.ct-field textarea {
  height: 120px;
  resize: none;
}

/* Checkbox */

.ct-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(24, 56, 107, 1);
}

.ct-checkbox input {
  width: 18px;
  height: 18px;
  color: rgba(24, 56, 107, 1);
}

/* GLASS BUTTON */
.glass-btn.ct-submit {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover effect */
.glass-btn.ct-submit:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.glass-btn {
  width: max-content;
}

/* Right Image */

.contact-touch__image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-touch {
    padding: 80px 24px;
  }

  .contact-touch__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
