/* =========================
   ALAP BEÁLLÍTÁSOK
========================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #1e293b;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* =========================
   PANELCSERE PROGRAM
========================= */
.panel-exchange {
  padding: 4rem 5%;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.panel-exchange-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.exchange-badge {
  display: inline-block;
  background: #ff8800;
  color: #fff;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.panel-exchange h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.exchange-lead {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #334155;
}

.exchange-steps {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.exchange-step {
  background: #ede9fe;
  border-radius: 16px;
  padding: 1.5rem;
  width: 240px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.exchange-step span {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: #4a6cf7;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.exchange-step p {
  font-size: 0.95rem;
  color: #1e293b;
}

.exchange-note {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 2rem;
}


/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.navbar nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
}

/* Navbar gombok */
.auth-buttons {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.btn-login {
  background: #4a6cf7;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-login:hover {
  background: #3a57c4;
}

.btn-register {
  background: #ff8800;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-register:hover {
  background: #e66f00;
}

/* =========================
   HERO
========================= */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1d4ed8;
  color: #fff;
  padding: 3rem 5%;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 1.5rem;
}

.hero .btn {
  background: #3b82f6;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: bold;
}

.hero-img img {
  width: 300px;
}

/* =========================
   ABOUT
========================= */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 5%;
  background: #f8fafc;
}

.about-text {
  max-width: 50%;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text .btn {
  background: #1d4ed8;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: bold;
}

.about-img img {
  width: 250px;
}

/* =========================
   SZOLGÁLTATÁSOK KÁRTYÁK
========================= */
.services {
  text-align: center;
  padding: 3rem 5%;
}

.services h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.services p {
  margin-bottom: 2rem;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.card {
  width: 250px;
  padding: 2rem;
  border-radius: 1rem;
  background: #ede9fe;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  text-align: center;
}

.card:hover {
  transform: scale(1.03);
  background: #ddd6fe;
}

.card img {
  width: 40px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

/* =========================
   PRICING
========================= */
.pricing {
  margin: 40px 0;
  text-align: center;
}

.pricing h2 {
  margin-bottom: 20px;
}

.pricing-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  width: 280px;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.pricing-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


.pricing-card h3 {
  margin-bottom: 10px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.pricing-card ul li {
  margin: 6px 0;
}

.pricing-card .price {
  font-size: 22px;
  font-weight: bold;
  margin: 15px 0;
}

.pricing-card button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background: #fff;
  color: #333;
  cursor: pointer;
  font-weight: bold;
}


/* Árlista színek + hover világosítás */
.pricing-card.basic:hover { background: #6c757d; }
.pricing-card.basic { background: #868e96; }

.pricing-card.standard:hover { background: #007bff; }
.pricing-card.standard { background: #3399ff; }

.pricing-card.pro:hover { background: #ff8800; }
.pricing-card.pro { background: #ff9f33; }
/* =========================
   FORMOK
========================= */
.form-section {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.form-card {
  max-width: 420px;
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.form-card h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}

.form-group input,
.form-group select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #4a6cf7;
  outline: none;
  box-shadow: 0 0 6px rgba(74,108,247,0.3);
}

/* Form gombok */
.btn-login-form {
  background: #4a6cf7;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.btn-login-form:hover {
  background: #3a57c4;
}

.btn-register-form {
  background: #ff8800;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-register-form:hover {
  background: #e66f00;
}

/* =========================
   MODAL
========================= */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease;
}

.modal-content h2 {
  margin-bottom: 15px;
  text-align: center;
}

.modal .close {
  float: right;
  cursor: pointer;
  font-size: 20px;
  margin-top: -10px;
  color: #666;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* =========================
   TÁBLÁZAT
========================= */
.table-card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.table-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.table-actions select,
.table-actions input {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.search-input {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 14px;
  width: 220px;
  transition: 0.3s;
}

.search-input:focus {
  border-color: #4a6cf7;
  outline: none;
  box-shadow: 0 0 6px rgba(74,108,247,0.3);
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.styled-table thead tr {
  background-color: #4a6cf7;
  color: #fff;
  text-align: left;
}

.styled-table th,
.styled-table td {
  padding: 14px 18px;
  font-size: 14px;
}

.styled-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.styled-table tbody tr:nth-child(odd) {
  background: #fff;
}

.styled-table tbody tr:hover {
  background: #eef2ff;
}

.btn-table {
  background: #4a6cf7;
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-table:hover {
  background: #3a57c4;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.pagination ul {
  list-style: none;
  display: flex;
  gap: 6px;
  padding: 0;
}

.pagination ul li a {
  display: block;
  padding: 6px 12px;
  border-radius: 6px;
  background: #eee;
  text-decoration: none;
  color: #333;
}

.pagination ul li a.active {
  background: #ff8800;
  color: #fff;
}

.rows-per-page {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.sort-icon {
  font-size: 12px;
  cursor: pointer;
  margin-left: 4px;
}

/* =========================
   COOKIE POPUP
========================= */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px; right: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  max-width: 500px;
  margin: auto;
  font-size: 14px;
  z-index: 1000;
}

.cookie-popup p {
  margin: 0;
  color: #333;
  flex: 1;
}

.cookie-popup a {
  color: #4a6cf7;
  text-decoration: underline;
}

.btn-cookie {
  background: #4a6cf7;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  margin-left: 15px;
  transition: 0.3s;
}

.btn-cookie:hover {
  background: #3a57c4;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #4a6cf7;
  color: #fff;
  padding: 30px;
  margin-top: 40px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.footer-links a {
  display: block;
  margin: 6px 0;
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.newsletter {
  margin: 20px 0;
}

.newsletter input {
  padding: 8px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.newsletter button {
  padding: 8px 14px;
  margin-left: 8px;
  border: none;
  border-radius: 6px;
  background: #ff8800;
  color: #fff;
  cursor: pointer;
}

.footer-right {
  text-align: left;
}

.footer-right p {
  margin: 6px 0;
}

.footer-bottom {
  margin-top: 25px;
  font-size: 14px;
  text-align: center;
  color: #fff;
}
/* =========================
   MODERN HERO DESIGN
========================= */
.hero-modern {
  min-height: 420px;
  background: linear-gradient(135deg, #0f2a44 0%, #1d4ed8 45%, #e5efff 100%);
  color: #fff;
  padding: 4rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-modern h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 1.5rem 0 2rem;
}

.hero-btn {
  background: #2563eb;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.hero-img img {
  width: 420px;
  max-width: 100%;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.35));
  transform: rotate(-4deg);
}
