/*
Theme Name: Szorad
Theme URI: https://example.com/szorad
Author: OpenAI
Author URI: https://openai.com/
Description: A clean, lightweight WordPress theme named Szorad.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: szorad
Tags: blog, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
  --szorad-bg: #EEF1FF;
  --szorad-surface: #ffffff;
  --szorad-text: #222222;
  --szorad-muted: #5c628f;
  --szorad-border: rgba(75, 84, 162, 0.12);
  --szorad-primary: #4B54A2;
  --szorad-purple: #9A70C1;
  --szorad-teal: #069393;
  --szorad-pink: #ED3E6A;
  --szorad-peach: #EAAC8B;
  --szorad-max-width: 1200px;
  --szorad-radius: 10px;
  --szorad-shadow: 0 18px 48px rgba(75, 84, 162, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(154, 112, 193, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(6, 147, 147, 0.18), transparent 24%),
    linear-gradient(180deg, #f8f9ff 0%, var(--szorad-bg) 26%, #f6f0fb 100%);
  color: var(--szorad-text);
  line-height: 1.65;
}

/* Typography */

h1, h2, h3, h4, h5, h6,
.site-title,
.primary-menu a {
  font-family: 'Gelasio', serif;
}

a {
  color: var(--szorad-teal);
  text-decoration: none;
}

a:hover {
  color: var(--szorad-pink);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */

.container {
  width: 100%;
  max-width: var(--szorad-max-width);
  margin-inline: auto;
  padding-inline: 20px;
}

/* Layout */

.site-header,
.site-content,
.site-footer,
.site-footer-wrap {
  width: 100%;
}

/* Inner max-width containers */
.site-header-inner,
.site-content,
.container {
  width: min(100% - 2rem, var(--szorad-max-width));
  margin-inline: auto;
}

/* Header */

.site-header-wrap {
  width: 100%;
  background: var(--szorad-primary);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 14px 36px rgba(75, 84, 162, 0.20);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 92px;
}

.nav-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 700;
}

.site-title a {
  color: #ffffff;
}
.site-logo img {
  max-height: 100px;
  width: auto;
}
/* =========================
   NAVIGATION
========================= */

.site-nav {
  margin-left: auto;
}

/* RESET */

.primary-menu,
.primary-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* MAIN MENU */

.primary-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-menu > li {
  position: relative;
}

/* HOVER BRIDGE (fix dropdown disappearing) */

.primary-menu > li.menu-item-has-children::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 12px;
}

/* LINKS */

.primary-menu a {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  position: relative;
  text-decoration: none;
}

/* UNDERLINE (ONLY TOP LEVEL) */

.primary-menu > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 2px;
  background: var(--szorad-peach);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current_page_item > a::after,
.primary-menu > li.current-menu-ancestor > a::after,
.primary-menu > li.current_page_ancestor > a::after {
  transform: scaleX(1);
}

/* =========================
   SUBMENU
========================= */

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 0;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);

  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}

/* SHOW DROPDOWN */

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* SUBMENU ITEMS */

.primary-menu .sub-menu li {
  width: 100%;
}

.primary-menu .sub-menu a {
  display: block;
  padding: 12px 18px;
  min-height: auto;
  color: var(--szorad-primary);
  font-family: 'Roboto', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
}

/* REMOVE UNDERLINE FROM SUBMENU */

.primary-menu .sub-menu a::after {
  display: none;
}

/* SUBMENU HOVER */

.primary-menu .sub-menu a:hover {
  background: rgba(75, 84, 162, 0.06);
  color: var(--szorad-pink);
}

/* =========================
   PARENT ARROW
========================= */

.primary-menu .menu-item-has-children > a {
  padding-right: 18px;
}

.primary-menu .menu-item-has-children > a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
}

/* =========================
   HAMBURGER BUTTON
========================= */

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
  z-index: 120;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =========================
   MOBILE NAV
========================= */

@media (max-width: 900px) {

  .site-header-inner {
    position: relative;
    min-height: 82px;
    gap: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    margin-left: 0;
    background: var(--szorad-primary);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.18);
    padding: 0.75rem 1rem;
    display: none;
    z-index: 110;
  }

  .site-nav.is-open {
    display: block;
  }

  .primary-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
  }

  .primary-menu > li {
    width: 100%;
  }

  .primary-menu > li > a {
    width: 100%;
  }

  /* SUBMENU (stacked) */

  .primary-menu .sub-menu {
    position: static;
    min-width: 100%;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    border-radius: 12px;
    padding: 8px 0 8px 12px;
    margin-top: 6px;

    opacity: 1;
    visibility: visible;
    transform: none;

    display: none;
  }

  .primary-menu li:hover > .sub-menu,
  .primary-menu li:focus-within > .sub-menu {
    display: block;
  }

  .primary-menu .sub-menu a {
    color: #ffffff;
    padding: 10px 12px;
  }

  .primary-menu .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--szorad-peach);
  }
}

/* =========================
   DESKTOP FORCE
========================= */

@media (min-width: 901px) {

  .site-nav {
    display: block !important;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .menu-toggle {
    display: none !important;
  }
}
/* .site-nav {
  margin-left: auto;
}

.primary-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.primary-menu li {
  margin: 0;
}

.primary-menu a {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  position: relative;
}

.primary-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 2px;
  background: var(--szorad-peach);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
  transform: scaleX(1);
} */



/* Content */

.site-content {
  padding: 2.5rem 0;
}

.page-card {
  background: rgba(255,255,255,0.92);
  border-radius: var(--szorad-radius);
  padding: 2rem;
  box-shadow: var(--szorad-shadow);
}

/* Buttons */

.button,
button,
input[type="submit"] {
  background: var(--szorad-primary);
  color: #fff;
  border: none;
  border-radius: var(--szorad-radius);
  padding: 0.8rem 1.2rem;
  cursor: pointer;
}

.button:hover {
  background: var(--szorad-pink);
}

/* Footer */

.site-footer-wrap {
  border-top: 1px solid var(--szorad-border);
}

.site-footer {
  padding: 1.5rem 0;
  text-align: center;
}

/* HERO */

.tp-hero {
  padding: 48px 0;
}

.tp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch; /* important */
}
.tp-hero__content,
.tp-hero__media {
  height: 100%;
}

.tp-hero__content {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--szorad-radius);
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
}

.tp-hero__title {
  color: var(--szorad-teal);
  margin: 0 0 16px;
  font-size: 3rem;
  line-height: 3.5rem;
}

.tp-hero__text p {
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--szorad-primary);
}

.tp-hero__button {
  display: inline-block;
  width: auto;
  align-self: flex-start;
  background: var(--szorad-primary);
  border: 2px solid var(--szorad-primary);
  color: #fff;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--szorad-radius);
  transition: background 0.3s ease;
}
.tp-hero__button:hover {
  background: var(--szorad-pink);
  border: 2px solid var(--szorad-pink);
  color: #fff;
}

.tp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* key for equal height look */
  border-radius: var(--szorad-radius);
}
/* Responsive */

@media (max-width: 991px) {
  .tp-hero__grid {
    grid-template-columns: 1fr;
  }

  .tp-hero__title {
    font-size: 36px;
  }
}
/* SERVICES USP */

.tp-services-usp {
  width: 100%;
  background: var(--szorad-primary);
  padding: 64px 0;
}

.tp-services-usp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tp-services-usp__title {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #ffffff;
}

.tp-services-usp__text p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #ffffff;
}

@media (max-width: 768px) {
  .tp-services-usp__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tp-services-usp__title {
    font-size: 2rem;
  }
}

/* Services cpt */
.tp-services-section {
  width: 100vw;
  /* background: #ffffff; */
   background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  margin-left: calc(50% - 50vw);
  padding: 72px 0;
}

.tp-services-section__title {
  margin: 0 0 32px;
  text-align: center;
  color: var(--szorad-primary);
  font-size: 2.25rem;
  line-height: 1.15;
}

.tp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.tp-service-card {
  min-height: 100%;
  border-radius: var(--szorad-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 30px rgba(75, 84, 162, 0.10);
    transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.tp-service-card:hover {
  transform: translateY(-2px) scale(1.0002);
  box-shadow: 0 24px 50px rgba(75, 84, 162, 0.18);
}
.tp-service-card__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.2;
}

.tp-service-card__text {
  margin-bottom: 22px;
}

.tp-service-card__text p {
  margin: 0;
  color: #ffffff;
  line-height: 1.65;
}

.tp-service-cards__link {
  display: inline-block;
  width: 100%;
  text-align: center;
  /* align-self: flex-start; */
  align-self: center;
  margin-top: auto;
  padding: 12px 20px;
  border-radius: var(--szorad-radius);
  background: var(--szorad-primary);
  color: #ffffff;
  font-weight: 700;
  /* text-transform: uppercase; */
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}
/* .tp-service-card__button {
  display: inline-block;
  width: 100%;
  text-align: center;
 
  align-self: center;
  margin-top: auto;
  padding: 12px 20px;
  border-radius: var(--szorad-radius);
  background: var(--szorad-primary);
  color: #ffffff;
  font-weight: 700;

  letter-spacing: 0.04em;
  transition: all 0.25s ease;
} */

.tp-service-cards__link:hover {
  /* background: var(--szorad-pink); */
  /* color: #ffffff; */
   border: 2px solid #ffffff; 
   color: #ffffff;
   transform: translateY(-2px);
}
/* .tp-service-card__button:hover {

   border: 2px solid #ffffff; 
   color: #ffffff;
   transform: translateY(-2px);
} */

.tp-service-card--purple {
  background: var(--szorad-purple);
}

.tp-service-card--teal {
  background: var(--szorad-teal);
}

.tp-service-card--pink {
  background: var(--szorad-pink);
}

.tp-service-card--peach {
  background: var(--szorad-peach);
}

/* .tp-service-card--peach .tp-service-card__title,
.tp-service-card--peach .tp-service-card__text p {
  color: #3b2b24;
}

.tp-service-card--peach .tp-service-card__button {
  background: var(--szorad-primary);
  color: #ffffff;
}

.tp-service-card--peach .tp-service-card__button:hover {
  background: var(--szorad-pink);
  color: #ffffff;
} */

@media (max-width: 1100px) {
  .tp-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tp-services-grid {
    grid-template-columns: 1fr;
  }
}
/* USP SECTION */

/* USP SECTION */

.tp-main-usp1 {
  padding: 64px 0;
}

.tp-main-usp1__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left column (title) */
.tp-main-usp1__title {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--szorad-teal);
}

/* Right column (text) */
.tp-main-usp1__text p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--szorad-muted);
}

/* Responsive */

@media (max-width: 768px) {
  .tp-main-usp1__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tp-main-usp1__title {
    font-size: 2rem;
  }
}
/* FULL PAGE IMAGE */

.tp-full-image {
  padding: 64px 0;
}

.tp-full-image__wrapper {
  width: 100%;
  max-width: 1400px;
  height: 850px;
  margin: 0 auto;

  overflow: hidden;
  border-radius: var(--szorad-radius);
}

.tp-full-image__wrapper img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;
}

/* Responsive */

@media (max-width: 1024px) {
  .tp-full-image__wrapper {
    height: 600px;
  }
}

@media (max-width: 640px) {
  .tp-full-image__wrapper {
    height: 420px;
  }
}

/* ABOUT CONTENT */

.tp-about-content {
  padding: 64px 0;
}

.tp-about-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.tp-about-content__box {
  padding: 36px;
  border-radius: var(--szorad-radius);
}

.tp-about-content__box--left {
  background: transparent;
}

.tp-about-content__box--right {
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(75, 84, 162, 0.10);
}

.tp-about-content__title {
  margin: 0 0 16px;
  color: var(--szorad-teal);
  font-size: 2rem;
  line-height: 1.2;
}

.tp-about-content__text p {
  margin: 0;
  line-height: 1.7;
  color: var(--szorad-primary);
}

.tp-about-content__link {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 20px;
  border-radius: var(--szorad-radius);
  background: var(--szorad-primary);
  color: #ffffff;
  font-weight: 700;
  /* text-transform: uppercase; */
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.tp-about-content__link:hover {
  /* background: var(--szorad-primary);
  color: #ffffff;
  border-color: #ffffff; */
    background: var(--szorad-pink);
  border: 2px solid var(--szorad-pink);
  color: #fff;
}

@media (max-width: 768px) {
  .tp-about-content__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tp-about-content__title {
    font-size: 1.75rem;
  }

  .tp-about-content__box {
    padding: 24px;
  }
}
/* FOOTER */

/* =========================
   FOOTER
========================= */

.site-footer-wrap {
  width: 100%;
  background: var(--szorad-primary);
  margin-top: 80px;
}

.site-footer {
  width: 100%;
  padding: 56px 0 32px;
}

.site-footer .container {
  width: min(100% - 2rem, 1400px);
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  color:#ffffff;

  padding: 24px;
}

.footer-title {
  margin: 0 0 16px;
  font-size: 1.2rem;
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--szorad-primary);
  color: #fff;
  transition: all 0.25s ease;
}

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

.social-icon:hover {
  background: var(--szorad-pink);
  transform: translateY(-3px);
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-col--contact p {
  color: #ffffff;
}

.footer-links a:hover {
  color: var(--szorad-pink);
}

.footer-col--contact p {
  margin: 0 0 8px;
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  color: #ffffff;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: left;
  }
}
/* Bottom row spans full width */
/* .footer-sitemap-bottom {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.08);
} */

/* Links */

/* .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--szorad-pink);
} */

/* Contact text */
/* 
.footer-sitemap-contact p {
  margin: 0 0 8px;
  color: #fff;
} */

/* Copyright */

/* .footer-sitemap-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--szorad-pink);
} */
/* CONTACT PAGE */

.tp-contact-details {
  padding: 56px 0 24px;
}

.tp-contact-details__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tp-contact-details__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  width: 100%;
  min-width: 0;

  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(75, 84, 162, 0.10);

  text-decoration: none;
  color: inherit;
  cursor: pointer;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tp-contact-details__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(75, 84, 162, 0.15);
}

.tp-contact-details__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--szorad-primary);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.25s ease, color 0.25s ease;
}

.tp-contact-details__item:hover .tp-contact-details__icon {
  background: var(--szorad-pink);
  color: #ffffff;
}

.tp-contact-details__icon svg {
  width: 24px;
  height: 24px;
}

.tp-contact-details__content {
  min-width: 0;
}

.tp-contact-details__title {
  margin: 0 0 8px;
  color: var(--szorad-teal);
  font-size: 1.2rem;
  line-height: 1.2;
}

.tp-contact-details__content p {
  margin: 0;
  color: var(--szorad-text);
  word-break: break-word;
}

@media (max-width: 900px) {
  .tp-contact-details__grid {
    grid-template-columns: 1fr;
  }
}
/* CONTACT FORM */

.tp-contact-form {
  padding: 72px 0 72px;
}

.tp-contact-form__box {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 14px 30px rgba(75, 84, 162, 0.10);
}

.tp-contact-form .ff-default .ff-el-group {
  margin-bottom: 20px;
}

.tp-contact-form input[type="text"],
.tp-contact-form input[type="email"],
.tp-contact-form input[type="tel"],
.tp-contact-form textarea,
.tp-contact-form select {
  width: 100%;
  border: 1px solid var(--szorad-border);
  border-radius: var(--szorad-radius);
  padding: 14px 16px;
  background: #ffffff;
  color: var(--szorad-text);
  font-family: 'Roboto', sans-serif;
}

.tp-contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.tp-contact-form .ff-btn-submit,
.tp-contact-form button[type="submit"] {
  display: inline-block;
  background: var(--szorad-primary);
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: var(--szorad-radius);
  padding: 14px 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tp-contact-form .ff-btn-submit:hover,
.tp-contact-form button[type="submit"]:hover {
  background: var(--szorad-primary);
  color: #ffffff;
  border-color: #ffffff;
}

.tp-contact-form .ff-el-form-check-label,
.tp-contact-form .ff-el-input--label label {
  color: var(--szorad-text);
}

.tp-contact-form .ff-message-success {
  background: #ffffff;
  border-left: 4px solid var(--szorad-teal);
  color: var(--szorad-text);
  border-radius: var(--szorad-radius);
  padding: 16px;
}
/* ABOUT ICONS */

.tp-about-icons {
  padding: 48px 0 64px;
}

.tp-about-icons__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tp-about-icons__card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 120px;
  padding: 24px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(75, 84, 162, 0.10);
}

.tp-about-icons__icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-about-icons__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tp-about-icons__title {
  margin: 0;
  color: var(--szorad-teal);
  font-size: 1.2rem;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .tp-about-icons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tp-about-icons__grid {
    grid-template-columns: 1fr;
  }

  .tp-about-icons__card {
    padding: 20px;
  }
}
/* SERVICE CARDS */

.tp-service-cards {
  padding: 64px 0;
}

/* Stack cards vertically */
.tp-service-cards__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* CARD */

.tp-service-cards__card {
  background: #ffffff;
  border-radius: var(--szorad-radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(75, 84, 162, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tp-service-cards__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(75, 84, 162, 0.15);
}
/* TOP SECTION (titles + content grid) */

.tp-service-cards__top {
  padding: 32px;
}

/* TITLES */

.tp-service-cards__title-1 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--szorad-teal);
  line-height: 1.2;
}

.tp-service-cards__title-2 {
  margin: 4px 0 24px;
  font-size: 1.3rem;
  color: var(--szorad-purple);
  line-height: 1.2;
}

/* CONTENT GRID */

.tp-service-cards__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Make titles span full width */
.tp-service-cards__title-1,
.tp-service-cards__title-2 {
  grid-column: 1 / -1;
}

/* LEFT: LIST */

.tp-service-cards__list {
  margin: 0;
  padding-left: 18px;
}

.tp-service-cards__list li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--szorad-text);
}
.tp-service-cards__list li::marker {
  color: var(--szorad-primary);
}
/* RIGHT: CONTENT BOX */

.tp-service-cards__bottom {
  background: rgba(75, 84, 162, 0.08);
  padding: 24px;
  border-radius: var(--szorad-radius);
}


/* RIGHT CONTENT */

.tp-service-cards__content-title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: var(--szorad-primary);
}

.tp-service-cards__content-text p {
  margin: 0;
  line-height: 1.6;
  color: var(--szorad-text);
}

/* TITLES AS HIGHLIGHT */

.tp-service-cards__title-1,
.tp-service-cards__title-2 {
  margin: 0;
}

/* Shared span style */
.tp-service-cards__title-1 span,
.tp-service-cards__title-2 span {
  display: inline-block;
  padding: 10px 18px;
  /* border-radius: 999px; */
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.4rem; 
}

/* CARD COLORS */

.tp-service-cards__card--teal .tp-service-cards__title-1 span,
.tp-service-cards__card--teal .tp-service-cards__title-2 span {
  background: var(--szorad-teal);
  color: #ffffff;
}

.tp-service-cards__card--purple .tp-service-cards__title-1 span,
.tp-service-cards__card--purple .tp-service-cards__title-2 span {
  background: var(--szorad-purple);
  color: #ffffff;
}

.tp-service-cards__card--pink .tp-service-cards__title-1 span,
.tp-service-cards__card--pink .tp-service-cards__title-2 span {
  background: var(--szorad-pink);
  color: #ffffff;
}

.tp-service-cards__card--peach .tp-service-cards__title-1 span,
.tp-service-cards__card--peach .tp-service-cards__title-2 span {
  background: var(--szorad-peach);
  color: #3b2b24;
}
/* Title 1 style */
/* .tp-service-cards__title-1 span {
  background: var(--szorad-teal);
  color: #ffffff;
  font-size: 1rem;
} */

/* Title 2 style */
/* .tp-service-cards__title-2 {
  margin: 10px 0 24px;
} */

/* .tp-service-cards__title-2 span {
  background: var(--szorad-purple);
  color: #ffffff;
  font-size: 0.95rem;
} */
 /* SERVICE CARD ARROW LINK */

.tp-service-cards__arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--szorad-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.tp-service-cards__arrow {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.tp-service-cards__arrow-link:hover {
  color: var(--szorad-pink);
}

.tp-service-cards__arrow-link:hover .tp-service-cards__arrow {
  transform: translateX(8px);
}
/* RESPONSIVE */

@media (max-width: 900px) {
  .tp-service-cards__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tp-service-cards__bottom {
    padding: 20px;
  }
}

/* SERVICE LANDING CONTENT */

.service-landing-section {
  padding: 56px 0 80px;
}

.service-landing-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-landing-content h2,
.service-landing-content h3,
.service-landing-content h4,
.service-landing-content h5,
.service-landing-content h6 {
  color: var(--szorad-teal);
  font-family: 'Gelasio', serif;
  line-height: 1.2;
}

.service-landing-content p,
.service-landing-content li {
  color: var(--szorad-primary);
  line-height: 1.75;
}

.service-landing-content p {
  margin-bottom: 16px;
}

.service-landing-content ul,
.service-landing-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.service-landing-content strong {
  color: var(--szorad-teal);
}

.service-landing-content .wp-block-button__link {
  background: var(--szorad-primary);
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-landing-content .wp-block-button__link:hover {
  background: var(--szorad-primary);
  color: #ffffff;
  border-color: #ffffff;
}
/* SERVICE LANDING PAGE HERO */

.tp-landing-page-hero {
  padding: 48px 0;
  /* border: 2px solid red; */
}

.tp-landing-page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.tp-landing-page-hero__content,
.tp-landing-page-hero__media {
  height: 100%;
}

.tp-landing-page-hero__content {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.tp-landing-page-hero__title {
  color: var(--szorad-teal);
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.1;
  font-family: 'Gelasio', serif;
}

.tp-landing-page-hero__text p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--szorad-primary);
}

.tp-landing-page-hero__button {
  display: inline-block;
  width: auto;
  align-self: flex-start;
  background: var(--szorad-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.tp-landing-page-hero__button:hover {
  background: var(--szorad-primary);
  color: #ffffff;
  border-color: #ffffff;
}

.tp-landing-page-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .tp-landing-page-hero__grid {
    grid-template-columns: 1fr;
  }

  .tp-landing-page-hero__title {
    font-size: 36px;
  }
}
/* TESTIMONIALS */

.tp-testimonials {
  padding: 72px 0;
}

.tp-testimonials__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.tp-testimonials__title {
  margin: 0;
  color: var(--szorad-teal);
  font-size: 2.2rem;
  line-height: 1.15;
}

.tp-testimonials__controls {
  display: flex;
  gap: 10px;
}

.tp-testimonials__arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--szorad-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tp-testimonials__arrow:hover {
  background: var(--szorad-pink);
}

.tp-testimonials__viewport {
  overflow: hidden;
}

.tp-testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.tp-testimonials__card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(75, 84, 162, 0.10);
  min-height: 100%;
}

.tp-testimonials__quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--szorad-purple);
  margin-bottom: 10px;
}

.tp-testimonials__review p {
  margin: 0 0 20px;
  color: var(--szorad-primary);
  line-height: 1.75;
}

.tp-testimonials__meta {
  margin-top: auto;
}

.tp-testimonials__name {
  font-weight: 700;
  color: var(--szorad-teal);
}

.tp-testimonials__company {
  margin-top: 4px;
  color: var(--szorad-muted);
}

@media (max-width: 1100px) {
  .tp-testimonials__card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .tp-testimonials__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tp-testimonials__card {
    flex: 0 0 100%;
  }
}
/* EGYÉNI TERÁPIA PAGE */

.therapy-page-section {
  padding: 56px 0 80px;
}

.therapy-page-content {
  max-width: 900px;
  margin: 0 auto;
}

.therapy-page-content h1,
.therapy-page-content h2,
.therapy-page-content h3,
.therapy-page-content h4,
.therapy-page-content h5,
.therapy-page-content h6 {
  color: var(--szorad-teal);
  font-family: 'Gelasio', serif;
  line-height: 1.2;
}
.therapy-page-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.therapy-page-content p,
.therapy-page-content li {
  color: var(--szorad-primary);
  line-height: 1.75;
}

.therapy-page-content p {
  margin-bottom: 16px;
}

.therapy-page-content ul,
.therapy-page-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
/* BOOKING   */
.therapy-page-booking {
  padding: 64px 0;
  margin: 0 auto;
  border: 2px solid red;
}
/* BOOKING SECTION */

.therapy-booking {
  text-align: center; 
  margin-top: 48px;
}

/* Center iframe properly */

.therapy-booking iframe {
  display: block;
  margin: 0 auto;  
  max-width: 100%;
  border-radius: 16px;
}

/* Fix heading spacing */

.therapy-booking h2 {
  margin-bottom: 24px;
    color: var(--szorad-teal);
  font-family: 'Gelasio', serif;
  line-height: 1.2;
}

/* =========================
   CTA SECTION
========================= */

.tp-cta {
  padding: 72px 0;
}

.tp-cta__box {
  background: linear-gradient(
    135deg,
    rgba(154, 112, 193, 0.12),
    rgba(6, 147, 147, 0.12)
  );
  border: 1px solid var(--szorad-border);
  border-radius: var(--szorad-radius);
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(75, 84, 162, 0.12);
}

/* Title */

.tp-cta__title {
  margin: 0 0 16px;
  font-size: 2rem;
  color: var(--szorad-teal);
  font-family: 'Gelasio', serif;
}

/* Text */

.tp-cta__text p {
  margin: 0 0 24px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--szorad-primary);
}

/* Button */

.tp-cta__button {
  display: inline-block;
  background: var(--szorad-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--szorad-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.tp-cta__button:hover {
  background: var(--szorad-primary);
  border-color: #ffffff;
}

/* Responsive */

@media (max-width: 768px) {
  .tp-cta__box {
    padding: 32px 20px;
  }

  .tp-cta__title {
    font-size: 1.6rem;
  }
}