/* styles.css - Vanilla CSS (converted from Tailwind) */

/* ---------- Reset & Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  background-color: #0d1117;
  color: #e0e2ea;
}


/* ---------- Header / Navigation ---------- */


/* ---------- Main Content ---------- */
.main-content {
  padding-top: 80px;
  padding-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---------- Hero Section ---------- */
.hero-section {
  margin-bottom: 32px;
  text-align: left;
  border-left: 2px solid #a2c9ff;
  padding-left: 16px;
}

.hero-title {
  font-family: 'Geist', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #e0e2ea;
}

/* ---------- Contact Grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

/* Form Container */
.form-container {
  background-color: #161b22;
  border: 1px solid #30363d;
  padding: 32px;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .form-container {
    grid-column: span 7;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-field-full {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #8b949e;
}

.form-input {
  background-color: #1c2025;
  border: 1px solid #30363d;
  color: #e0e2ea;
  border-radius: 12px;
  padding: 4px 8px;
  outline: none;
  transition: all 0.2s;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
}

.form-input:focus {
   box-shadow: 0 0 0 1px #a2c9ff;
  border-color: #a2c9ff;
  outline: none;
}

.form-select {
  background-color: #1c2025;
  border: 1px solid #30363d;
  color: #e0e2ea;
  border-radius: 12px;
  padding: 4px 8px;
  outline: none;
  transition: all 0.2s;
  appearance: none;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
}

.form-select:focus {
    box-shadow: 0 0 0 1px #a2c9ff;
  border-color: #a2c9ff;
  outline: none;
}

.form-textarea {
  background-color: #1c2025;
  border: 1px solid #30363d;
  color: #e0e2ea;
  border-radius: 12px;
  padding: 4px 8px;
  outline: none;
  transition: all 0.2s;
  resize: none;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
}

.form-textarea:focus {
    box-shadow: 0 0 0 1px #a2c9ff;
  border-color: #a2c9ff;
  outline: none;
}

.form-button-wrapper {
  padding-top: 8px;
}

.btn-submit {
  width: 100%;
  background-color: #a2c9ff;
  color: #00315c;
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  padding: 8px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  .btn-submit {
    width: auto;
  }
}

.btn-submit:hover {
  opacity: 0.9;
}

.btn-submit:active {
  opacity: 0.8;
}

/* Information Rail */
.info-rail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .info-rail {
    grid-column: span 5;
  }
}

.info-card {
  background-color: #181c21;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 24px;
}

.info-card-title {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #a2c9ff;
  margin-bottom: 16px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.info-icon {
  color: #a2c9ff;
  flex-shrink: 0;
}

.info-label {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #e0e2ea;
}

.info-text {
  color: #8b949e;
  font-size: 14px;
  line-height: 20px;
}

/* Map Container */
.map-container {
  height: 192px;
  width: 100%;
  background-color: #272a30;
  border: 1px solid #30363d;
  border-radius: 12px;
  overflow: hidden;
  filter: grayscale(1) contrast(1.25);
  opacity: 0.6;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Footer ---------- */
.site-footer {
  width: 100%;
  border-top: 1px solid #30363d;
  background-color: #0b0e14;
  margin-top: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand-title {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #e0e2ea;
  margin-bottom: 8px;
}

.footer-text {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8b949e;
}

.footer-section-title {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #a2c9ff;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-link {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8b949e;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #a2c9ff;
}

.footer-bottom {
  border-top: 1px solid #30363d;
  padding: 16px 0;
  text-align: center;
}
.nav-link.active {
  color: #a2c9ff;
  font-weight: 700;
  border-bottom: 2px solid #a2c9ff;
  padding-bottom: 4px;
}
.footer-copyright {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #8b949e;
}

/* modals */
.Modal-Success{
    width: 320px;
    aspect-ratio: 2/1;
    background-color: #00315c;
    border-radius: 12px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    text-align: center;
    box-sizing: border-box;
    display: none;
}
.Tick{
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width:48px;
    aspect-ratio: 1/1;
    background-image: url(assets/tick-circle-svgrepo-com.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.Modal-top{
    width: 100%;
    height: 50%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background-color: #fff;
}
.Modal-Bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    width: 100%;
    height: 50%;
    padding: 5px;
}
.Modal-Bottom button{
    width: 50%;
    margin: 1% auto;
}
