/* ===== ALAPOK & RESET - DARK THEME ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --baby-blue: #87ceeb;
  --blue-medium: #4a9fcc;
  --blue-dark: #2e7d9b;
  --blue-darker: #1a5a7a;
  --dark-bg: #0a0e27;
  --dark-secondary: #151b3d;
  --dark-tertiary: #1e2749;
  --white: #ffffff;
  --gray-light: #e0e0e0;
  --gray-medium: #b0b0b0;
  --gray-dark: #808080;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--gray-light);
  background: var(--dark-bg);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAVIGATION - DARK ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 90, 122, 0.15),
    rgba(10, 14, 39, 0.98)
  );
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(135, 206, 235, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

nav.transparent {
  background: linear-gradient(
    180deg,
    rgba(26, 90, 122, 0.1),
    rgba(10, 14, 39, 0.7)
  );
  border-bottom: 2px solid transparent;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}

.logo-text h1 {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--baby-blue);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--baby-blue), var(--blue-medium));
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--baby-blue);
}

.btn-primary {
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  color: var(--dark-bg);
  padding: 0.7rem 1.8rem;
  border-radius: 2px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(135, 206, 235, 0.3);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(135, 206, 235, 0.5);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-darker));
  color: var(--white) !important;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

/* ===== HERO SECTION - DARK ===== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  user-select: none;
}

.carousel {
  position: relative;
  height: 100%;
  width: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.1),
    rgba(26, 90, 122, 0.1)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 0 40px rgba(135, 206, 235, 0.5);
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  font-weight: 300;
  color: var(--gray-light);
}

.hero-content .btn-hero {
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  color: var(--dark-bg);
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  border-radius: 2px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(135, 206, 235, 0.5);
  letter-spacing: 1px;
}

.hero-content .btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(135, 206, 235, 0.7);
}

.carousel-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.dot {
  width: 40px;
  height: 4px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: linear-gradient(90deg, var(--baby-blue), var(--blue-medium));
  box-shadow: 0 0 15px rgba(135, 206, 235, 0.8);
}

/* Carousel Arrows - Modern & Clean */
.carousel-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 20;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  color: white;
  opacity: 0.6;
}

.carousel:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow-left {
  left: 0;
  background: linear-gradient(to right, rgba(10, 14, 39, 0.6), transparent);
  justify-content: flex-start;
  padding-left: 2rem;
}

.carousel-arrow-right {
  right: 0;
  background: linear-gradient(to left, rgba(10, 14, 39, 0.6), transparent);
  justify-content: flex-end;
  padding-right: 2rem;
}

.carousel-arrow:hover {
  opacity: 1;
}

.carousel-arrow-left:hover {
  background: linear-gradient(to right, rgba(10, 14, 39, 0.8), transparent);
}

.carousel-arrow-right:hover {
  background: linear-gradient(to left, rgba(10, 14, 39, 0.8), transparent);
}

.carousel-arrow svg {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(135, 206, 235, 0.8));
  transition: transform 0.3s ease;
}

.carousel-arrow:hover svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px rgba(135, 206, 235, 1));
}

.carousel-arrow-left:hover svg {
  transform: scale(1.2) translateX(-5px);
}

.carousel-arrow-right:hover svg {
  transform: scale(1.2) translateX(5px);
}

/* ===== SECTIONS ===== */
section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    var(--dark-secondary) 50%,
    rgba(46, 125, 155, 0.15) 100%
  );
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--baby-blue), var(--blue-medium));
  border-radius: 0;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(
    135deg,
    var(--dark-secondary) 0%,
    rgba(46, 125, 155, 0.2) 50%,
    var(--dark-tertiary) 100%
  );
  padding: 3rem 0;
  color: white;
  border-top: 2px solid rgba(135, 206, 235, 0.3);
  border-bottom: 2px solid rgba(135, 206, 235, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
  letter-spacing: 1px;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.card {
  background: linear-gradient(
    135deg,
    var(--dark-secondary),
    var(--dark-tertiary)
  );
  border-radius: 4px;
  padding: 2.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(135, 206, 235, 0.2);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--baby-blue), var(--blue-medium));
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(135, 206, 235, 0.2);
  border-color: var(--baby-blue);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--dark-bg);
  font-size: 1.8rem;
  box-shadow: 0 0 20px rgba(135, 206, 235, 0.4);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: 1px;
}

.card p {
  color: var(--gray-medium);
  line-height: 1.8;
}

/* ===== TRUST ELEMENTS ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.values-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--dark-secondary),
    var(--dark-tertiary)
  );
  border-radius: 8px;
  border: 1px solid rgba(135, 206, 235, 0.2);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  border-color: var(--baby-blue);
  box-shadow: 0 10px 30px rgba(135, 206, 235, 0.2);
}

.value-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--baby-blue);
  line-height: 1;
  min-width: 60px;
  opacity: 0.3;
}

.value-content h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.value-content p {
  color: var(--gray-medium);
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .value-item {
    gap: 1.5rem;
  }

  .value-number {
    font-size: 2rem;
    min-width: 50px;
  }
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-list .trust-item {
  margin: 0;
}

.featured-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-darker));
  border-radius: 8px;
  border: 2px solid rgba(135, 206, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.featured-box::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.1), transparent);
  border-radius: 2px;
}

.featured-content {
  position: relative;
  z-index: 1;
}

.featured-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--baby-blue);
  margin-bottom: 1rem;
  line-height: 1;
}

.featured-title {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.featured-description {
  color: var(--gray-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.featured-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.featured-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--baby-blue);
}

.featured-stat-label {
  color: var(--gray-medium);
  font-size: 0.95rem;
}

.trust-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--dark-secondary),
    var(--dark-tertiary)
  );
  border-radius: 4px;
  transition: all 0.3s;
  border: 1px solid rgba(135, 206, 235, 0.2);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(135, 206, 235, 0.2);
  border-color: var(--baby-blue);
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.trust-content p {
  color: var(--gray-medium);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ===== ANIMATED GEOMETRIC BACKGROUND ===== */
.geometric-bg {
  position: relative;
  overflow: hidden;
}

.geometric-bg::before,
.geometric-bg::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(135, 206, 235, 0.2);
  border-radius: 2px;
  animation: float 12s infinite ease-in-out;
  box-shadow: 0 0 30px rgba(135, 206, 235, 0.2);
}

.geometric-bg::before {
  width: 400px;
  height: 400px;
  top: 5%;
  left: -5%;
  animation-delay: 0s;
}

.geometric-bg::after {
  width: 500px;
  height: 500px;
  bottom: 10%;
  right: -10%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.2;
  }
  25% {
    transform: translate(80px, -80px) rotate(15deg);
    opacity: 0.3;
  }
  50% {
    transform: translate(0, -120px) rotate(30deg);
    opacity: 0.25;
  }
  75% {
    transform: translate(-80px, -80px) rotate(15deg);
    opacity: 0.3;
  }
}

.geo-shape {
  position: absolute;
  border: 3px solid rgba(135, 206, 235, 0.25);
  border-radius: 2px;
  pointer-events: none;
  box-shadow: 0 0 40px rgba(135, 206, 235, 0.3);
}

.geo-shape-1 {
  width: 300px;
  height: 300px;
  top: 15%;
  right: 10%;
  animation: rotate-float 15s infinite ease-in-out;
}

.geo-shape-2 {
  width: 250px;
  height: 250px;
  bottom: 15%;
  left: 5%;
  animation: rotate-float 18s infinite ease-in-out reverse;
}

.geo-shape-3 {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-rotate 20s infinite ease-in-out;
}

@keyframes rotate-float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.25;
  }
  25% {
    transform: translate(60px, -60px) rotate(120deg) scale(1.1);
    opacity: 0.15;
  }
  50% {
    transform: translate(0, -100px) rotate(240deg) scale(0.9);
    opacity: 0.35;
  }
  75% {
    transform: translate(-60px, -60px) rotate(360deg) scale(1.05);
    opacity: 0.2;
  }
}

@keyframes pulse-rotate {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.15;
    border-color: rgba(135, 206, 235, 0.25);
  }
  33% {
    transform: translate(-50%, -50%) scale(1.3) rotate(60deg);
    opacity: 0.3;
    border-color: rgba(135, 206, 235, 0.4);
  }
  66% {
    transform: translate(-50%, -50%) scale(0.8) rotate(120deg);
    opacity: 0.2;
    border-color: rgba(135, 206, 235, 0.15);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: var(--dark-secondary);
  cursor: pointer;
  transition: transform 0.3s;
  border: 2px solid rgba(135, 206, 235, 0.2);
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: var(--baby-blue);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 39, 0.95), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: white;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.3s ease;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 50px rgba(135, 206, 235, 0.3);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  color: var(--dark-bg);
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 0 30px rgba(135, 206, 235, 0.7);
}

.lightbox-info {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
}

.lightbox-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--baby-blue);
}

.lightbox-info p {
  color: var(--gray-medium);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  color: var(--dark-bg);
  width: 50px;
  height: 50px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 30px rgba(135, 206, 235, 0.7);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95vw;
    max-height: 80vh;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }

  .lightbox-info {
    position: static;
    margin-top: 1rem;
    padding: 0 1rem;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* ===== CONTACT FORM ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-details p,
.contact-details a {
  color: var(--gray-medium);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: var(--baby-blue);
}

.contact-form {
  background: linear-gradient(
    135deg,
    var(--dark-secondary),
    var(--dark-tertiary)
  );
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(135, 206, 235, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid rgba(135, 206, 235, 0.3);
  border-radius: 2px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
  background: var(--dark-bg);
  color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--baby-blue);
  box-shadow: 0 0 20px rgba(135, 206, 235, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  color: var(--dark-bg);
  padding: 1rem;
  border: none;
  border-radius: 2px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(135, 206, 235, 0.5);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--blue-darker) 0%,
    var(--dark-secondary) 50%,
    var(--blue-dark) 100%
  );
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(135, 206, 235, 0.3);
  border-bottom: 2px solid rgba(135, 206, 235, 0.3);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.1), transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: var(--gray-medium);
}

.btn-cta {
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  color: var(--dark-bg);
  padding: 1.2rem 3rem;
  border-radius: 2px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(135, 206, 235, 0.4);
  letter-spacing: 1px;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(135, 206, 235, 0.6);
}

/* ===== WEBSHOP COMING SOON ===== */
.coming-soon {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    rgba(46, 125, 155, 0.15) 50%,
    var(--dark-secondary) 100%
  );
}

.contact-purchase-box {
  background-image: url("callcenter-background.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.contact-purchase-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.78),
    rgba(240, 240, 240, 0.82)
  );
  border-radius: 20px;
  z-index: 0;
}

.contact-purchase-box > * {
  position: relative;
  z-index: 1;
}

.contact-purchase-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--blue-dark);
}

.contact-purchase-box p {
  font-size: 1.2rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-btn:hover::before {
  width: 300px;
  height: 300px;
}

.contact-btn span {
  position: relative;
  z-index: 1;
}

.contact-btn svg {
  position: relative;
  z-index: 1;
}

.contact-btn-phone {
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  color: white;
}

.contact-btn-phone:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(135, 206, 235, 0.4);
}

.contact-btn-email {
  background: linear-gradient(135deg, var(--blue-medium), var(--blue-dark));
  color: white;
}

.contact-btn-email:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(46, 125, 155, 0.4);
}

.coming-soon-content {
  max-width: 700px;
  margin: 0 auto;
}

.coming-soon-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--dark-bg);
  font-size: 4rem;
  box-shadow: 0 0 40px rgba(135, 206, 235, 0.5);
}

.coming-soon h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: 2px;
}

.coming-soon p {
  font-size: 1.3rem;
  color: var(--gray-medium);
  margin-bottom: 2rem;
}

.product-preview {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: linear-gradient(
    135deg,
    var(--dark-secondary),
    var(--dark-tertiary)
  );
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid rgba(135, 206, 235, 0.2);
  max-width: 250px;
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.product-card p {
  color: var(--gray-medium);
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(
    180deg,
    rgba(46, 125, 155, 0.12) 0%,
    var(--dark-secondary) 50%,
    var(--dark-bg) 100%
  );
  color: white;
  padding: 4rem 0 2rem;
  border-top: 2px solid rgba(135, 206, 235, 0.3);
}

/* ===== TIMELINE ANIMATION ===== */
.timeline-item {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.timeline-circle {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(135, 206, 235, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(135, 206, 235, 0);
  }
}

.timeline-line {
  height: 0;
  transition: height 0.8s ease-out;
}

.timeline-line.animate {
  height: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--baby-blue);
  letter-spacing: 1px;
}

.footer-section p {
  color: var(--gray-medium);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a {
  color: var(--gray-medium);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--baby-blue);
}

/* Ikonok fix méret és pozíció */
.footer-section p i,
.footer-section a i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.footer-section a:hover {
  color: var(--baby-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  color: var(--gray-dark);
}

/* ===== RESPONSIVE ===== */
.responsive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ===== AWARD BOX WITH GOLD SHIMMER ===== */
.award-box {
  background: linear-gradient(135deg, #b8860b, #ffd700, #b8860b);
  padding: 1.5rem;
  border-radius: 12px;
  color: #ffffff;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
      0 0 40px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6),
      0 0 80px rgba(255, 255, 255, 0.4), 0 0 120px rgba(255, 255, 255, 0.2);
  }
}

.award-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.award-box p {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.award-box strong {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.award-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.3s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.award-link:hover {
  color: var(--gray-light);
  text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 2px 8px rgba(0, 0, 0, 0.7);
}

.placeholder-box {
  background: linear-gradient(
    135deg,
    var(--dark-secondary),
    var(--dark-tertiary)
  );
  border-radius: 4px;
  height: 450px;
  border: 2px solid rgba(135, 206, 235, 0.2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.responsive-grid-reverse {
  direction: rtl;
}

.responsive-grid-reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .responsive-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Mobilon MINDEN grid normál sorrend legyen */
  .responsive-grid-reverse {
    direction: ltr !important;
  }

  .placeholder-box {
    height: 300px;
    order: 2;
  }

  .responsive-grid > div:not(.placeholder-box) {
    order: 1;
  }

  /* Munkafolyamat grid mobilon */
  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  /* Timeline mobile */
  .timeline-item {
    padding-left: 2rem !important;
  }

  .timeline-item h3 {
    font-size: 1.2rem !important;
  }

  .timeline-item p {
    font-size: 0.9rem !important;
  }

  .timeline-circle {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.8rem !important;
    left: -2rem !important;
  }

  .timeline-line {
    left: -0.95rem !important;
  }

  .hero-content h1 {
    font-size: 2rem !important;
  }

  .hero-content p {
    font-size: 1rem !important;
  }

  .section-header h2 {
    font-size: 2rem !important;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--dark-secondary);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: left 0.3s;
    border-top: 2px solid rgba(135, 206, 235, 0.3);
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid-2x2,
  .trust-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-preview {
    flex-direction: column;
    align-items: center;
  }

  .carousel-arrow {
    width: 60px;
    opacity: 0.8;
  }

  .carousel-arrow svg {
    width: 35px;
    height: 35px;
  }

  .carousel-arrow-left {
    padding-left: 1rem;
    background: linear-gradient(to right, rgba(10, 14, 39, 0.7), transparent);
  }

  .carousel-arrow-right {
    padding-right: 1rem;
    background: linear-gradient(to left, rgba(10, 14, 39, 0.7), transparent);
  }
}
/* ===== GOOGLE MAPS SECTION ===== */
.map-section {
  padding: 0;
  position: relative;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  border: 0;
  filter: grayscale(0%) contrast(100%) brightness(95%);
}

.map-info-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.95),
    rgba(21, 27, 61, 0.95)
  );
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(135, 206, 235, 0.3);
  max-width: 300px;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.map-info-overlay h3 {
  color: var(--baby-blue);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.map-info-overlay p {
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.map-info-overlay a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--baby-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.map-info-overlay a:hover {
  color: var(--white);
  transform: translateX(5px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .map-container {
    height: 350px;
  }

  .map-info-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
    padding: 1rem;
  }

  .map-info-overlay h3 {
    font-size: 1rem;
  }

  .map-info-overlay p {
    font-size: 0.85rem;
  }
}
/* ===== FOOTER FRISSÍTÉS ===== */

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 20px rgba(135, 206, 235, 0.4);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Footer Links Section */
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-legal-links a {
  color: var(--gray-medium);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-legal-links a:hover {
  color: var(--baby-blue);
}

/* Developer Credit */
.footer-developer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.footer-developer a {
  color: var(--baby-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-developer a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Footer Bottom Enhanced */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  color: var(--gray-dark);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-legal-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-developer {
    text-align: center;
  }
}
/* ===== FOOTER FRISSÍTÉS ===== */

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 20px rgba(135, 206, 235, 0.4);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Footer Bottom Enhanced */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  color: var(--gray-dark);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

/* Footer Legal Links - Horizontal Layout */
.footer-legal-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-legal-links a {
  color: var(--gray-medium);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.footer-legal-links a:hover {
  color: var(--baby-blue);
}

/* Developer Credit */
.footer-developer {
  font-size: 0.9rem;
  color: var(--gray-dark);
  text-align: center;
}

.footer-developer a {
  color: var(--baby-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-developer a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-legal-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-developer {
    text-align: center;
  }

  .footer-bottom-content {
    gap: 1.5rem;
  }
}
/* ===== FOOTER FRISSÍTÉS ===== */

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  color: var(--baby-blue);
  transition: all 0.3s;
  text-decoration: none;
  background: none !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.social-icon:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.1);
  background: none !important;
  box-shadow: none !important;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
}

/* Footer Bottom Enhanced */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  color: var(--gray-dark);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

/* Footer Legal Links - Horizontal Layout */
.footer-legal-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-legal-links a {
  color: var(--gray-medium);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.footer-legal-links a:hover {
  color: var(--baby-blue);
}

/* Developer Credit */
.footer-developer {
  font-size: 0.9rem;
  color: var(--gray-dark);
  text-align: center;
}

.footer-developer a {
  color: var(--baby-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-developer a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-legal-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-developer {
    text-align: center;
  }

  .footer-bottom-content {
    gap: 1.5rem;
  }
}
/* ===== GYIK ACCORDION SECTION ===== */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(
    135deg,
    var(--dark-secondary),
    var(--dark-tertiary)
  );
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 2px solid rgba(135, 206, 235, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--baby-blue);
  box-shadow: 0 5px 20px rgba(135, 206, 235, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
  color: var(--white);
}

.faq-question:hover {
  color: var(--baby-blue);
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  flex: 1;
}

.faq-question-icon {
  color: var(--baby-blue);
  flex-shrink: 0;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-toggle svg {
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: var(--gray-medium);
  line-height: 1.8;
  font-size: 1rem;
  margin-left: 3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question-text {
    font-size: 1rem;
    gap: 0.8rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }

  .faq-answer p {
    margin-left: 0;
    font-size: 0.95rem;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
  }
}
/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.98),
    rgba(21, 27, 61, 0.98)
  );
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(135, 206, 235, 0.3);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  padding: 1.5rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner-text h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner-text p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--baby-blue);
  text-decoration: underline;
  transition: color 0.3s;
}

.cookie-banner-text a:hover {
  color: var(--white);
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  font-family: inherit;
}

.cookie-btn i {
  width: 18px;
  height: 18px;
}

.cookie-btn-settings {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(135, 206, 235, 0.3);
}

.cookie-btn-settings:hover {
  background: rgba(135, 206, 235, 0.1);
  border-color: var(--baby-blue);
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(135, 206, 235, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(135, 206, 235, 0.5);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.cookie-modal.show {
  display: flex;
  opacity: 1;
}

.cookie-modal-content {
  background: linear-gradient(
    135deg,
    var(--dark-secondary),
    var(--dark-tertiary)
  );
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(135, 206, 235, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.cookie-modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(135, 206, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal-header h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--gray-medium);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s;
}

.cookie-modal-close:hover {
  background: rgba(135, 206, 235, 0.1);
  color: var(--baby-blue);
}

.cookie-modal-close i {
  width: 24px;
  height: 24px;
}

.cookie-modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.cookie-modal-intro {
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.cookie-category {
  background: rgba(135, 206, 235, 0.05);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.cookie-category:hover {
  border-color: var(--baby-blue);
  background: rgba(135, 206, 235, 0.08);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.cookie-category-info {
  flex: 1;
}

.cookie-category-info h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-category-info h3 i {
  color: var(--baby-blue);
  width: 20px;
  height: 20px;
}

.cookie-category-info p {
  color: var(--gray-medium);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
  display: none;
}

.cookie-toggle-label {
  display: block;
  width: 50px;
  height: 26px;
  background: rgba(128, 128, 128, 0.3);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-toggle-label.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-toggle-switch {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-label {
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
}

.cookie-toggle
  input[type="checkbox"]:checked
  + .cookie-toggle-label
  .cookie-toggle-switch {
  left: 27px;
}

.cookie-modal-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
}

.cookie-modal-links a {
  color: var(--baby-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.cookie-modal-links a:hover {
  color: var(--white);
}

.cookie-modal-links a i {
  width: 16px;
  height: 16px;
}

.cookie-modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-btn-reject {
  background: transparent;
  color: var(--gray-light);
  border: 2px solid rgba(128, 128, 128, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(128, 128, 128, 0.1);
  border-color: var(--gray-light);
}

.cookie-btn-save {
  background: linear-gradient(135deg, var(--blue-medium), var(--blue-dark));
  color: white;
}

.cookie-btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(74, 159, 204, 0.4);
}

.cookie-btn-accept-all {
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  color: var(--dark-bg);
}

.cookie-btn-accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(135, 206, 235, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-modal-content {
    max-height: 95vh;
    margin: 0.5rem;
  }

  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 1.5rem;
  }

  .cookie-category-header {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-modal-links {
    flex-direction: column;
    gap: 1rem;
  }
}
/* ===== LEBEGŐ SÜTI BEÁLLÍTÁSOK GOMB ===== */
.floating-cookie-btn {
  position: fixed;
  bottom: 20px;
  left: 20px; /* <-- BALRA KERÜLT */
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--baby-blue), var(--blue-medium));
  border: none;
  border-radius: 50%;
  color: var(--dark-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.floating-cookie-btn:hover {
  opacity: 1;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(135, 206, 235, 0.6);
}

.floating-cookie-btn:active {
  transform: scale(1.05) translateY(-2px);
}

.floating-cookie-btn i {
  width: 26px;
  height: 26px;
}

/* Mobil - kisebb és kicsit beljebb */
@media (max-width: 768px) {
  .floating-cookie-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px; /* <-- MOBIL IS BALRA */
  }

  .floating-cookie-btn i {
    width: 22px;
    height: 22px;
  }
}

/* Ha aktív a cookie banner vagy modal, rejtse el a lebegő gombot */
.cookie-banner.show ~ .floating-cookie-btn {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.cookie-modal.show ~ .floating-cookie-btn {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

/* Fade-in animáció amikor megjelenik */
.floating-cookie-btn {
  animation: fadeInScale 0.4s ease-out 2s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 0.9;
    transform: scale(1);
  }
}

/* Pulse animáció - finom figyelemfelhívás */
@keyframes gentlePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.5);
  }
}

/* Pulse csak az első 10 másodpercben */
.floating-cookie-btn {
  animation: fadeInScale 0.4s ease-out 2s both, gentlePulse 2s ease-in-out 3s 3;
}

/* ===== FORM NOTIFICATION ===== */
.form-notification {
  margin-bottom: 2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.notification-content i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.notification-content span {
  font-size: 1rem;
  line-height: 1.5;
}

/* Sikeres üzenet (zöld) */
.form-notification-success {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  border: 2px solid #45a049;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Hiba üzenet (piros) */
.form-notification-error {
  background: linear-gradient(135deg, #f44336, #e53935);
  color: white;
  border: 2px solid #e53935;
  box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

/* Redirect timer szöveg */
.redirect-timer {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
  font-style: italic;
}

/* Submit gomb loading ikon forgás */
.btn-submit i[data-lucide="loader-2"] {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .form-notification {
    padding: 1rem;
  }

  .notification-content {
    font-size: 0.9rem;
  }

  .redirect-timer {
    font-size: 0.85rem;
  }
}
