.contact-wrapper {
  background: rgba(255, 255, 255, 0.85); 
  backdrop-filter: blur(12px); 
  border-radius: 32px; 
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 20px 50px rgba(58, 39, 23, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.contact-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; 
  gap: 48px; 
  align-items: start;
}

.contact-heading {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.2;
}

.contact-sub {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.c-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.c-info-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-strong); 
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-map-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #fff; 
  box-shadow: 0 8px 20px rgba(58, 39, 23, 0.1);
  background: #eee;
  height: 280px; 
}

.contact-map-btn-wrap {
  margin-top: 20px; 
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

@media (max-width: 850px) {
  .contact-grid-layout {
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  
  .contact-wrapper {
    padding: 24px; 
  }
}

.track-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  margin-top: 10px;
}

.track-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 15px 40px rgba(58, 39, 23, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 420px;
}

.track-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #2b1b0b;
  margin: 0 0 12px;
}

.track-card p {
  color: #766450;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon-wrap svg.input-icon {
  position: absolute;
  left: 14px;
  width: 20px !important;
  height: 20px !important;
  color: #a09080;
  pointer-events: none;
  z-index: 5;
  display: block;
}

.input-icon-wrap input {
  padding-left: 44px;
  background: #fdfbf7;
  border-color: #ead8bd;
  width: 100%;
}

.input-icon-wrap input:focus {
  background: #fff;
  border-color: #e6b436;
}

.track-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  width: 100%;
  
  
  margin-top: auto; 
  margin-bottom: auto; 
  margin-top: 40px; 
  
  padding: 30px 10px; 
  background: rgba(255, 252, 245, 0.6); 
  border: 1px solid rgba(230, 210, 190, 0.5); 
  border-radius: 20px; 
  
  
  box-shadow: inset 0 2px 10px rgba(58, 39, 23, 0.02);
}

.t-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  z-index: 2; 
}

.t-step::after {
  content: "";
  position: absolute;
  top: 18px; 
  
  
  left: calc(50% + 25px); 
  width: calc(100% - 50px); 
  
  height: 0;
  border-top: 2px dashed #d0c0b0; 
  opacity: 0.7;
  z-index: 1;
}

.t-step:last-child::after {
  display: none;
}

.t-icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; 
  color: #b0a090; 
  transition: all 0.3s ease;
  
  
}

.t-icon-box svg {
  width: 34px !important;
  height: 34px !important;
  stroke-width: 1.6px;
  filter: drop-shadow(0 3px 5px rgba(58, 39, 23, 0.08)); 
  display: block;
}

.t-label {
  font-size: 13px;
  font-weight: 700;
  color: #9a8a7a;
  letter-spacing: 0.3px;
  padding: 0 4px; 
}

.t-step.active .t-icon-box {
  color: #c8861c; 
  transform: scale(1.1); 
  filter: drop-shadow(0 6px 12px rgba(230, 180, 54, 0.25));
}

.t-step.active .t-label {
  color: #5d4d3d; 
}

@media (max-width: 850px) {
  .track-page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .track-timeline {
    padding: 20px 0;
    margin-top: 30px;
    grid-template-columns: repeat(4, 1fr); 
  }

  .t-step::after {
    left: calc(50% + 15px);
    width: calc(100% - 30px);
  }
  
  .t-icon-box svg {
    width: 26px !important;
    height: 26px !important;
  }
  
  .t-label {
    font-size: 10px; 
  }
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  margin-top: 20px;
}

.auth-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(58, 39, 23, 0.08);
  position: relative; 
  display: flex;
  flex-direction: column;
}

.auth-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 18px;
  pointer-events: none;
  z-index: 2;
}

.auth-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--text);
  margin: 0 0 12px;
}

.auth-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.auth-card > .notice {
  margin-top: -8px;
  margin-bottom: 14px;
}

.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-toggle {
  position: absolute;
  right: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #a09080;
  z-index: 5;
}

input::placeholder {
  color: #9ca3af !important;
  opacity: 1;
}

.auth-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}

.auth-actions .btn-primary {
  justify-content: center;
  text-align: center;
  min-width: 140px;
}

.auth-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  color: #c8861c;
}

.auth-secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto; 
  padding-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 850px) {
  .auth-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 24px; }
}
