:root {
  --skgeo-header-bg: #00564d;
  --skgeo-text: #ffffff;
  --skgeo-accent: #13c8b1;
  --skgeo-accent-hover: #0fb39f;
  --skgeo-border: rgba(255, 255, 255, 0.08);
  --skgeo-dark: #0d5b52;
  --skgeo-light: #efefef;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Ubuntu", Arial, Helvetica, sans-serif;
  color: #111;
  background: #ffffff;
}

/* =========================
   HEADER
========================= */
.skgeo-header {
  width: 100%;
  background: var(--skgeo-header-bg);
  position: relative;
  z-index: 20;
}

.skgeo-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 135px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 24px;
}

.skgeo-logo-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.skgeo-logo {
  display: block;
  width: 170px;
  height: auto;
}

.skgeo-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.skgeo-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 42px;
}

.skgeo-menu li {
  margin: 0;
  padding: 0;
}

.skgeo-menu a {
  color: var(--skgeo-text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.skgeo-menu a:hover {
  opacity: 0.8;
}

.skgeo-contact-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 34px;
  padding: 0 18px;
  background: var(--skgeo-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.skgeo-contact-btn:hover {
  background: var(--skgeo-accent-hover);
  transform: translateY(-1px);
  color: #ffffff;
}

/* =========================
   CONTACT SECTION
========================= */
.skgeo-contact-section {
  background:
    linear-gradient(rgba(0, 100, 85, 0.76), rgba(0, 100, 85, 0.76)),
    url("../images/contact_bg.png") center top / 100% auto no-repeat;
  background-color: #00685a;
  padding: 20px 0 0;
}

.skgeo-contact-section .container {
  max-width: 1180px;
}

.contact-form,
.contact-box {
  margin-top: 0;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: #e9e9e9;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #1d4f49;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #1d4f49;
  opacity: 1;
  text-transform: uppercase;
}

.contact-input:focus,
.contact-textarea:focus {
  background: #e9e9e9;
  color: #1d4f49;
  box-shadow: none;
  outline: none;
}

.contact-input {
  height: 56px;
  padding: 0 16px;
  text-transform: uppercase;
}

.contact-textarea {
  height: 148px;
  padding: 14px 16px;
  resize: none;
  text-transform: uppercase;
}

.contact-submit-btn {
  margin-top: 6px;
  min-width: 215px;
  height: 56px;
  padding: 0 28px;
  background: var(--skgeo-dark);
  color: #ffffff;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-submit-btn:hover {
  background: #0a4942;
  transform: translateY(-1px);
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 20px;
}

.icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--skgeo-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
}

.text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--skgeo-dark);
}

.map-box {
  margin-top: 34px;
  margin-bottom: 0;
  line-height: 0;
}

.map-box img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

/* =========================
   FOOTER
========================= */
.skgeo-footer {
  background: #000000;
  color: #ffffff;
  padding-top: 70px;
  margin-top: 0;
}

.skgeo-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.skgeo-footer-col {
  display: flex;
  flex-direction: column;
}

.skgeo-footer-left {
  max-width: 260px;
}

.skgeo-footer-logo {
  width: 150px;
  margin-bottom: 30px;
}

.skgeo-footer-legal a {
  display: block;
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 6px;
}

.skgeo-footer-legal a:hover,
.skgeo-footer-menu a:hover {
  opacity: 0.7;
}

.skgeo-footer-menu {
  gap: 12px;
}

.skgeo-footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.skgeo-footer-contact {
  text-align: right;
  gap: 10px;
}

.skgeo-footer-address,
.skgeo-footer-phone,
.skgeo-footer-email {
  font-size: 13px;
}

.skgeo-footer-social {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.skgeo-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
}

.skgeo-social:hover {
  background: #00c1a2;
  color: #ffffff;
}

.skgeo-footer-bottom {
  width: 100%;
  border-top: 1px solid #444444;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199.98px) {
  .skgeo-header-inner {
    min-height: 118px;
    gap: 24px;
  }

  .skgeo-logo {
    width: 148px;
  }

  .skgeo-menu {
    gap: 24px;
  }

  .skgeo-menu a {
    font-size: 11px;
  }

  .skgeo-contact-section {
    background:
      linear-gradient(rgba(0, 100, 85, 0.76), rgba(0, 100, 85, 0.76)),
      url("../images/contact_bg.png") center top / 1400px auto no-repeat;
    background-color: #00685a;
  }
}

@media (max-width: 991.98px) {
  .skgeo-header-inner {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 22px 16px;
    gap: 18px;
  }

  .skgeo-logo-link {
    width: 100%;
    justify-content: center;
  }

  .skgeo-nav {
    width: 100%;
    order: 3;
  }

  .skgeo-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .skgeo-contact-btn {
    order: 2;
  }

  .skgeo-contact-section {
    padding-top: 28px;
    background:
      linear-gradient(rgba(0, 100, 85, 0.76), rgba(0, 100, 85, 0.76)),
      url("../images/contact_bg.png") center top / 1200px auto no-repeat;
    background-color: #00685a;
  }

  .contact-box {
    margin-top: 8px;
  }

  .skgeo-footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .skgeo-footer-contact {
    text-align: left;
  }

  .skgeo-footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .skgeo-logo {
    width: 132px;
  }

  .contact-input,
  .contact-submit-btn {
    height: 52px;
  }

  .contact-textarea {
    height: 132px;
  }

  .text {
    font-size: 15px;
  }

  .skgeo-contact-section {
    background:
      linear-gradient(rgba(0, 100, 85, 0.76), rgba(0, 100, 85, 0.76)),
      url("../images/contact_bg.png") center top / 900px auto no-repeat;
    background-color: #00685a;
  }
}

.form-status {
  font-size: 0.9rem;
  padding: 0.5rem 0;
  min-height: 1.5rem;
}
.form-status.success { color: #13c8b1; }
.form-status.error   { color: #ff6b6b; }


@media (max-width: 768px){
  .skgeo-footer-logo {
    margin: 0 auto;
  }
  .skgeo-footer-left {
    max-width: none;
  }
  .skgeo-footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .skgeo-footer-contact {
    text-align: center;
  }
  .skgeo-footer-social {
    justify-content: center;
  }
}

  #map {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
  }