/* ============================================================
   HERO
   ============================================================ */
.hero-text .section-label {
    color: var(--itzone-base);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, .4);
}

.hero {
  background: var(--dark);
  background-image:
    radial-gradient(ellipse 55% 70% at 5% 50%, rgba(99,102,241,.20) 0%, transparent 55%),
    radial-gradient(ellipse 35% 50% at 90% 20%, rgba(99,102,241,.12) 0%, transparent 50%);
  padding: 60px 0px;
  overflow: hidden;
  position: relative;
}

/* CSS grid pattern overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent 0%, var(--itzone-base) 50%, transparent 100%);
  opacity: .55;
  transform-origin: top center;
  animation: glowBreathe 3.5s ease-in-out infinite;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 1fr);
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left text */
.hero-text .section-label { color: var(--itzone-base); }

.hero-text h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--itzone-white);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 18px;
}

.text-indigo { color: var(--itzone-base); }

.hero-text > p {
  margin-bottom: 34px;
  max-width: 480px;
}

/* Feature rows */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hf-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(99,102,241,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--itzone-base);
  font-size: 17px;
  flex-shrink: 0;
  border: 1px solid rgba(99,102,241,.25);
}
.hf-icon--blue  { background: rgba(59,130,246,.18); color: #60a5fa; border-color: rgba(59,130,246,.25); }
.hf-icon--green { background: rgba(16,185,129,.18); color: #34d399; border-color: rgba(16,185,129,.25); }

.hf-text strong {
  display: block;
  color: var(--itzone-white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.hf-text span {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* ============================================================
   CONTACT CARD (Hero right)
   ============================================================ */
.hero-form-wrap { /* outer wrapper for hero animation */ }

.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 30px 20px 34px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(99,102,241,.1);
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--itzone-white);
  margin-bottom: 6px;
}
.card-sub {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
}

/* Form groups */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 18px;
}

.form-group {
  margin-bottom: 0;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-bottom: 7px;
}

.form-group label span {
  color: rgba(255,255,255,.4);
  font-size: 12px;
  font-weight: 500;
}

.input-wrap {
  position: relative;
}
.input-wrap input,
.input-wrap textarea {
  width: 100%;
  /* background: var(--dark-input); */
  border: 1.5px solid rgba(99,102,241,.2);
  border-radius: 10px;
  padding: 12px 44px 12px 16px;
  color: var(--itzone-white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: none;
}
.input-wrap textarea {
  padding-top: 12px;
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: rgba(255,255,255,.28);
}
.input-wrap input:focus,
.input-wrap textarea:focus {
  border-color: var(--itzone-base);
  box-shadow: 0 0 0 3px rgba(99,102,241,.18);
}
.input-wrap input.input-error,
.input-wrap textarea.input-error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.15);
}

.input-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: rgba(255,255,255,.3);
  font-size: 13.5px;
  pointer-events: none;
}
.input-icon--top {
  top: 14px;
  transform: none;
}

.contact-field-error {
  display: block;
  color: #f87171;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 18px;
  margin-top: 7px;
}

.contact-page__input-box.is-invalid input,
.contact-page__input-box.is-invalid textarea {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.15);
}

.contact-page__captcha-box {
  margin-top: 2px;
}

.contact-page__captcha-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.contact-page__captcha-label {
  margin-bottom: 0 !important;
}

.contact-page__captcha-refresh {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 50%;
  background: rgba(99,102,241,.12);
  color: rgba(255,255,255,.76);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
}

.contact-page__captcha-refresh:hover,
.contact-page__captcha-refresh:focus {
  background: var(--itzone-base);
  border-color: var(--itzone-base);
  color: var(--itzone-white);
}

.contact-page__captcha-refresh.is-loading span {
  animation: contactSpin 800ms linear infinite;
}

.contact-page__captcha-control {
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  display: flex;
  flex-wrap: nowrap;
  border-radius: 12px;
  padding: 9px;
}

.contact-page__captcha-question {
  min-width: 92px;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  color: var(--itzone-white);
  font-size: 16px;
  font-weight: 800;
  line-height: 22px;
  padding: 9px 14px;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
}

.contact-page__captcha-equals {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  font-weight: 800;
}

.contact-page__captcha-control input[type="number"] {
  max-width: 20%;
  min-width: 0;
  /* background: var(--dark-input); */
  border: 0;
  color: var(--itzone-white);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  height: 45px;
  min-height: 45px;
  flex: 1;
  border: 1px solid #dcdfe6;
  border-radius: 10px;
  padding: 0 15px;
}

.contact-page__captcha-control .contact-field-error {
  grid-column: 1 / -1;
  margin-top: 0;
}

/* Submit button */
.btn-submit {
  width: 100%;
  background: var(--itzone-base);
  color: var(--itzone-white);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .25s, transform .2s, box-shadow .2s;
  margin-top: 18px;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,.4);
}
.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}
.contact-page__btn-loader {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: var(--itzone-white);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    animation: captchaRefreshSpin 800ms linear infinite;
}
/* Feedback message */
.form-feedback {
  font-size: 13.5px;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 10px;
  min-height: 20px;
  border-radius: 7px;
  padding: 0;
  transition: padding .2s;
}
.form-feedback--error,
.form-feedback.is-error {
  color: #f87171;
  background: rgba(248,113,113,.08);
  padding: 9px 14px;
}
.form-feedback--success,
.form-feedback.is-success {
  color: #34d399;
  background: rgba(52,211,153,.08);
  padding: 9px 14px;
}

@keyframes contactSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   CONTACT INFO SECTION
   ============================================================ */
.info-section {
  background: var(--itzone-white);
  padding: 60px 0;
}

.info-section h2{
    margin-bottom: 56px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--itzone-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
}
.info-icon--purple { background: rgba(139,92,246,.12); color: #8b5cf6; }
.info-icon--blue   { background: rgba(59,130,246,.12);  color: #3b82f6; }
.info-icon--green  { background: rgba(16,185,129,.12);  color: #10b981; }
.info-icon--orange { background: rgba(249,115,22,.12);  color: #f97316; }

.info-card h4 {
  margin-bottom: 10px;
    font-size: 15px;
}
.info-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}


/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  background: var(--light-bg);
  padding: 60px 0 60px
}
.map-section h4{
    font-size: 15px;
}

.map-grid {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

.map-info .section-label { color: var(--itzone-base); }
.map-info > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.office-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.office-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.office-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.office-icon--indigo { background: rgba(99,102,241,.12); color: var(--itzone-base); }
.office-icon--blue   { background: rgba(59,130,246,.12);  color: #3b82f6; }
.office-icon--green  { background: rgba(16,185,129,.12);  color: #10b981; }

.office-item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 3px;
}
.office-item span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}


.contact-faq{
    padding-bottom: 100px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #312e81 0%, var(--primary-dark) 45%, var(--itzone-base) 100%);
  padding: 60px 0 160px;
  overflow: hidden;
  position: relative;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.cta-plane-circle {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--itzone-white);
  font-size: 26px;
  flex-shrink: 0;
}

.cta-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--itzone-white);
  line-height: 1.25;
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  max-width: 480px;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--itzone-white);
  color: var(--primary-dark);
  border: 2px solid var(--itzone-white);
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: all .25s;
  flex-shrink: 0;
}
.btn-cta-white:hover {
  background: transparent;
  color: var(--itzone-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

@media (max-width: 1199px) {
  .hero-container {
    grid-template-columns: minmax(0, 1fr) minmax(465px, 1fr);
    gap: 35px;
  }

  .hero-text > p {
    max-width: 720px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .map-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 50px 0;
  }

  .map-wrap{
    order: 2;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text > p , .hero-text h1{
    text-align: center;
  }

  .contact-card {
    padding: 30px 22px 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-group--full {
    grid-column: auto;
  }

  .hero-text .section-label{
    display: block;
    text-align: center;
  }

  .contact-page__captcha-control {
    grid-template-columns: 1fr auto;
  }

  .contact-page__captcha-question {
    min-width: 0;
    
  }

  .contact-page__captcha-control input[type="number"] {
    grid-column: 1 / -1;
  }
  .info-section{
    padding: 50px 0;
  }
  .map-section{
    padding: 50px 0;
  }
  .map-grid {
    gap: 35px;
  }
  .map-info{
    text-align: center;
  }
  .office-item{
    text-align: left;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
