/* ============================
   CONTACT PAGE STYLES
============================ */

/* ============================
   PAGE TITLE BAR
============================ */

.vm-page-title {
  background-color: var(--vm-purple-footer);
  padding: 96px 0;
  text-align: center;
}

.vm-page-title__heading {
  margin: 0;
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-500);
  line-height: 1;
  letter-spacing: var(--vm-ls--174);
}

/* ABOUT (blue) */
.vm-page-title__highlight {
  color: var(--vm-blue-accent);
  margin-right: 8px;
}

/* Visa Matters (white) */
.vm-page-title__main {
  color: var(--vm-white);
}

/* ============================
   RESPONSIVE TYPOGRAPHY
============================ */

/* Desktop */
@media (min-width: 1200px) {
  .vm-page-title__heading {
    font-size: var(--vm-fs-58);
    line-height: var(--vm-lh-57);
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .vm-page-title__heading {
    font-size: 48px;
    line-height: 1.1;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .vm-page-title {
    padding: 64px 0;
  }

  .vm-page-title__heading {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: var(--vm-ls--1);
  }
}


/* ================================
   CONTACT PAGE – LAYOUT
================================ */

.contact-layout {
  background: linear-gradient(
    to bottom,
    #4DB1D8 0%,
    #4DB1D8 25%,
    #FFFFFF 20%,
    #FFFFFF 100%
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 588px;
  grid-template-rows: auto auto;
  column-gap: 60px;
  padding: 120px 0;
}


/* ================================
   LEFT COLUMN – TOP (BLUE)
================================ */

.contact-left--top {
  color: var(--vm-white);
  padding-bottom: 0px;
}

.contact-title {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-500);
  font-size: var(--vm-fs-46);
  line-height: var(--vm-lh-52);
  letter-spacing: var(--vm-ls--138);
  margin-bottom: 30px;
}

.contact-desc p {
  font-family: var(--vm-font);
  font-size: var(--vm-fs-24) !important;
  letter-spacing: var(--vm-ls--048);
  color: var(--vm-white);
  max-width: 520px;
}


/* ================================
   RIGHT COLUMN – FORM (ROWSPAN)
================================ */

.contact-form-col {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.contact-form-card {
  background: #E8F6FC;
  border-radius: 6px;
  padding: 45px;
}

.form-title {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-500);
  font-size: var(--vm-fs-30);
  line-height: 33px;
  letter-spacing: -0.6px;
  color: var(--vm-blue-accent);
  margin-bottom: 30px;
}


/* ================================
   FORM ELEMENTS
================================ */

.contact-form-card label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-400);
  font-size: var(--vm-fs-16);
  line-height: var(--vm-lh-21);
  letter-spacing: var(--vm-ls--016);
  color: var(--vm-black);
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  background: var(--vm-white);
  border: 1px solid #C6C5C5;
  border-radius: 2px;
  font-family: var(--vm-font);
}

.contact-form-card textarea {
  resize: vertical;
}

.contact-form-card button {
  margin-top: 20px;
}

/* Phone input with country code dropdown */
.vm-phone-input-group {
  display: flex;
  gap: 0px;
  margin-bottom: 20px;
}

.vm-phone-input-group .vm-country-code-select{
	border-right:0px;
}

.vm-phone-input-group .vm-phone-number-input{
	border-left:0px;
}

.vm-country-code-select {
  width: 90px !Important;
  flex-shrink: 0;
  padding: 12px 14px;
  background: var(--vm-white);
  border: 1px solid #C6C5C5;
  border-radius: 2px;
  font-family: var(--vm-font);
  font-size: 16px;
  font-weight: 400;
  color: #0F0F0F;
  margin-bottom: 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234DB1D8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.vm-phone-number-input {
  flex: 1;
  padding: 12px 14px;
  background: var(--vm-white);
  border: 1px solid #C6C5C5;
  border-radius: 2px;
  font-family: var(--vm-font);
  margin-bottom: 0;
}


/* ================================
   LEFT COLUMN – BOTTOM (WHITE)
================================ */

.contact-left--bottom {
  padding-top: 180px;
  color: var(--vm-text-body);
}


/* Lead text */
.lead {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-600);
  letter-spacing: var(--vm-ls--032);
  margin-bottom: 24px;
  color: var(--vm-heading);
}


/* During the call */
.contact-left--bottom h4, .heading-four {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-600);
  font-size: var(--vm-fs-16);
  line-height: var(--vm-lh-21);
  letter-spacing: var(--vm-ls--032);
  margin-bottom: 10px;
}

.contact-left--bottom ul {
  margin: 0 0 30px 18px;
  padding: 0;
}

.contact-left--bottom ul li {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-400);
  font-size: var(--vm-fs-16);
  line-height: var(--vm-lh-21);
  letter-spacing: var(--vm-ls--032);
  margin-bottom: 8px;
}


/* Please note block */
.note {
  border-left: 6px solid var(--vm-blue-accent);
  padding-left: 30px;
  margin: 63px 0;
}

/*
.note strong {
  display: block;
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-600);
  font-size: var(--vm-fs-24);
  line-height: var(--vm-lh-28);
  letter-spacing: var(--vm-ls--048);
  color: var(--vm-heading);
  margin-bottom: 6px;
}
*/

.note p {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-400);
  font-size: var(--vm-fs-16);
  line-height: var(--vm-lh-21);
  color: var(--vm-text-body);
}


/* ================================
   SECTION TITLES
================================ */

.contact-left--bottom h3 {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-600);
  font-size: var(--vm-fs-32);
  line-height: var(--vm-lh-37);
  letter-spacing: var(--vm-ls--064);
  color: var(--vm-heading);
  margin-bottom: 20px;
}

.contact-left--bottom h2 {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-500);
  font-size: var(--vm-fs-46);
  line-height: var(--vm-lh-52);
  letter-spacing: var(--vm-ls--138);
  color: var(--vm-heading);
  margin-top: 54px;
  margin-bottom: 45px;
}


/* ================================
   CONTACT DETAILS
================================ */

.vm-contact-methods {
  display: grid;
  grid-template-columns: 34px 1px 1fr;
  column-gap: 43px;
  align-items: center;
}

/* ICON COLUMN */
.vm-contact-icons {
  display: grid;
  grid-template-rows: repeat(3, auto);
  row-gap: 60px;
  align-items: center;
}

.vm-contact-icons img {
  width: 34px;
  height: auto;
}

/* DIVIDER COLUMN */
.vm-contact-divider {
  width: 1px;
  background: var(--vm-black);
  opacity: var(--vm-opacity-2);
  align-self: stretch;
}

/* DETAILS COLUMN */
.vm-contact-details {
  display: grid;
  grid-template-rows: repeat(3, auto);
  row-gap: 31px;
  align-items: center;
}

.vm-contact-item {
  display: block;
}

.vm-contact-label {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-600);
  font-size: var(--vm-fs-24);
  line-height: 31px;
  letter-spacing: var(--vm-ls--048);
  margin-bottom: 6px;
}

.vm-contact-value {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-400);
  font-size: var(--vm-fs-16);
  line-height: var(--vm-lh-21);
  letter-spacing: var(--vm-ls--016);
  color: var(--vm-text-body);
}


/* ================================
   FORM FOOTNOTE
================================ */

.form-privacy {
  margin-top: 58px;
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-400);
  font-size: var(--vm-fs-16);
  line-height: var(--vm-lh-21);
  letter-spacing: var(--vm-ls--032);
  color: var(--vm-text-body);
}

.form-privacy a {
  color: #4DB1D8;
  text-decoration: none;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 80px 0;
  }

  .contact-left--top {
    grid-column: 1;
    grid-row: 1;
    padding: 0 0 40px 0;
  }

  .contact-form-col {
    grid-column: 1;
    grid-row: 2;
    margin: 0 0 40px 0;
  }

  .contact-left--bottom {
    grid-column: 1;
    grid-row: 3;
    padding: 0;
  }

  .contact-layout {
    background: linear-gradient(
    to bottom,
    #4DB1D8 0%,
    #4DB1D8 20%,
    #FFFFFF 20%,
    #FFFFFF 100%
  );
  }
}


/* ============================
   RECOGNITION SECTION
============================ */

.vm-recognition {
  position: relative;
  padding-top: 128px;
  padding-bottom: 128px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Black overlay @ 50% */
.vm-recognition__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--vm-black);
  opacity: 0.5;
  z-index: 0;
}

/* Content wrapper */
.vm-recognition__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.vm-recognition__title {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-500);
  font-size: var(--vm-fs-46);
  line-height: var(--vm-lh-52);
  letter-spacing: var(--vm-ls--138);
  color: var(--vm-white);
  margin-bottom: 50px;
}

/* Description */
.vm-recognition__desc {
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-400);
  font-size: var(--vm-fs-24);
  line-height: var(--vm-lh-32);
  letter-spacing: var(--vm-ls--048);
  color: var(--vm-white);
  opacity: 0.8;
  margin-bottom: 74px;
}

/* ============================
   RESPONSIVE
============================ */

/* Tablet */
@media (max-width: 991px) {
  .vm-recognition {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .vm-recognition__title {
    font-size: 38px;
    line-height: 44px;
  }

  .vm-recognition__desc {
    font-size: var(--vm-fs-20);
    line-height: var(--vm-lh-28);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .vm-recognition {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .vm-recognition__title {
    font-size: var(--vm-fs-30);
    line-height: 36px;
    letter-spacing: -0.8px;
    margin-bottom: 32px;
  }

  .vm-recognition__desc {
    font-size: var(--vm-fs-18);
    line-height: var(--vm-lh-26);
    margin-bottom: 40px;
  }
	.contact-grid{
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* ============================
   FORM MESSAGES
============================ */

.vm-form-message {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vm-form-message svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.vm-form-message strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.vm-form-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.vm-form-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.vm-form-success svg {
  stroke: #28a745;
}

.vm-form-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.vm-form-error svg {
  stroke: #dc3545;
}
