
: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);
  border-bottom: 1px solid var(--skgeo-border);
}

.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%;
}
/** Static content end */


/** =========================
 * Section 5
 * ========================= */
.skgeo-section4{
    position: relative;
    z-index: 1;
    min-height: 620px;
    width: 100%;
    overflow: hidden;
    background-image: url("../images/forest.png");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

/* zöld overlay */
.skgeo-section4-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(160, 225, 220, 0.18) 0%,
            rgba(14, 158, 140, 0.32) 14%,
            rgba(8, 138, 122, 0.52) 30%,
            rgba(7, 120, 107, 0.70) 48%,
            rgba(5, 101, 91, 0.84) 68%,
            rgba(4, 84, 75, 0.93) 84%,
            rgba(3, 76, 67, 0.98) 100%
        );
}

/* section4 saját dekor nem kell, mert közös wrapper kezeli */
.skgeo-section4-decor{
    display: none;
}

/* belső tartalom */
.skgeo-section4-inner{
    position: relative;
    z-index: 2;
    min-height: 620px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 60px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.skgeo-section4-inner h2{
    margin: 0;
    max-width: 1100px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.45;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

/** =========================
 * Responsive
 * ========================= */
@media (max-width: 1200px){
    .skgeo-section4{
        min-height: 520px;
    }

    .skgeo-section4-inner{
        min-height: 520px;
    }

    .skgeo-section4-inner h2{
        font-size: 26px;
        max-width: 920px;
    }
}

@media (max-width: 768px){
    .skgeo-section4{
        min-height: 420px;
        background-position: left center;
    }

    .skgeo-section4-inner{
        min-height: 420px;
        padding: 32px 24px;
    }

    .skgeo-section4-inner h2{
        font-size: 20px;
        line-height: 1.5;
    }
}

@media (max-width: 480px){
    .skgeo-section4-inner h2{
        font-size: 17px;
    }
}




/* =========================
   Lézerszkenneres felmérések - section1
   ========================= */

.laser-hero {
  background: #efefef;
  width: 100%;
  overflow: hidden;
}

.laser-hero__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: stretch;
  min-height: 620px;
  width: 100%;
}

.laser-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 7vw 90px 15vw;
  background: #efefef;
}

.laser-hero__text h1 {
  margin: 0 0 34px;
  font-family: 'Ubuntu', Arial, sans-serif;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #014d43;
}

.laser-hero__text p {
  margin: 0;
  max-width: 560px;
  font-family: 'Ubuntu', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #111111;
}

.laser-hero__image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.laser-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: grayscale(100%) contrast(1.05) brightness(0.78) sepia(0.18) hue-rotate(155deg) saturate(1.8);
}

/* finom kékes overlay a tervhez hasonló hangulathoz */
.laser-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 84, 120, 0.18) 0%,
    rgba(0, 56, 88, 0.22) 100%
  );
  pointer-events: none;
}

/* nagyobb desktop */
@media (min-width: 1600px) {
  .laser-hero__text {
    padding-left: 18vw;
    padding-right: 8vw;
  }

  .laser-hero__text h1 {
    font-size: 56px;
  }
}

/* tablet */
@media (max-width: 1199.98px) {
  .laser-hero__content {
    grid-template-columns: 1.45fr 1fr;
    min-height: 540px;
  }

  .laser-hero__text {
    padding: 72px 5vw 72px 9vw;
  }

  .laser-hero__text h1 {
    font-size: 40px;
  }

  .laser-hero__text p {
    font-size: 15px;
    line-height: 1.65;
  }

  .laser-hero__image {
    min-height: 540px;
  }
}

/* mobil */
@media (max-width: 767.98px) {
  .laser-hero__content {
    grid-template-columns: 1fr;
  }

  .laser-hero__text {
    order: 1;
    padding: 56px 24px 48px;
  }

  .laser-hero__text h1 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .laser-hero__text p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  .laser-hero__image {
    order: 2;
    min-height: 340px;
  }
}


/* =========================
   Lézerszkennelés - Section 2
   ========================= */

.laser-section2 {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    #ffffff 0,
    #ffffff 160px,
    #00493f 160px,
    #00493f 100%
  );
}

.laser-section2__top {
  position: relative;
  z-index: 2;
}

.laser-section2__intro-card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: stretch;
  padding: 0 24px;
}

.laser-section2__images {
  position: relative;
  z-index: 3;
  width: 230px;
}

.laser-section2__image {
  overflow: hidden;
}

.laser-section2__image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.laser-section2__image--top {
  width: 230px;
  height: 160px;
}

.laser-section2__image--top img {
  width: 230px;
  height: 160px;
}

.laser-section2__image--bottom {
  width: 160px;
  height: 135px;
  margin-top: 0;
  margin-left: 70px;
}

.laser-section2__image--bottom img {
  width: 160px;
  height: 135px;
}

.laser-section2__info {
  background: #12a896;
  color: #ffffff;
  min-height: 295px;
  padding: 38px 38px 34px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.laser-section2__info h2 {
  margin: 0 0 18px;
  font-family: 'Ubuntu', Arial, sans-serif;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.laser-section2__info h3 {
  margin: 0 0 16px;
  font-family: 'Ubuntu', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.laser-section2__info ul {
  margin: 0 0 18px 18px;
  padding: 0;
}

.laser-section2__info li {
  margin-bottom: 4px;
  font-family: 'Ubuntu', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.laser-section2__info p {
  margin: 0;
  max-width: 620px;
  font-family: 'Ubuntu', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
}

.laser-section2__bottom {
  position: relative;
  margin-top: 66px;
  padding: 0 24px 90px;
  background: #00493f;
}

.laser-section2__bottom:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -160px;
  width: 340px;
  height: 720px;
  pointer-events: none;
  background-image: url(../images/dekorelem_600.png);
  background-size: cover;
  opacity: 0.1;
  z-index: 2;
}

.laser-section2__bottom-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.laser-section2__bottom-inner > h2 {
  margin: 0 0 56px;
  font-family: 'Ubuntu', Arial, sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.laser-section2__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1011px;
}

.laser-section2__col h3 {
  margin: 0 0 22px;
  font-family: 'Ubuntu', Arial, sans-serif;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
  color: #12a896;
}

.laser-section2__col ul {
  margin: 0;
  padding-left: 18px;
}

.laser-section2__col li {
  margin-bottom: 7px;
  font-family: 'Ubuntu', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: #ffffff;
}

.laser-section2__globe {
  position: absolute;
  right: -40px;
  bottom: -10px;
  width: 340px;
  height: 340px;
  border: 32px solid rgba(123, 193, 180, 0.16);
  border-radius: 50%;
  z-index: 1;
}

.laser-section2__globe::before {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  background: rgba(123, 193, 180, 0.12);
}

.laser-section2__globe::after {
  content: "🌍";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 165px;
  opacity: 0.12;
  filter: grayscale(1);
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1199.98px) {
  .laser-section2__intro-card {
    grid-template-columns: 210px 1fr;
  }

  .laser-section2__images {
    width: 210px;
  }

  .laser-section2__image--top,
  .laser-section2__image--top img {
    width: 210px;
    height: 150px;
  }

  .laser-section2__image--bottom,
  .laser-section2__image--bottom img {
    width: 150px;
    height: 126px;
  }

  .laser-section2__image--bottom {
    margin-left: 60px;
  }

  .laser-section2__info h2 {
    font-size: 30px;
  }

  .laser-section2__cols {
    gap: 40px;
    max-width: 100%;
  }

  .laser-section2__globe {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 767.98px) {
  .laser-section2 {
    background: #00493f;
  }

  .laser-section2__intro-card {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .laser-section2__images {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
  }

  .laser-section2__image--top,
  .laser-section2__image--top img,
  .laser-section2__image--bottom,
  .laser-section2__image--bottom img {
    width: 100%;
    height: 180px;
    margin: 0;
  }

  .laser-section2__info {
    min-height: auto;
    padding: 28px 22px;
  }

  .laser-section2__info h2 {
    font-size: 28px;
  }

  .laser-section2__info h3 {
    font-size: 16px;
  }

  .laser-section2__info p,
  .laser-section2__info li {
    font-size: 14px;
  }

  .laser-section2__bottom {
    margin-top: 36px;
    padding: 0 16px 60px;
  }

  .laser-section2__bottom-inner > h2 {
    margin-bottom: 34px;
    font-size: 28px;
  }

  .laser-section2__cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .laser-section2__col h3 {
    font-size: 18px;
  }

  .laser-section2__col li {
    font-size: 14px;
  }

  .laser-section2__globe {
    width: 180px;
    height: 180px;
    right: -30px;
    bottom: -20px;
    border-width: 18px;
  }

  .laser-section2__globe::before {
    inset: 18px;
  }

  .laser-section2__globe::after {
    font-size: 88px;
  }
}


@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;
  }
}

