

:root {
  --skgeo-header-bg: #014d43;
  --skgeo-text: #ffffff;
  --skgeo-accent: #13c8b1;
  --skgeo-accent-hover: #0fb39f;
  --skgeo-border: #d9f4ef;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.skgeo-header {
  width: 100%;
  background: var(--skgeo-header-bg);

}

.skgeo-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 97px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 28px;
}

.skgeo-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.skgeo-logo img {
  display: block;
  height: 52px;
  width: auto;
}

.skgeo-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.skgeo-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
}

.skgeo-nav a {
  color: var(--skgeo-text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.skgeo-nav a:hover {
  opacity: 0.8;
}

.skgeo-header-action {
  flex: 0 0 auto;
}

.skgeo-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  height: 38px;
  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-btn-contact:hover {
  background: var(--skgeo-accent-hover);
  transform: translateY(-1px);
}

/* Tablet */
@media (max-width: 1100px) {
  .skgeo-header-inner {
    gap: 20px;
    padding: 0 20px;
  }

  .skgeo-nav ul {
    gap: 20px;
  }

  .skgeo-nav a {
    font-size: 11px;
  }
}

/* Header */
@media (max-width: 860px) {
  .skgeo-header-inner {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 16px;
  }

  .skgeo-logo {
    width: 100%;
    justify-content: center;
  }

  .skgeo-nav {
    width: 100%;
    order: 3;
  }

  .skgeo-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .skgeo-header-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}


/** Footer */
.skgeo-footer {
  background: #000;
  color: #fff;
  padding-top: 70px;
}

.skgeo-footer-inner {
  max-width: 1200px;
  margin: 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: #fff;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 6px;
}

.skgeo-footer-legal a:hover {
  opacity: .7;
}


.skgeo-footer-menu {
  gap: 12px;
}

.skgeo-footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
}

.skgeo-footer-menu a:hover {
  opacity: .7;
}


.skgeo-footer-contact {
  text-align: right;
  gap: 10px;
}

.skgeo-footer-address {
  font-size: 13px;
}

.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: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
}

.skgeo-social:hover {
  background: #00c1a2;
  color: #fff;
}
.skgeo-footer-bottom {
  border-top: 1px solid #444;
  width: 100%;
}


/** Munkatasak aloldal */
.skgeo-team{
    position: relative;
    background: #024c43;
    overflow: hidden;
    padding: 72px 20px 80px;
    min-height: calc(100vh - 407px);

}
.skgeo-team:after {
    position: absolute;
    content: "";
    background-image: url(../images/dekorelem_rs.png);
    right: 0;
    bottom: 0;
    width: 1200px;
    height: 1200px;
    opacity: 0.1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: calc(100% - -520px) 350px;
}

.skgeo-team-inner{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.skgeo-team-title{
    margin: 0 0 58px 0;
    color: #ffffff;
    font-size: 35px;
    line-height: 1.05;
    font-weight: 500;
    text-transform: uppercase;
}
.skgeo-team-col{
    display: grid;
    flex-direction: column;
    gap: 24px;
}

.skgeo-team-card{
    text-align: center;
}

.skgeo-team-card h3{
    margin: 0 0 8px 0;
    color: #08b8a6;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
}

.skgeo-team-card p{
    font-family: Ubuntu;
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
    text-transform: uppercase;
}

.skgeo-team-decor_{
    position: absolute;
    right: -350px;
    bottom: -230px;
    width: 800px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

.skgeo-team-decor img{
    display: block;
    width: 100%;
    height: auto;
}

.skgeo-team-grid{
}

@media (min-width: 1024px) {
    .skgeo-team-grid{
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 90px;
        margin-bottom: 24px;
    }
}

/* Tablet */
@media (max-width: 1023px) {
    .skgeo-team-col{
        margin-bottom: 24px;
    }
}

@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;
    }
}

