/*
Theme Name: Dr. Sike Nikolett SPA
Theme URI: 
Author: David Kovacs
Author URI: 
Description: Modern SPA Theme for Dr. Sike Nikolett
Version: 1.0.24
Text Domain: sikeniki
*/

/* ━━━━━━━━ TOKENS & SETUP ━━━━━━━━ */
:root {
  /* Brand Colors - Playful, Vibrant, Trustworthy */
  --c-primary: #2563eb;
  /* Brand Blue */
  --c-primary-hover: #1d4ed8;
  --c-primary-light: #e0f2fe;

  --c-secondary: #00D2D3;
  /* Bright Teal */
  --c-secondary-hover: #00B8B9;
  --c-secondary-light: #E0FCFC;

  --c-accent: #FFCE00;
  /* Vibrant Yellow */

  --c-dark: #1A1B41;
  /* Deep Navy (instead of charcoal) */
  --c-text: #4A4A68;
  /* Soft blue-grey text */
  --c-text-light: #8E8EA8;

  --c-bg: #FFFFFF;
  /* Pure white base */
  --c-surface: #FFFFFF;

  /* Playful Section Backgrounds */
  --c-playful-yellow: #FFF9E6;
  --c-playful-blue: #EAF6FF;
  --c-playful-mint: #E6FFF6;
  --c-playful-pink: #FFF0F4;
  --c-playful-dark: #1A1B41;

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(26, 27, 65, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 27, 65, 0.08);
  --shadow-lg: 0 24px 64px rgba(26, 27, 65, 0.12);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 85%;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--c-dark);
  font-weight: 700;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ━━━━━━━━ LAYOUT & COMPONENTS ━━━━━━━━ */

/* Promo Bar */
.promo-bar {
  min-height: 32px;
  background-color: var(--c-playful-blue);
  color: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding: 6px 16px;
  text-align: center;
}

/* ━━━━━━━━ UTILITIES ━━━━━━━━ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mb-5 {
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  transition: all 0.2s ease;
  gap: 8px;
}

.btn-primary,
.btn-accent {
  background-color: #2563eb;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover,
.btn-accent:hover {
  background-color: #1d4ed8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background-color: var(--c-secondary-light);
  color: var(--c-secondary-hover);
}

.btn-secondary:hover {
  background-color: var(--c-secondary);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
}

.btn-outline:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}


/* ━━━━━━━━ TYPOGRAPHY ━━━━━━━━ */
#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header & Nav (Premium Floating) */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  max-width: 1280px;
  margin: 0 auto 32px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 12px 24px;
  font-size: 1.05rem; /* Counteract the 85% global reduction slightly less */
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 16px;
}

.site-header .container > * {
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--c-primary), #FF8E8E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.brand-text h1 {
  font-size: 1.15em;
  margin: 0;
  color: var(--c-dark);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.brand-text p {
  font-size: 0.75em;
  color: var(--c-text-light);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.main-nav-list {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav-list li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav-list a {
  padding: 10px 10px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.9em;
  color: var(--c-text);
  transition: all 0.2s ease;
  display: block;
  text-decoration: none;
}

.main-nav-list > li > a:hover {
  background: var(--c-bg);
  color: var(--c-dark);
}

.main-nav-list li.current-menu-item > a {
  background: var(--c-dark);
  color: #fff;
}

.main-nav-list li.menu-item-has-children > a::after {
  content: " \2304";
  font-size: 0.8em;
  opacity: 0.5;
  margin-left: 6px;
  vertical-align: middle;
}

.main-nav-list .sub-menu li.menu-item-has-children > a::after {
  content: " \203A";
  float: right;
  font-size: 1.4em;
  line-height: 0.8;
}

/* First Level Sub Menu */
.main-nav-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 16px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.main-nav-list li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav-list .sub-menu a {
  padding: 10px 24px;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.9rem;
  color: #4b5563;
}

.main-nav-list .sub-menu a:hover {
  background: rgba(240, 243, 248, 0.6);
  color: var(--c-primary);
}

/* Second Level Sub Menu */
.main-nav-list .sub-menu .sub-menu {
  top: -16px;
  left: 100%;
  margin-left: 8px;
}

.nav-cta {
  margin-left: 12px;
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--c-dark);
}

/* Main Content Area */
.main-content {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* View Transitions */
.view-section {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.view-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ━━━━━━━━ SECTIONS ━━━━━━━━ */

/* Playful Background Classes */
.playful-bg-yellow {
  background-color: var(--c-playful-yellow);
  background-image: url('./assets/about_bg.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.playful-bg-blue {
  background-color: var(--c-playful-blue);
  padding: 100px 0;
}

.playful-bg-mint {
  background-color: var(--c-playful-mint);
  padding: 100px 0;
}

.playful-bg-pink {
  background-color: var(--c-playful-pink);
  padding: 100px 0;
}

.playful-bg-dark {
  background-color: var(--c-playful-dark);
  background-image: url('./assets/cta_bg.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
}

/* Hero Slider Section */
.hero-slider-section {
  max-width: 1400px;
  margin: 0 auto;
}

.hero-slider-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 75vh;
  min-height: 750px;
  box-shadow: var(--shadow-md);
  background: var(--c-dark);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h2, .hero-content p {
  max-width: 650px;
}

.hero-trust-badges {
  display: flex;
  column-gap: 24px;
  row-gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 500;
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
}

.trust-badge:not(:last-child)::after {
  content: "•";
  color: rgba(255,255,255,0.4);
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
}

.trust-badge:hover {
  color: #fff;
  transform: translateY(-2px);
}

.trust-badge .icon {
  color: #fbbf24;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.hero-content h2 {
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3.15vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.slider-dots {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Stat Highlight Section */
.stat-highlight-section {
  position: relative;
  padding: clamp(24px, 8vw, 120px) 24px;
  background: #f8fafc;
  text-align: center;
  overflow: hidden;
  margin: 0;
}

.stat-highlight-section h2 {
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--c-dark);
  max-width: 1000px;
  margin: 0 auto 40px auto;
  line-height: 1.4;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-icon-particle {
  position: absolute;
  color: #2563eb;
  font-size: 4rem;
  opacity: 0.05;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatRandom 6s ease-in-out infinite alternate;
}

@keyframes floatRandom {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-15px) rotate(15deg);
  }
}

.float-icon-particle.p0 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-icon-particle.p1 {
  top: 60%;
  left: 18%;
  animation-delay: 1s;
}

.float-icon-particle.p2 {
  top: 30%;
  left: 25%;
  animation-delay: 2s;
}

.float-icon-particle.p3 {
  top: 75%;
  left: 35%;
  animation-delay: 0.5s;
}

.float-icon-particle.p4 {
  top: 25%;
  right: 25%;
  animation-delay: 1.5s;
}

.float-icon-particle.p5 {
  top: 65%;
  right: 30%;
  animation-delay: 2.5s;
}

.float-icon-particle.p6 {
  top: 15%;
  right: 10%;
  animation-delay: 0.8s;
}

.float-icon-particle.p7 {
  top: 55%;
  right: 15%;
  animation-delay: 1.2s;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Symptoms Section */
.problems-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.section-header .sh-tag {
  display: inline-block;
  padding: 8px 24px;
  background: #e0f2fe;
  color: #2563eb;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--c-dark);
}

.section-header p {
  font-size: 1.15rem;
  color: rgba(26, 27, 65, 0.8);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.symptom-card {
  background: #ffffff;
  padding: 48px;
  border-radius: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.symptom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.symptom-icon {
  width: 120px;
  height: 120px;
  background: transparent;
  color: var(--c-primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
  overflow: visible;
}

.symptom-card h3 {
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-size: 1.8rem;
  color: var(--c-dark);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.symptom-card p {
  font-size: 1.15rem;
  color: var(--c-text);
  line-height: 1.7;
}

.symptom-card p strong {
  color: var(--c-dark);
  font-weight: 700;
}

.symptoms-cta {
  background: var(--c-dark);
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
}

.s-cta-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #fff;
}

.s-cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.5;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
}

/* Testimonials Masonry */
.testimonials-masonry {
  column-count: 3;
  column-gap: 24px;
  margin-top: 48px;
}

.tm-card {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  text-align: left;
}

.tm-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.tm-text-blue {
  background: #405784;
  color: #fff;
  padding: 36px 32px;
}

.tm-text-light {
  background: #D5E4FC;
  color: var(--c-dark);
  padding: 36px 32px;
}

.tm-image-text {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.mbae-floating-badge {
  position: absolute;
  top: -30px;
  left: -20px;
  z-index: 10;
  height: 184px;
  width: auto;
  border-radius: 24px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 8px 16px rgba(0,0,0,0.05);
  animation: float-badge 5s ease-in-out infinite;
}

.mbae-floating-badge img {
  height: 100%;
  width: auto;
  display: block;
  border-radius: 18px;
}

@keyframes float-badge {
  0% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
  100% { transform: translateY(0) rotate(-1deg); }
}

.tm-image-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 20, 0.95) 0%, rgba(10, 10, 20, 0.2) 60%, transparent 100%);
  z-index: 1;
}

.tm-content {
  position: relative;
  z-index: 2;
}

.tm-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.95;
}

.tm-author {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.tm-role {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Owners / Knowledge / Cases layout */
.page-header {
  background: var(--c-dark);
  color: #fff;
  padding: 34px 24px 64px;
  text-align: center;
  border-bottom-left-radius: 50% 3vw;
  border-bottom-right-radius: 50% 3vw;
  margin-bottom: 48px;
}

.page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-content {
  padding: 40px 0 100px;
}

/* Content Cards (Owners, Vets) */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.content-card {
  background: #fff;
  padding: 48px;
  border-radius: 32px;
  box-shadow: 0 24px 48px rgba(26, 27, 65, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
}

.content-card:hover {
  transform: translateY(-5px);
}

.content-card h3 {
  font-size: 1.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 16px;
}

.content-card p, .info-card p {
  font-size: 1.1rem;
  color: rgba(26, 27, 65, 0.8);
  line-height: 1.6;
}

/* Aliases for generated migration content */
.info-grid {
  display: grid;
  gap: 24px;
}
.info-card {
  background: var(--c-surface);
  padding: 32px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--c-primary);
}

/* Expertise Section */
.expertise-section {
  background: var(--c-surface);
  position: relative;
  overflow: hidden;
}

.exp-headline {
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--c-dark);
  letter-spacing: -1px;
  position: relative;
  z-index: 5;
  max-width: 950px;
  margin: 0 auto;
}

.exp-avatar {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 4px solid #fff;
  z-index: 1;
  animation: float-avatar 6s ease-in-out infinite alternate;
}

.exp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float-avatar {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Pricing Dark Container (Joii Style) */
.pricing-dark-container {
  background-color: var(--c-dark);
  border-radius: 32px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  color: #fff;
  box-shadow: 0 40px 80px rgba(26, 27, 65, 0.15);
}

.pricing-intro h2 {
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 32px;
  letter-spacing: -1px;
  color: #fff;
}

.pricing-features-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
  text-align: left;
}

.pf-item {
  display: flex;
  gap: 16px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  align-items: center;
}

.pf-icon {
  color: var(--c-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pricing-col {
  border: none;
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(26,27,65, 0.05);
  position: relative;
  overflow: hidden;
}

.pricing-col:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26,27,65, 0.1);
}

.pricing-col.popular {
  border: 2px solid var(--c-primary);
  box-shadow: 0 16px 48px rgba(37,99,235, 0.12);
}

.p-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  padding: 6px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.p-col-header {
  display: flex;
  flex-direction: column;
}

.p-icon-wrap {
  font-size: 2.5rem;
  color: var(--c-primary);
  margin-bottom: 24px;
}

.p-title-wrap h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 6px;
  line-height: 1.25;
}

.p-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.p-price {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 32px;
}

.p-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin: 0 0 32px 0;
}

.p-col-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-feature-row {
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  color: var(--c-text);
  line-height: 1.5;
}

.pf-check {
  color: var(--c-secondary);
  font-size: 1.1rem;
  margin-right: 12px;
  margin-top: 4px;
}

.p-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--c-text-light);
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px dashed rgba(0,0,0,0.1);
}

/* Knowledge Base / Accordions */
.knowledge-category {
  margin-bottom: 48px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.knowledge-category h2, .knowledge-category h3 {
  font-size: 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-secondary-light);
}

.articles-grid, .article-list {
  display: grid;
  gap: 16px;
}

.article-item, .article-card {
  background: var(--c-surface);
  padding: 24px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--c-secondary);
  transition: all 0.3s ease;
  overflow: hidden;
}

.article-item:hover, .article-card:hover {
  transform: translateX(8px);
  background: #e0f2fe;
}

.article-item h3, .article-item h4, .article-card h3, .article-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--c-dark);
}

.article-item p, .article-card p {
  color: var(--c-text);
}

.article-card .read-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--c-primary);
  font-weight: bold;
  text-decoration: none;
}
.article-card .read-more:hover {
  text-decoration: underline;
}

/* Gallery / Cases */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.gallery-content {
  padding: 24px;
}

.gallery-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Contact CTA */
.big-cta {
  background: var(--c-primary);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.big-cta h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.big-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  position: relative;
  background-color: var(--c-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 0px 0 40px;
  margin-top: calc(10vw + 120px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--c-accent);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--c-accent);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 8px;
}

.pkg-booking-btn {
  display: none;
}

/* ━━━━━━━━ MEDIA QUERIES ━━━━━━━━ */
@media (max-width: 992px) {
  .hero-slide {
    padding: clamp(16px, 4vw, 40px);
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .slider-dots {
    flex-direction: row;
    right: auto;
    top: auto;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-trust-badges {
    justify-content: center;
  }
  
  .trust-badge:not(:last-child)::after {
    display: none;
  }


  .hero-slider-container {
    height: auto;
    min-height: 750px;
  }

  .hero-content h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .pricing-dark-container {
    padding: 40px 24px;
    gap: 32px;
  }

  .pricing-intro {
    text-align: center;
  }

  .pricing-features-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: fit-content;
    margin: 0 auto;
    max-width: 100%;
  }

  .pkg-booking-btn {
    display: block;
  }

  .pricing-cards-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .symptoms-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .symptoms-cta {
    flex-direction: column;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .testimonials-masonry {
    column-count: 2;
  }

  .exp-avatar {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .page-arak-pricing {
    padding-top: 0 !important;
  }
  
  .page-hero {
    padding-bottom: 32px !important;
  }
  
  .mbae-floating-badge {
    height: 138px;
    top: -20px;
    left: -10px;
  }
  
  .footer-mbae-logo {
    display: block;
    margin: 0 auto;
  }
  
  .hero-slider-container {
    min-height: 480px;
    height: 60vh;
  }
  
  .hero-trust-badges {
    display: none !important;
  }
  
  .about-text-content {
    padding-left: 0 !important;
    text-align: center;
    align-items: center;
  }
  
  .symptom-card {
    text-align: center;
    align-items: center;
  }
  
  .hero-content h2 {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  .symptoms-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-dark-container {
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
    padding: 40px 16px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .testimonials-masonry {
    column-count: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-nav, .main-nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

/* ━━━━━━━━ CASE HTML CONTENT ━━━━━━━━ */
.case-html-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--c-text);
}

.case-html-content h1,
.case-html-content h2,
.case-html-content h3,
.case-html-content h4 {
  color: var(--c-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.case-html-content p {
  margin-bottom: 1.5rem;
}

.case-html-content p:has(img) {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.case-html-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  flex: 1 1 auto;
  object-fit: cover;
}

.case-html-content a {
  color: var(--c-primary);
  text-decoration: underline;
}

.case-html-content a:hover {
  text-decoration: none;
  color: var(--c-primary-hover);
}

.case-html-content strong, 
.case-html-content b {
  color: var(--c-dark);
  font-weight: 700;
}

@media (max-width: 768px) {
  html {
    font-size: 100%;
  }
  html, body {
    overflow-x: clip;
    width: 100%;
  }

  .site-header {
    position: sticky;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    top: 0;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
  }

  .site-header .container {
    gap: 16px;
  }

  .site-header .container > * {
    flex-shrink: 1;
  }

  .brand-text h1 {
    font-size: 1rem;
  }

  .brand-text p {
    font-size: 0.65rem;
  }

  .hero-slider-section {
    padding: 16px !important;
  }

  .hero-slide {
    background-image: none !important;
    background-color: var(--c-dark) !important;
  }

  .hero-slider-container {
    border-radius: 32px !important;
    box-shadow: var(--shadow-lg);
  }

  .slider-dots {
    display: none !important;
  }

  .main-nav {
    display: none;
    /* Hide default nav */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-surface);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-md);
  }

  .main-nav.show {
    display: flex;
  }

  .nav-cta {
    margin: 16px 0 0 0;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }
}
/* ━━━━━━━━ SINGLE ARTICLE CONTENT ━━━━━━━━ */
.article-content {
  font-family: 'Inter', sans-serif;
  color: #374151;
  font-size: 1.1rem;
  line-height: 1.7;
}

.article-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.article-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-top: 36px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content ul li {
  margin-bottom: 8px;
  position: relative;
}

.article-content ul li::marker {
  color: var(--c-primary);
  font-weight: bold;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.article-content img.alignleft {
  float: left;
  margin: 8px 24px 24px 0;
  max-width: 50%;
}

.article-content img.alignright {
  float: right;
  margin: 8px 0 24px 24px;
  max-width: 50%;
}

.article-content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.article-content a {
  color: var(--c-primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(37,99,235,0.3);
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}

.article-content a:hover {
  text-decoration-color: var(--c-primary);
}

/* Kisebb képernyőn a tartalom padding csökkentése */
@media (max-width: 768px) {
  .article-wrapper .container {
    padding: 32px 20px !important;
  }
  .article-content img.alignleft,
  .article-content img.alignright {
    float: none;
    margin: 24px auto;
    max-width: 100%;
    display: block;
  }
}

/* ━━━━━━━━ ARTICLE GALLERY GRID ━━━━━━━━ */
.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0;
  align-items: stretch;
}

.article-gallery a.glightbox {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-gallery a.glightbox:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.article-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 !important; /* override single img margin */
  box-shadow: none !important;
  border-radius: 0 !important; /* wrapper has the radius */
  display: block;
  aspect-ratio: 4/3; /* makes them uniform */
}

@media (max-width: 600px) {
  .article-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Highlight styles for quote blocks (No background, just blue text) */
h2.exp-headline strong,
.stat-highlight-section h2 strong {
  color: var(--c-primary) !important;
  font-weight: 900 !important;
}

