:root {
  --primary: #b36aa8;
  --accent: #ffe7fb;
  --dark: #32242c;
  --light: #fff7fc;
  --text: #3d2242;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--light);
  color: var(--text);
  min-height: 100vh;
}
img, .main-banner {
  max-width: 100%;
  height: auto;
  display: block;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  background: #fff;
  color: #222;
  padding: 18px 32px 8px 32px;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.header-center {
  width: 100%;
  left: 0;
  right: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
}
.header-center .contact-item {
  color: #d94f94;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-center .contact-item i,
.header-center .social-icons i {
  font-size: 1.2em;
  color: #d94f94;
  vertical-align: middle;
}
.header-center a {
  color: #c24a83;
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 400;
}
.header-center a:hover {
  color: #a3366c;
  text-decoration: underline;
}
.header-center .social-icons a {
  display: inline-block;
  margin: 0 3px;
  line-height: 1;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.header-center .social-icons i {
  vertical-align: middle;
}
.header-center .social-icons a:hover {
  opacity: 1;
}
.header-center img {
  vertical-align: middle;
}

.logo {
  height: 54px;
  max-width: 140px;
  width: auto;
  display: block;
  margin-right: 18px;
  margin-left: 0;
  object-fit: contain;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
}
.logo-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-left: 16px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-bottom: 8px;
  z-index: 9999;
  position: relative;
}
nav {
  flex: 0 0 auto;
  display: flex;
  max-width: 100%;
  box-sizing: border-box;
  justify-content: center;
  gap: 36px;
  margin-bottom: 12px;
}
nav a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
nav a.active, nav a:hover {
  background: var(--accent); /* vagy amit szeretnél */
  color: var(--primary);
}	
.main-banner {
  width: 100%;
  margin: 0 auto 24px auto;
  box-shadow: 0 4px 30px rgba(180,106,168,0.08);
}
.banner-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  left: 0;
  right: 0;
  display: block;
}
.banner-wrapper img.main-banner {
  margin: 0;
}

.banner-text {
  position: absolute;
  width: 60%;
  left: 20%;
  top: 37%;
  max-width: 700px;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-shadow: 0 2px 24px rgba(0,0,0,0.27);
  letter-spacing: 1.2px;
  z-index: 2;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.salon-title {
  display: block;
  font-family: 'Dancing Script', cursive;
  color: #a76cab;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.22), 0 1px 6px #b36aa8cc;
  margin-bottom: 8px;
}

.salon-subtitle {
  font-family: 'Quicksand', 'Segoe UI', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 26px;
  margin-left: 32px;
  color: #a76cab;
  padding: 8px 20px;
  border: none;
  text-shadow: 0 2px 10px #a76cab44;
  letter-spacing: 1px;
  box-shadow: none;
  pointer-events: auto;
}
main {
  flex: 1;
  min-height: 1px;
  display: flex;
  flex-direction: column;
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px;
}
h1, h2, h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
.btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover {
  background: var(--dark);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.price-table th {
  background: var(--accent);
  color: var(--primary);
}
.price-table tr:last-child td {
  border-bottom: none;
}
.contact-form {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input, .contact-form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #d1b7ce;
  font-size: 1rem;
}
.contact-form button {
  align-self: flex-end;
}
footer {
  background: #fff;
  color: #222;
  text-align: center;
  padding: 18px 0;
  margin-top: auto;
  border-radius: 0;
  font-size: 1rem;
}
footer a {
  color: #b36aa8;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.18s;
}
footer a:hover {
  color: #a3366c;
}
.steps-section {
  margin: 28px auto 28px auto;
  max-width: 1150px;
  padding: 16px 12px 18px 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.steps-title {
  font-family: 'Dancing Script', cursive;
  color: #b36aa8;
  font-size: 2.2rem;
  margin-bottom: 28px;
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(0,0,0,0.13);
}
.steps-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 10px 0;
}
.step-box {
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  box-shadow: 0 2px 10px #d89ad910;
  padding: 6px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.01rem;
  font-weight: 500;
  white-space: nowrap;
  min-width: unset;
  margin-bottom: 0;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdb0e1 0%, #d94f94 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.08rem;
  box-shadow: 0 1px 6px #d89ad950;
  margin-right: 9px;
  margin-bottom: 0;
  border: 2px solid #fff;
}
.step-text {
  font-size: 1.1rem;
  color: #b36aa8;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
.step-arrow {
  color: #e0b3e6;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 6px;
  user-select: none;
}
.step-btn {
  background: linear-gradient(90deg, #e398d2 0%, #b04ba7 100%);
  color: #fff;
  border: none;
  padding: 1.04rem 2.5rem;
  border-radius: 32px;
  font-size: 1.17rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 24px 0 rgba(180, 75, 167, 0.14);
  transition: background 0.36s, transform 0.18s, box-shadow 0.22s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  outline: none;
  margin-top: 2.2rem;
  display: inline-block;
}
.step-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -70%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.09) 100%);
  transform: skewX(-18deg);
  transition: left 0.48s cubic-bezier(.4,1.6,.4,1);
  pointer-events: none;
}
.step-btn:hover, .step-btn:focus {
  background: linear-gradient(90deg, #b04ba7 0%, #e398d2 100%);
  transform: translateY(-2px) scale(1.042);
  box-shadow: 0 14px 38px 0 rgba(180,75,167,0.18);
}
.step-btn:hover::before, .step-btn:focus::before {
  left: 120%;
}
.step-btn,
.step-btn:link,
.step-btn:visited,
.step-btn:active,
.step-btn:hover,
.step-btn:focus {
  text-decoration: none !important;
}
.steps-bg {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  left: auto;
  right: auto;
  background: linear-gradient(180deg, #fff2f7 0%, #ffe7fb 100%);
  padding: 2.5rem 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.bemutatkozo {
  max-width: 900px;         /* volt: 700px */
  min-width: 0;             /* hogy ne legyen túl szűk kis képernyőn sem */
  margin: 0 auto;
  padding: 1.5rem 2.4rem 1.5rem 2.4rem;  /* volt: 2.5rem 1.2rem 1.7rem 1.2rem */
  padding-top: 2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff2f7 60%, #ffe7fb 100%);
  border: 1.5px solid #fde6f1;
  box-shadow: 0 6px 26px 0 rgba(180,75,167,0.10);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bemutatkozo h2 {
  /* Ugyanaz, mint a .steps-title */
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #b04ba7;
  font-family: 'Dancing Script', cursive;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.13);
}
.bemutatkozo h3 {
  font-size: 1.12rem;
  color: #ab649a;
  margin-bottom: 1.2rem;
  font-weight: normal;
}
.bemutatkozo p {
  margin-bottom: 1.1rem;
  color: #534046;
  line-height: 1.7;
}
.bemutatkozo-bg {
  width: 100%;
  margin: 0;
  background: linear-gradient(180deg, #fff2f7 0%, #ffe7fb 100%);
  padding: 2rem 0 2.5rem 0;
}
.bemutatkozo-profile {
  margin: 2.3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 220px;
}

.bemutatkozo-profile-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 4px 28px rgba(180,75,167,0.10), 0 1px 0 #fff;
  object-fit: cover;
  border: 3.5px solid #fff2f7;
  background: #fff;
  margin-bottom: 0.85rem;
  transition: box-shadow 0.22s;
}

.bemutatkozo-profile-img:hover {
  box-shadow: 0 8px 36px 0 rgba(180,75,167,0.18), 0 1px 0 #fff;
}

.bemutatkozo-profile-name {
  text-align: center;
  font-size: 1.08rem;
  color: #b04ba7;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.2rem;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.bemutatkozo-profile-name span {
  display: block;
  font-size: 0.99rem;
  color: #ad7baa;
  font-weight: 400;
  margin-top: 1px;
}

.services-section {
  background: linear-gradient(180deg, #fff2f7 0%, #ffe7fb 100%);
  margin-top: 0;
  text-align: center;
  padding-top: 3.0rem;
  padding-bottom: 3.5rem;
}
.services-section h2 {
  color: #b04ba7;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-family: 'Dancing Script', cursive;
}
.service-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(135deg, #fff2f7 60%, #ffe7fb 100%);
  border: 1.5px solid #fde6f1;
  border-radius: 18px;
  box-shadow: 0 6px 26px 0 rgba(180,75,167,0.10);
  padding: 2.2rem 1.2rem 1.6rem 1.2rem;
  text-align: center;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  height: 100%;
  transition: box-shadow 0.22s, transform 0.18s;
  cursor: pointer;
}
.service-item:hover {
  box-shadow: 0 10px 32px 0 rgba(180,75,167,0.15);
  transform: translateY(-3px) scale(1.03);
}
.service-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  padding-top: 1.1rem;
}
.service-icon::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #ffe7fb 0%, #fff2f7 60%, #fff 100%);
  opacity: 0.58;
  z-index: 0;
  box-shadow: 0 0 18px 0 #ffe7fb77;
}
.service-icon img {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.5rem auto;
  box-shadow: 0 2px 12px rgba(179, 106, 168, 0.10);
}
.service-item h3 {
  margin-bottom: 0.55rem;
  font-size: 1.09rem;
  color: #b04ba7;
  font-weight: 600;
}
.service-item p {
  margin-top: 0;
  margin-bottom: 1.2rem;
  color: #534046;
  font-size: 0.93rem;
  line-height: 1.37;
}
.service-category-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: none;
}
.service-category-link:focus .service-item,
.service-category-link:hover .service-item {
  box-shadow: 0 8px 28px 0 rgba(179,106,168,0.13);
  transform: translateY(-2px) scale(1.025);
  transition: box-shadow 0.18s, transform 0.18s;
}
/* Felső dobozok elrendezése */
.services-list {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.2rem;
  margin-bottom: 2.2rem;
}


.service-item h3 {
  color: #b04ba7;
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-item p {
  color: #6f4976;
  font-size: 1.04rem;
  margin: 0;
  line-height: 1.6;
}

/* Szolgáltatások részletesen (háttér: teljes szélesség) */
.services-details-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2.5rem 0;
  background: none;
  margin-top: 38px;
}

.services-details-inner {
  max-width: 920px;
  margin: 0 auto 42px auto;
  padding: 0 1.2rem;
}

.services-details-title {
  font-size: 1.55rem;
  font-family: 'Dancing Script', cursive;
  color: #b36aa8;
  margin-bottom: 2.4rem;
  text-align: center;
  letter-spacing: 1px;
}

/* Részletes kategóriadobozok (pl. Gél lakk, Manikűr...) */
.service-detail-box {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  box-shadow: 0 4px 18px 0 rgba(179,106,168,0.07);
  margin-bottom: 2.6rem;
  padding: 2.6rem 0 2.2rem 0;
  background: linear-gradient(180deg, #fff2f7 0%, #ffe7fb 100%);
}

.service-detail-list, .service-detail-box h4 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.service-detail-box h4 {
  font-size: 1.18rem;
  color: #b04ba7;
  margin-bottom: 1.1rem;
  margin-top: 0;
  letter-spacing: 0.5px;
  padding-bottom: 0.8rem;
  font-family: 'Quicksand', Arial, sans-serif;
  text-align: center;
}

.service-detail-list {
  text-align: left;
}

.service-detail-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1.2rem;
  border-bottom: 1px solid #f2cae9;
  padding-bottom: 0.7rem;
}
.service-detail-row:last-child {
  border-bottom: none;
}

.service-detail-info {
  flex: 1 1 68%;
  max-width: 66%;
}
.service-detail-info strong {
  color: #b36aa8;
  font-size: 1.07rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}
.service-detail-desc {
  color: #5e2958;
  font-size: 1.01rem;
  line-height: 1.6;
  margin-left: 0.1rem;
}

.service-detail-price {
  flex: 0 0 110px;
  text-align: right;
  font-weight: 600;
  color: #b04ba7;
  font-size: 1.1rem;
  align-self: center;
  white-space: nowrap;
}

.gallery-section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.gallery-section h2 {
  color: #b04ba7;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Dancing Script', cursive;
}

.gallery-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

.gallery-grid img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(180,75,167,0.10);
  transition: box-shadow 0.18s, transform 0.13s;
  background: #f3e3ef;
}

.gallery-grid img:hover {
  box-shadow: 0 6px 32px 0 rgba(180,75,167,0.16);
  transform: scale(1.045);
}

.gallery-link {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.65rem 1.6rem;
  background: linear-gradient(90deg, #e398d2 0%, #b04ba7 100%);
  color: #fff;
  border-radius: 30px;
  font-size: 1.04rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.13s;
}
.gallery-link:hover, .gallery-link:focus {
  background: linear-gradient(90deg, #b04ba7 0%, #e398d2 100%);
  transform: translateY(-2px) scale(1.06);
}
.gallery-bg {
  width: 100%;
  background: linear-gradient(180deg, #fff2f7 0%, #ffe7fb 100%);
  padding: 3rem 0 2.3rem 0;
}
.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-caption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
}

#scrollTopBtn {
  display: none;         /* Egyelőre rejtve, JS nélkül is */
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: rgba(251, 227, 247, 0.92);
  color: #d94f94;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(217,79,148,0.10);
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s, color 0.15s;
  outline: none;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(.23,1.1,.32,1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Vendégvélemény slider szekció ====== */
.testimonial-section {
  background: linear-gradient(180deg, #fff2f7 0%, #ffe7fb 100%);
  padding: 3.5rem 0 3rem 0;
  text-align: center;
  margin-top: 0;
}

.testimonial-title {
  font-family: 'Dancing Script', cursive;
  color: #b36aa8;
  font-size: 2.3rem;
  margin-bottom: 2.1rem;
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(0,0,0,0.13);
  letter-spacing: 1px;
}

.testimonial-slider {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  overflow: hidden;
  max-width: 950px;
  margin: 0 auto 0 auto;
  position: relative;
  min-height: 220px;
  transition: min-height 0.3s;
}
.testimonial-box {
  min-width: 320px;
  max-width: 400px;
  margin: 0 auto;
  Margin-bottom: 20px;
  background: linear-gradient(135deg, #fff2f7 60%, #ffe7fb 100%);
  border-radius: 28px;
  padding: 2.2rem;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  z-index: 1;
  transition: opacity 0.7s, transform 0.7s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-box.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}
.testimonial-text {
  font-size: 1.1rem;
  color: #7d388b;
  margin-bottom: 1.2rem;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-author {
  color: #a76cab;
  font-weight: bold;
  font-size: 1rem;
  font-family: 'Quicksand', Arial, sans-serif;
  margin-top: 0.7rem;
  letter-spacing: 0.03em;
  opacity: 0.83;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2rem;
}
.testimonial-nav button {
  background: #ffe7fb;
  color: #b36aa8;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.16s;
  box-shadow: 0 2px 10px #d89ad92a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-nav button:hover,
.testimonial-nav button:focus {
  background: #b36aa8;
  color: #fff;
  outline: none;
  transform: scale(1.09);
}
.contact-section {
  max-width: 100%;
  margin: 0 auto 50px auto;
  padding: 0 16px;
}
.contact-title {
  text-align: center;
  font-family: 'Dancing Script', cursive;
  color: #b36aa8;
  margin-bottom: 2.2rem;
  font-size: 2rem;
  letter-spacing: 1px;
}

.contact-top-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2.2rem;
  margin: 0 auto 2.3rem auto;
  width: 100%;
  max-width: 1200px;
}

.contact-form-box, .contact-info-block {
  flex: 1 1 0;
  width: 100%;
  min-width: 650px;
  max-width: 850px;
  background: linear-gradient(135deg, #fff2f7 70%, #ffe7fb 100%);
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(179,106,168,0.10);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-block {
  align-items: center;
  box-shadow: 0 4px 18px 0 rgba(179,106,168,0.08);
  padding: 1.55rem 1.4rem 1.3rem 1.4rem;
}

.contact-info-title {
  text-align: center;
  font-size: 1.13rem;
  color: #b04ba7;
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 600;
}

/* Középen kétoszlopos lista – balra igazított szövegek */
.contact-info-list-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  margin: 0;
  padding: 0;
  align-items: flex-start;
}
.contact-info-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.8em; /* hely a label és value között */
  font-size: 1.06rem;
  list-style: none;
  width: 100%;
  text-align: left;
}
.contact-info-list .value a {
  text-decoration: none;
}
.label {
  font-weight: 600;
  color: #82456b;
  min-width: 100px;
  text-align: left;
  display: block;
}
.value {
  text-align: left;
  display: block;
  color: #b36aa8;
  font-weight: 400;
}
.value a {
  color: #b36aa8;
  text-decoration: underline;
  transition: color 0.18s;
}
.value a:hover {
  color: #b04ba7;
}

/* Űrlap */
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-bottom: 1.05rem;
  border: 1.5px solid #f5c8ec;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: #fff8fc;
  font-family: inherit;
  color: #a261b0;
  transition: border 0.18s;
}
.contact-form textarea {
  min-height: 75px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ba5ad6;
  outline: none;
}
.contact-form button {
  width: 100%;
  padding: 0.82rem 0;
  background: #d788c6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s;
  margin-top: 2px;
}
.contact-form button:hover {
  background: #b36aa8;
}

.contact-map-row {
  margin-top: 2.5rem;
  width: 100%;
}
.contact-map-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff8fb;
  box-shadow: 0 6px 24px 0 rgba(179,106,168,0.10);
}
.contact-map-box iframe {
  width: 100%;
  max-width: 100%;
  min-height: 260px;
  border-radius: 13px;
  box-shadow: 0 4px 18px 0 rgba(179,106,168,0.08);
  border: none;
  display: block;
}
.contact-success {
  background: #c7f7cb;
  color: #26742a;
  font-weight: bold;
  padding: 1em;
  border-radius: 10px;
  margin-bottom: 1.2em;
  text-align: center;
}
.contact-error {
  background: #ffe7e7;
  color: #a12626;
  font-weight: bold;
  padding: 1em;
  border-radius: 10px;
  margin-bottom: 1.2em;
  text-align: center;
}