/* ===== BASE ===== */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: linear-gradient(180deg, #eef2f7, #f8fbff);
  color: #1a2b3c;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  color: #0f1c2c;
  font-weight: 800;
}

p {
  color: #4a5d73;
  font-size: 1rem;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e6ecf2;
}

.brand-name {
  font-weight: 800;
  color: #0f1c2c;
}

.main-nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #2a3a4b;
  font-weight: 600;
  transition: 0.3s;
}

.main-nav a:hover {
  color: #0077ff;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0077ff, #00d4ff);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,119,255,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,119,255,0.35);
}

.btn-ghost {
  border: 2px solid #0077ff;
  color: #0077ff;
}

.btn-ghost:hover {
  background: #0077ff;
  color: #fff;
}

.btn-outline {
  border: 2px solid #0077ff;
  color: #0077ff;
}

.btn-outline:hover {
  background: #0077ff;
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at top, #eaf2ff, #f8fbff);
}

.hero h1 {
  font-size: 2.8rem;
}

.gradient-text {
  background: linear-gradient(90deg, #0077ff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 1rem auto;
  color: #4a5d73;
}

/* ===== FLOATING GLOW ===== */
.hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #0077ff;
  opacity: 0.1;
  filter: blur(120px);
  top: -50px;
  left: 20%;
}

.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #00d4ff;
  opacity: 0.1;
  filter: blur(120px);
  bottom: -50px;
  right: 20%;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background: #f5f8fc;
}

/* ===== GRID ===== */
.card-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.card-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ===== CARDS ===== */
.service-card, .ref-card, .package-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid #e6ecf2;
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover,
.ref-card:hover,
.package-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* subtle glow */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, transparent, rgba(0,119,255,0.08), transparent);
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover::after {
  opacity: 1;
}

/* ===== INFO BOX ===== */
.info-box {
  background: linear-gradient(135deg, #e0f2ff, #f0faff);
  padding: 1.2rem 1.5rem;
  border-left: 4px solid #0077ff;
  border-radius: 10px;
  margin: 2rem 0;
  font-weight: 600;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 2rem;
}

.process-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  font-weight: 600;
}

/* ===== FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid #d6dee6;
  font-size: 1rem;
  background: #fff;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  align-self: flex-start;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f1c2c;
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

/* ===== ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
/* ===== HARD CONTRAST FIX ===== */

body {
  background: #dfe6ee !important;
}

/* HERO brutál kontraszt */
.hero {
  background: linear-gradient(135deg, #dbe7ff, #f4f8ff) !important;
}

/* SZÖVEG – most fog életre kelni */
h1, h2, h3 {
  color: #0a1625 !important;
}

p, .hero-lead {
  color: #2c3e50 !important;
  opacity: 1 !important;
}

/* KÁRTYÁK – EZ A LÉNYEG */
.service-card,
.ref-card,
.package-card {
  background: #ffffff !important;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15) !important;
  border: none !important;
}

/* KÁRTYA HOVER – legyen WOW */
.service-card:hover,
.ref-card:hover,
.package-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2) !important;
}

/* GOMBOK – legyenek láthatók */
.btn-primary {
  background: linear-gradient(135deg, #005eff, #00cfff) !important;
  color: #fff !important;
}

.btn-outline {
  border: 2px solid #005eff !important;
  color: #005eff !important;
}

.btn-outline:hover {
  background: #005eff !important;
  color: #fff !important;
}

/* NAVBAR */
.site-header {
  background: #ffffff !important;
}

.brand-name {
  color: #0a1625 !important;
}

/* SZEKCIÓ ELVÁLASZTÁS */
.section:nth-child(even) {
  background: #eef3f9 !important;
}
/* ===== ULTRA CONTRAST FIX ===== */

/* háttér – ne legyen ködös */
body {
  background: #e6edf5 !important;
}

/* section háttér */
.section {
  background: transparent !important;
}

.section:nth-child(even) {
  background: #f0f4f9 !important;
}

/* HERO overlay KILL */
.hero {
  background: #eef3ff !important;
}

/* SZÖVEG – most lesz olvasható */
h1, h2, h3 {
  color: #0b1a2b !important;
}

p {
  color: #2f3e4f !important;
  opacity: 1 !important;
}

/* INFO BOX – most konkrétan láthatatlan nálad */
.info-box {
  background: #ffffff !important;
  border-left: 5px solid #0077ff !important;
  color: #0b1a2b !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* KÁRTYÁK – EZ VOLT A BAJ */
.service-card,
.package-card,
.ref-card {
  background: #ffffff !important; /* nem szürke */
  box-shadow: 0 25px 60px rgba(0,0,0,0.15) !important;
  border-radius: 18px;
}

/* HOVER – most már él */
.service-card:hover,
.package-card:hover,
.ref-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.2) !important;
}

/* árak – legyen ütős */
.package-card h3 {
  color: #0a1625 !important;
}

/* navbar */
.site-header {
  background: #ffffff !important;
}

/* gomb */
.btn-primary {
  background: linear-gradient(135deg, #005eff, #00cfff) !important;
}

.btn-outline {
  border: 2px solid #005eff !important;
  color: #005eff !important;
}

.btn-outline:hover {
  background: #005eff !important;
  color: #fff !important;
}/* ===== ULTRA CONTRAST FIX ===== */

/* háttér – ne legyen ködös */
body {
  background: #e6edf5 !important;
}

/* section háttér */
.section {
  background: transparent !important;
}

.section:nth-child(even) {
  background: #f0f4f9 !important;
}

/* HERO overlay KILL */
.hero {
  background: #eef3ff !important;
}

/* SZÖVEG – most lesz olvasható */
h1, h2, h3 {
  color: #0b1a2b !important;
}

p {
  color: #2f3e4f !important;
  opacity: 1 !important;
}

/* INFO BOX – most konkrétan láthatatlan nálad */
.info-box {
  background: #ffffff !important;
  border-left: 5px solid #0077ff !important;
  color: #0b1a2b !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* KÁRTYÁK – EZ VOLT A BAJ */
.service-card,
.package-card,
.ref-card {
  background: #ffffff !important; /* nem szürke */
  box-shadow: 0 25px 60px rgba(0,0,0,0.15) !important;
  border-radius: 18px;
}

/* HOVER – most már él */
.service-card:hover,
.package-card:hover,
.ref-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.2) !important;
}

/* árak – legyen ütős */
.package-card h3 {
  color: #0a1625 !important;
}

/* navbar */
.site-header {
  background: #ffffff !important;
}

/* gomb */
.btn-primary {
  background: linear-gradient(135deg, #005eff, #00cfff) !important;
}

.btn-outline {
  border: 2px solid #005eff !important;
  color: #005eff !important;
}

.btn-outline:hover {
  background: #005eff !important;
  color: #fff !important;
}
/* ===== ANIMATED BACKGROUND ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #0077ff33, transparent 70%);
  top: -150px;
  left: -150px;
  animation: float1 10s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00d4ff33, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation: float2 12s ease-in-out infinite;
}

@keyframes float1 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(40px, 60px); }
}

@keyframes float2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-40px, -60px); }
}