/**
* NEMUNDIR - Dark Fantasy Weboldal Stílus
* Modern, tiszta CSS Lato betűtípussal
* Kiváló kontrasztok, prémium megjelenés
*/

/*--------------------------------------------------------------
# Google Fonts Import - Lato
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

/*--------------------------------------------------------------
# CSS Változók - Dark Fantasy Színpaletta
--------------------------------------------------------------*/
:root {
  /* Háttérek - Mély antracit/türkiz árnyalatok */
  --bg-color: #12181b;              /* Fő háttér - mély sötét */
  --container-bg: #1a2226;          /* Konténerek, boxok */
  --container-highlight: #1f2a2f;   /* Kiemelések, hover állapot */
  
  /* Címek - Réz, arany, krém */
  --primary-heading: #d48843;       /* H1 - Réz/Arany */
  --secondary-heading: #d1d5d1;     /* H2, H3 - Krémfehér */
  --tertiary-heading: #a5b3a6;      /* Alternatív - Zsálya zöld */
  
  /* Szövegszínek */
  --text-color: #e0e0e0;            /* Folyószöveg - Törtfehér */
  --text-muted: #b8bcb8;            /* Halványabb szöveg */
  
  /* Akcentus színek */
  --accent-color: #3a7d7d;          /* Gombok, linkek - Teal */
  --accent-hover: #4fa3a3;          /* Hover állapot */
  
  /* Betűtípus */
  --font-main: 'Lato', sans-serif;
  
  /* Árnyékok */
  --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  --box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}

/*--------------------------------------------------------------
# Általános Beállítások
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Linkek */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:active,
a:focus {
  color: var(--accent-hover);
  outline: none;
  text-decoration: none;
}

/* Bekezdések */
p {
  padding: 0;
  margin: 0 0 20px 0;
  line-height: 1.8;
}

/* Címek - Modern, Tiszta, Félkövér */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding: 0;
  letter-spacing: 1px;
  text-shadow: var(--text-shadow);
}

h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  color: var(--secondary-heading);
  border-bottom: 1px solid rgba(212, 136, 67, 0.2);
  padding-bottom: 8px;
  margin-bottom: 25px;
}

h3 {
  font-size: 28px;
  color: var(--secondary-heading);
}

h4 {
  font-size: 22px;
  color: var(--tertiary-heading);
}

h5, h6 {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 700;
}

/* Reszponzív címek */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
}

/*--------------------------------------------------------------
# Back to Top Gomb
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  background: var(--accent-color);
  color: var(--text-color);
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  width: 64px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-hover);
}

.back-to-top i {
  line-height: 0;
  font-size: 20px;
}

.back-to-top:focus {
  background: var(--accent-color);
  color: var(--text-color);
  outline: none;
}

.back-to-top:hover {
  background: var(--accent-hover);
  color: var(--bg-color);
  transform: translateY(-2px);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header - Sötét háttér
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  background: var(--bg-color);
  border-bottom: 2px solid var(--primary-heading);
}

#header.header-transparent {
  background: transparent;
  border-bottom: none;
}

#header.header-scrolled {
  background: var(--bg-color);
  height: 70px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
}

#header #logo h1 {
  font-size: 32px;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: var(--primary-heading);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 24px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
# Navigáció - Modern, Tiszta
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-main);
  color: var(--text-color);
  font-size: 15px;
  font-weight: 700;
  padding: 0 2px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 1px;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: var(--primary-heading);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--primary-heading);
}

/* Dropdown menü */
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--container-bg);
  box-shadow: var(--box-shadow);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 12px 20px;
  font-size: 14px;
  text-transform: none;
  color: var(--text-color);
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--primary-heading);
  background: var(--container-highlight);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobil Navigáció
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: var(--primary-heading);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--bg-color);
  overflow-y: auto;
  transition: 0.3s;
  border: 2px solid var(--primary-heading);
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a {
  padding: 12px 20px;
  font-size: 15px;
  color: var(--text-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--primary-heading);
  background: var(--container-highlight);
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--container-highlight);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--primary-heading);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Szekció - Sötét fantasy háttér
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(18, 24, 27, 0.95), rgba(26, 34, 38, 0.9)), url("../img/hero-bg.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 1025px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 640px) {
  #hero {
    height: 120vh;
  }
}

#hero .hero-text {
  position: absolute;
  left: 0;
  top: 60px;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#hero h2 {
  margin: 30px 0 10px 0;
  padding: 0 15px;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--primary-heading);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: none;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 32px;
    line-height: 1.3;
  }
}

#hero p {
  color: var(--text-color);
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 22px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 300;
}

@media (max-width: 768px) {
  #hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

#hero .btn-get-started {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 10px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  color: var(--bg-color);
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 15px rgba(79, 163, 163, 0.5);
  transform: translateY(-2px);
}

#hero .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

#hero .product-screens img {
  box-shadow: 0px -2px 19px 4px rgba(0, 0, 0, 0.5);
}

#hero .product-screens .product-screen-1 {
  position: absolute;
  z-index: 30;
  left: calc(50% + 54px);
  bottom: 0;
  top: 30px;
}

#hero .product-screens .product-screen-2 {
  position: absolute;
  z-index: 20;
  left: calc(50% - 154px);
  bottom: 0;
  top: 90px;
}

#hero .product-screens .product-screen-3 {
  position: absolute;
  z-index: 10;
  left: calc(50% - 374px);
  bottom: 0;
  top: 150px;
}

@media (max-width: 767px) {
  #hero .product-screens .product-screen-1 {
    position: static;
    padding-top: 30px;
  }
  #hero .product-screens .product-screen-2,
  #hero .product-screens .product-screen-3 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Szekciók - Konténer háttér
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 60px 0;
}

.section-header .section-title {
  font-size: 42px;
  color: var(--primary-heading);
  text-align: center;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: var(--text-shadow);
  margin-bottom: 15px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.section-header .section-divider {
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  margin: 0 auto 30px;
}

.section-bg {
  background: var(--container-bg);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
  margin-top: 92px;
  background: var(--container-bg);
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: var(--secondary-heading);
  border-bottom: none;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--accent-color);
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About Us Szekció - Konténer háttér
--------------------------------------------------------------*/
#about {
  background: var(--container-bg);
  padding: 80px 0;
  overflow: hidden;
}

#about .about-img {
  height: 510px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content .h2,
#about .content h2 {
  color: var(--primary-heading);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: 1px;
  text-shadow: var(--text-shadow);
}

#about .content h3 {
  color: var(--secondary-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  border-bottom: none;
}

#about .content p {
  line-height: 1.8;
  color: var(--text-color);
  font-size: 16px;
  margin-bottom: 20px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 8px;
  color: var(--accent-color);
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 12px;
  color: var(--text-color);
  position: relative;
  padding-left: 28px;
}

#about .content ul li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Features Szekció - Fő háttér
--------------------------------------------------------------*/
#features {
  background: var(--bg-color);
  padding: 80px 0 0 0;
  overflow: hidden;
}

#features .features-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #features .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#features .features-img img {
  max-width: 100%;
}

#features .box {
  margin-bottom: 25px;
  text-align: center;
  padding: 30px;
  background: var(--container-bg);
  border-radius: 8px;
  transition: all 0.3s ease;
}

#features .box:hover {
  background: var(--container-highlight);
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

#features .icon {
  margin-bottom: 15px;
}

#features .icon i {
  color: var(--accent-color);
  font-size: 48px;
  transition: 0.3s;
}

#features .box:hover .icon i {
  color: var(--accent-hover);
  transform: scale(1.1);
}

#features .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  letter-spacing: 1px;
}

#features .title a {
  color: var(--secondary-heading);
  text-shadow: var(--text-shadow);
}

#features .title a:hover {
  color: var(--primary-heading);
}

#features .description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--text-color);
}

#features .section-description {
  padding-bottom: 10px;
  color: var(--text-color);
}

/*--------------------------------------------------------------
# Advanced Features Szekció
--------------------------------------------------------------*/
#advanced-features {
  background: var(--bg-color);
  overflow: hidden;
}

#advanced-features .features-row {
  background: var(--container-bg);
  padding: 80px 0 30px 0;
}

#advanced-features h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-heading);
  letter-spacing: 1px;
  text-shadow: var(--text-shadow);
  text-transform: uppercase;
}

#advanced-features h3 {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--secondary-heading);
  text-shadow: var(--text-shadow);
}

#advanced-features p {
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
  font-size: 16px;
}

#advanced-features i {
  color: var(--accent-color);
  font-size: 64px;
  transition: 0.3s;
  float: left;
  padding: 0 20px 0px 0;
  line-height: 1;
}

#advanced-features .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
  border-radius: 8px;
}

#advanced-features .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
  border-radius: 8px;
}

@media (max-width: 768px) {
  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Szekció
--------------------------------------------------------------*/
#call-to-action {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(18, 24, 27, 0.95), rgba(31, 42, 47, 0.9)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 100px 0;
}

#call-to-action .cta-title {
  color: var(--primary-heading);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

#call-to-action .cta-text {
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.7;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 25px;
  transition: all 0.3s ease;
  margin: 10px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  text-transform: uppercase;
}

#call-to-action .cta-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg-color);
  box-shadow: 0 4px 15px rgba(79, 163, 163, 0.5);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# More Features Szekció
--------------------------------------------------------------*/
#more-features {
  background: var(--bg-color);
  padding: 80px 0;
  overflow: hidden;
}

#more-features .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
  background: var(--container-bg);
  transition: all 0.3s ease;
  height: 100%;
  border-radius: 8px;
  border: 1px solid var(--container-highlight);
}

#more-features .box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 40px rgba(212, 136, 67, 0.3);
  border-color: var(--accent-color);
  background: var(--container-highlight);
}

#more-features .icon {
  float: left;
}

#more-features .icon i {
  color: var(--accent-color);
  font-size: 72px;
  transition: 0.3s;
  line-height: 0;
}

#more-features .box:hover .icon i {
  color: var(--primary-heading);
}

#more-features h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  letter-spacing: 1px;
}

#more-features h4 a {
  color: var(--secondary-heading);
  text-shadow: var(--text-shadow);
}

#more-features h4 a:hover {
  color: var(--primary-heading);
}

#more-features p {
  font-size: 15px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 1.7;
  color: var(--text-color);
}

@media (max-width: 767px) {
  #more-features .box {
    margin-bottom: 20px;
  }
  #more-features .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #more-features h4,
  #more-features p {
    margin-left: 0;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Clients Szekció
--------------------------------------------------------------*/
#clients {
  padding: 40px 0;
  background: var(--container-bg);
  overflow: hidden;
}

#clients img {
  max-width: 100%;
  opacity: 0.6;
  transition: 0.3s;
  padding: 15px 0;
  filter: grayscale(100%);
}

#clients img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/*--------------------------------------------------------------
# Pricing Szekció
--------------------------------------------------------------*/
#pricing {
  padding: 80px 0;
  overflow: hidden;
  background: var(--bg-color);
}

#pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
  background: var(--container-bg);
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 8px;
  border: 2px solid var(--container-highlight);
}

#pricing .box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 40px rgba(212, 136, 67, 0.2);
  border-color: var(--accent-color);
}

#pricing h3 {
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--primary-heading);
  letter-spacing: 1px;
  text-shadow: var(--text-shadow);
  text-transform: uppercase;
  border-bottom: none;
}

#pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
}

#pricing h4 sup {
  font-size: 22px;
  top: -20px;
}

#pricing h4 span {
  color: var(--text-muted);
  font-size: 20px;
}

#pricing ul {
  padding: 0;
  list-style: none;
  color: var(--text-color);
  text-align: left;
  line-height: 20px;
  margin: 25px 0;
}

#pricing ul li {
  padding-bottom: 14px;
}

#pricing ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 6px;
}

#pricing .get-started-btn {
  background: var(--accent-color);
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  color: var(--text-color);
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--accent-color);
}

#pricing .get-started-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 15px rgba(79, 163, 163, 0.5);
  transform: translateY(-2px);
}

#pricing .featured {
  border: 3px solid var(--primary-heading);
  box-shadow: 0px 5px 40px rgba(212, 136, 67, 0.3);
}

#pricing .featured h3 {
  color: var(--primary-heading);
}

#pricing .featured .get-started-btn {
  background: var(--primary-heading);
  border-color: var(--primary-heading);
  color: var(--bg-color);
}

#pricing .featured .get-started-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg-color);
}

/*--------------------------------------------------------------
# FAQ Szekció
--------------------------------------------------------------*/
#faq {
  background: var(--container-bg);
  padding: 80px 0;
  overflow: hidden;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .faq-list li {
  border-bottom: 1px solid rgba(58, 125, 125, 0.2);
  margin-bottom: 25px;
  padding-bottom: 25px;
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: var(--font-main);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  padding-left: 30px;
  cursor: pointer;
  color: var(--secondary-heading);
  transition: 0.3s;
  letter-spacing: 0.5px;
  text-shadow: var(--text-shadow);
}

#faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
}

#faq .faq-list p {
  margin-bottom: 0;
  padding: 12px 0 0 30px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
}

#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: var(--text-muted);
}

#faq .faq-list .collapsed:hover {
  color: var(--primary-heading);
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Team Szekció
--------------------------------------------------------------*/
#team {
  background: var(--bg-color);
  padding: 80px 0;
  overflow: hidden;
}

#team .member {
  text-align: center;
  margin-bottom: 30px;
}

#team .member .pic {
  margin-bottom: 20px;
  overflow: hidden;
  height: 260px;
  border-radius: 8px;
  border: 2px solid var(--accent-color);
  box-shadow: var(--box-shadow);
}

#team .member .pic img {
  max-width: 100%;
  transition: 0.3s;
}

#team .member:hover .pic img {
  transform: scale(1.05);
}

#team .member h4 {
  font-weight: 900;
  margin-bottom: 8px;
  font-size: 24px;
  color: var(--primary-heading);
  letter-spacing: 1px;
  text-shadow: var(--text-shadow);
  text-transform: uppercase;
}

#team .member span {
  display: block;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 400;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  transition: 0.3s;
}

#team .member .social a:hover {
  color: var(--bg-color);
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-3px);
}

#team .member .social i {
  font-size: 18px;
  line-height: 0;
}

/*--------------------------------------------------------------
# Gallery Szekció
--------------------------------------------------------------*/
#gallery {
  background: var(--container-bg);
  padding: 80px 0 0 0;
  overflow: hidden;
}

#gallery .container-fluid {
  padding: 0px;
}

#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all ease-in-out 0.4s;
  background: rgba(18, 24, 27, 0.9);
}

#gallery .gallery-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

#gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#gallery .gallery-item:hover img {
  transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# Contact Szekció
--------------------------------------------------------------*/
#contact {
  background: var(--bg-color);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
  padding: 80px 0;
  overflow: hidden;
}

#contact .contact-about h3 {
  font-size: 38px;
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-heading);
  text-shadow: var(--text-shadow);
}

#contact .contact-about p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  background: transparent;
  color: var(--accent-color);
  padding: 8px 0;
  margin-right: 6px;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact .social-links a i {
  line-height: 0;
}

#contact .social-links a:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg-color);
  transform: translateY(-3px);
}

#contact .info {
  color: var(--text-color);
}

#contact .info i {
  font-size: 32px;
  color: var(--accent-color);
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 12px 45px;
  line-height: 1.7;
  font-size: 16px;
  color: var(--text-color);
}

#contact .php-email-form .error-message {
  display: none;
  color: var(--text-color);
  background: #8b0000;
  text-align: center;
  padding: 15px;
  font-weight: 700;
  border-radius: 4px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: var(--text-color);
  background: #2e7d32;
  text-align: center;
  padding: 15px;
  font-weight: 700;
  border-radius: 4px;
}

#contact .php-email-form .loading {
  display: none;
  background: var(--container-highlight);
  text-align: center;
  padding: 15px;
  color: var(--text-color);
  border-radius: 4px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--accent-hover);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 15px;
  font-family: var(--font-main);
  background: var(--container-bg);
  border: 1px solid rgba(58, 125, 125, 0.3);
  color: var(--text-color);
  padding: 12px 15px;
  transition: 0.3s;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
  background-color: var(--container-highlight);
  border-color: var(--accent-color);
  color: var(--text-color);
  outline: none;
}

#contact .php-email-form input::placeholder,
#contact .php-email-form textarea::placeholder {
  color: var(--text-muted);
}

#contact .php-email-form button[type="submit"] {
  background: var(--accent-color);
  border: 0;
  border-radius: 25px;
  padding: 12px 40px;
  color: var(--text-color);
  transition: all 0.3s ease;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--accent-color);
}

#contact .php-email-form button[type="submit"]:hover {
  cursor: pointer;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 15px rgba(79, 163, 163, 0.5);
  transform: translateY(-2px);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--container-bg);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.4);
  padding: 40px 0;
  color: var(--text-color);
  font-size: 14px;
  border-top: 2px solid var(--accent-color);
}

#footer .credits {
  font-size: 13px;
  color: var(--text-muted);
}

#footer .footer-links a {
  color: var(--accent-color);
  padding-left: 15px;
  transition: 0.3s;
  font-weight: 700;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: var(--primary-heading);
}
