/*
Theme Name: PsikologPro
Theme URI: https://www.mustafahazirci.com
Author: Mustafa Hazırcı
Author URI: https://www.mustafahazirci.com/web-sitesi-tasarimi/
Description: Profesyonel Psikolog / Terapist WordPress teması. Modern, renkli ve dönüştürücü tasarım.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: psikologpro
*/

:root {
  --primary: #6C5CE7;
  --primary-color: #6C5CE7;
  --primary-dark: #5A4BD1;
  --primary-light: #A29BFE;
  --secondary: #00CEC9;
  --secondary-dark: #00B5B0;
  --accent: #FD79A8;
  --accent-dark: #E84393;
  --warning: #FDCB6E;
  --orange: #E17055;
  --teal: #00B894;
  --purple: #6C5CE7;
  --pink: #FD79A8;
  --gradient-1: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
  --gradient-2: linear-gradient(135deg, #00CEC9 0%, #81ECEC 100%);
  --gradient-3: linear-gradient(135deg, #FD79A8 0%, #FDCB6E 100%);
  --gradient-4: linear-gradient(135deg, #6C5CE7 0%, #00CEC9 100%);
  --gradient-5: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-cta: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --text-dark: #2d3436;
  --text-body: #636e72;
  --text-light: #b2bec3;
  --bg-white: #ffffff;
  --bg-light: #f8f9ff;
  --bg-section: #f0f2ff;
  --bg-dark: #1a1a2e;
  --border: #e8ecf0;
  --shadow-sm: 0 2px 8px rgba(108, 92, 231, 0.08);
  --shadow-md: 0 8px 30px rgba(108, 92, 231, 0.12);
  --shadow-lg: 0 20px 60px rgba(108, 92, 231, 0.15);
  --shadow-hover: 0 15px 45px rgba(108, 92, 231, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-h: 80px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { 
  color: var(--primary); 
  text-decoration: none; 
  transition: var(--transition); 
  font-weight: 500;
}
a:hover { color: var(--primary-dark); }

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

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}
h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-body); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title .tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 2.6rem;
  background: var(--gradient-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-body);
}

.section-bg { 
  background: var(--bg-section); 
  position: relative;
}
.section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-4);
}

.section-bg-alt {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
.section-bg-alt::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.section-bg-alt::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.section-bg-alt .section-title h2 {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.section-bg-alt .section-title p { color: rgba(255,255,255,0.85); }
.section-bg-alt .section-title .tag { 
  background: rgba(255,255,255,0.15); 
  color: #fff; 
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fade-up { animation: fadeInUp 0.7s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.7s ease forwards; }
.animate-fade-right { animation: fadeInRight 0.7s ease forwards; }
.animate-scale { animation: scaleIn 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.15s; }
.animate-delay-2 { animation-delay: 0.3s; }
.animate-delay-3 { animation-delay: 0.45s; }
.animate-delay-4 { animation-delay: 0.6s; }
.animate-delay-5 { animation-delay: 0.75s; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* SSS ACCORDION */
.sss-toggle { padding: 18px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.sss-toggle h4 { margin: 0; font-size: 1.05rem; }
.sss-toggle i { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.sss-content { padding: 0 25px 18px; display: none; }
.sss-content.active { display: block; }
.sss-content-inner { padding-top: 10px; border-top: 1px solid var(--border); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(108, 92, 231, 0.4);
  color: #fff;
}

.btn-secondary {
  background: var(--gradient-2);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 206, 201, 0.3);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 206, 201, 0.4);
  color: #fff;
}

.btn-accent {
  background: var(--gradient-3);
  color: #fff;
  box-shadow: 0 8px 25px rgba(253, 121, 168, 0.3);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(253, 121, 168, 0.4);
  color: #fff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,255,255,0.3);
  color: var(--primary-dark);
}

.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* CARD */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.card-glow {
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(108, 92, 231, 0.08);
}
.card-glow:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
  border-color: rgba(108, 92, 231, 0.2);
}

.card-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}
.card-gradient h3, .card-gradient p { color: #fff; }

/* GLASS */
.glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge-primary { background: rgba(108, 92, 231, 0.12); color: var(--primary); }
.badge-secondary { background: rgba(0, 206, 201, 0.12); color: var(--secondary); }
.badge-accent { background: rgba(253, 121, 168, 0.12); color: var(--accent); }
.badge-white { background: rgba(255,255,255,0.15); color: #fff; }

/* FLOATING */
.floating { animation: float 3s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* SECTION DIVIDER */
.divider-wave {
  position: relative;
  height: 120px;
  overflow: hidden;
}
.divider-wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  height: var(--header-h);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-bottom: 1px solid rgba(108, 92, 231, 0.08);
  box-shadow: 0 4px 30px rgba(108, 92, 231, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { max-height: 48px; width: auto; }
.site-logo .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-navigation { display: flex; align-items: center; }
.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.main-navigation ul li { position: relative; }
.main-navigation ul li a {
  padding: 10px 18px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 50px;
  display: block;
  transition: var(--transition);
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--primary);
  background: rgba(108, 92, 231, 0.08);
}

.main-navigation ul li.menu-item-has-children > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  margin-left: 6px;
}

.main-navigation ul .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 100;
  padding: 10px 0;
  border: 1px solid rgba(108, 92, 231, 0.08);
  flex-direction: column;
  gap: 0;
}
.main-navigation ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-navigation ul .sub-menu li { display: block; }
.main-navigation ul .sub-menu li a {
  padding: 10px 22px;
  white-space: nowrap;
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}
.header-phone:hover { color: var(--primary); }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  color: var(--text-dark);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(108, 92, 231, 0.06);
}

/* EMERGENCY BAR */
.emergency-bar {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  position: relative;
}
.emergency-bar.show { display: block; }
.emergency-bar a { color: #fff; font-weight: 700; }

/* ===== HERO ===== */
.hero-section {
  padding-top: var(--header-h);
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.hero-section .container { position: relative; z-index: 2; }

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 206, 201, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: particleFloat 8s infinite;
}
.hero-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; left: 20%; animation-delay: 2s; width: 10px; height: 10px; }
.hero-particles span:nth-child(3) { top: 30%; right: 15%; animation-delay: 4s; width: 8px; height: 8px; }
.hero-particles span:nth-child(4) { bottom: 20%; right: 30%; animation-delay: 1s; }
.hero-particles span:nth-child(5) { top: 70%; left: 60%; animation-delay: 3s; width: 12px; height: 12px; background: rgba(0, 206, 201, 0.2); }
.hero-particles span:nth-child(6) { top: 10%; right: 40%; animation-delay: 5s; }
.hero-particles span:nth-child(7) { bottom: 10%; left: 40%; animation-delay: 6s; width: 9px; height: 9px; background: rgba(253, 121, 168, 0.2); }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-30px) scale(1.3); opacity: 0.5; }
}

.hero-content { position: relative; z-index: 2; max-width: 650px; }
.hero-content .hero-tag {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-content h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
  line-height: 1.8;
  max-width: 550px;
}
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 35px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.hero-image { position: relative; z-index: 2; }
.hero-image .hero-img-wrap {
  position: relative;
  display: inline-block;
}
.hero-image .hero-img-wrap::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

.hero-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--gradient-3);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== ABOUT ===== */
.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image .about-img-wrap {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image .about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}
.about-image img { width: 100%; border-radius: var(--radius-lg); }

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--gradient-3);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-experience-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-experience-badge span { font-size: 0.8rem; opacity: 0.9; }

.about-text .about-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
}
.about-text .about-title {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-text .about-bio { font-size: 1.05rem; line-height: 1.8; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}
.about-feature .icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
}

/* ===== EXPERTISE ===== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.expertise-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(108, 92, 231, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.expertise-card:hover::before { transform: scaleX(1); }

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(108, 92, 231, 0.15);
}

.expertise-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 0 20px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 206, 201, 0.1) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  transition: var(--transition);
}
.expertise-card:hover .icon {
  background: var(--gradient-1);
  color: #fff;
  transform: scale(1.05) rotate(-5deg);
}

.expertise-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.expertise-card h3 a { color: var(--text-dark); }
.expertise-card h3 a:hover { color: var(--primary); }
.expertise-card p { font-size: 0.9rem; margin-bottom: 15px; }

.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.read-more:hover { gap: 10px; color: var(--primary-dark); }

/* ===== PROCESS ===== */
.process-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step .step-number {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: var(--gradient-1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
  position: relative;
}
.process-step .step-number::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(108, 92, 231, 0.2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.5; }
}
.process-step:nth-child(2) .step-number { background: var(--gradient-2); box-shadow: 0 10px 30px rgba(0, 206, 201, 0.3); }
.process-step:nth-child(2) .step-number::after { border-color: rgba(0, 206, 201, 0.2); }
.process-step:nth-child(3) .step-number { background: var(--gradient-3); box-shadow: 0 10px 30px rgba(253, 121, 168, 0.3); }
.process-step:nth-child(3) .step-number::after { border-color: rgba(253, 121, 168, 0.2); }

.process-step h3 { 
  color: #fff; 
  font-size: 1.3rem; 
  margin-bottom: 12px; 
}
.process-step p { 
  color: rgba(255,255,255,0.7); 
  font-size: 0.95rem; 
  max-width: 280px; 
  margin: 0 auto; 
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(108, 92, 231, 0.06);
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-1);
  transition: var(--transition);
}
.service-card:hover::after { width: 6px; }
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
  border-color: rgba(108, 92, 231, 0.15);
}

.service-card:nth-child(2n)::after { background: var(--gradient-2); }
.service-card:nth-child(3n)::after { background: var(--gradient-3); }

.service-card .icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: rgba(108, 92, 231, 0.08);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.service-card:hover .icon {
  background: var(--gradient-1);
  color: #fff;
  transform: rotate(5deg);
}

.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; margin-bottom: 15px; }

.service-card .service-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 15px;
}
.service-card .service-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: var(--bg-light);
  border-radius: 50px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid rgba(108, 92, 231, 0.06);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.06;
  position: absolute;
  top: 5px;
  right: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card .stars {
  color: #f1c40f;
  margin-bottom: 15px;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testimonial-card .author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-card .author .name { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.testimonial-card .author .type { font-size: 0.8rem; color: var(--primary); font-weight: 500; }

/* ===== COUNTERS ===== */
.counters-section {
  background: var(--gradient-5);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.counters-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.counter-item {
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.counter-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}
.counter-item .counter-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--warning);
}
.counter-item .counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 5px;
}
.counter-item .counter-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(108, 92, 231, 0.06);
}
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.blog-card .post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 230px;
}
.blog-card .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .post-thumbnail img { transform: scale(1.08); }

.blog-card .post-thumbnail .post-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 14px;
  background: var(--gradient-1);
  color: #fff;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-card .post-content { padding: 28px; }

.blog-card .post-meta {
  display: flex;
  gap: 15px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-card .post-meta span { display: flex; align-items: center; gap: 5px; }

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card h3 a { color: var(--text-dark); }
.blog-card h3 a:hover { color: var(--primary); }

.blog-card .post-excerpt {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.contact-section .section-title h2 {
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.contact-section .section-title p { color: rgba(255,255,255,0.85); }
.contact-section .section-title .tag { background: rgba(255,255,255,0.15); color: #fff; }

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.contact-info-item .icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}
.contact-info-item h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p { color: rgba(255,255,255,0.8); font-size: 0.92rem; margin: 0; }
.contact-info-item a { color: rgba(255,255,255,0.9); }
.contact-info-item a:hover { color: #fff; }

.working-hours h3 { color: #fff; margin-bottom: 15px; }
.working-hours .hour-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.working-hours .hour-row:last-child { border-bottom: none; }

.randevu-form .form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: #fff;
}
.randevu-form .form-control::placeholder { color: rgba(255,255,255,0.5); }
.randevu-form .form-control:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}

.randevu-form .form-control option { color: var(--text-dark); background: #fff; }

/* ===== CONTACT FORM (light bg) ===== */
.contact-form .form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: #fff;
  color: var(--text-dark);
}
.contact-form .form-control::placeholder { color: var(--text-light); }
.contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}
.contact-form .form-group { margin-bottom: 18px; }
.contact-form .form-response.success p { color: #155724 !important; background: rgba(212,237,218,0.8) !important; border-radius: 8px; padding: 12px; }
.contact-form .form-response.error p { color: #721c24 !important; background: rgba(248,215,218,0.8) !important; border-radius: 8px; padding: 12px; }

/* ===== SERVICE DETAIL CARDS ===== */
.service-detail-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(108, 92, 231, 0.06);
  transition: var(--transition);
  margin-bottom: 20px;
}
.service-detail-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.service-detail-card .detail-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.08) 0%, rgba(0, 206, 201, 0.08) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.service-detail-card h4 { font-size: 1rem; margin-bottom: 6px; }
.service-detail-card p { font-size: 0.92rem; margin: 0; color: var(--text-body); }
.service-detail-card .detail-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 4px;
}

/* ===== CERTIFICATE CARDS ===== */
.cert-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(108, 92, 231, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.cert-card:hover::before { transform: scaleX(1); }
.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(108, 92, 231, 0.15);
}
.cert-card .cert-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.08) 0%, rgba(0, 206, 201, 0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}
.cert-card:hover .cert-icon {
  background: var(--gradient-1);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.cert-card h4 { font-size: 1rem; margin-bottom: 6px; }
.cert-card .cert-year {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(108, 92, 231, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
}
.cert-card .cert-org { font-size: 0.85rem; color: var(--text-light); margin-bottom: 4px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-4);
}

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

.footer-widget img.footer-logo {
  max-height: 50px;
  width: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer-widget h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 22px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}
.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.footer-widget p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-widget ul li { margin-bottom: 12px; }
.footer-widget ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-widget ul li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gradient-1);
  color: #fff;
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.contact-info-wrap .footer-social a {
  background: rgba(108,92,231,0.08);
  border: 1px solid var(--border);
  color: var(--primary);
}
.contact-info-wrap .footer-social a:hover {
  background: var(--gradient-1);
  color: #fff;
  border-color: transparent;
}

.contact-map-full {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  line-height: 0;
}
.contact-map-full iframe {
  width: 100%;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6); }
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: var(--gradient-1);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

/* ===== COOKIE ===== */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(20px);
  color: #fff;
  padding: 15px 0;
  z-index: 9999;
  display: none;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cookie-notice .cookie-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.cookie-notice p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.cookie-notice .btn { flex-shrink: 0; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 { color: #fff; margin-bottom: 8px; position: relative; z-index: 2; }
.page-header .breadcrumb { font-size: 0.9rem; color: rgba(255,255,255,0.7); position: relative; z-index: 2; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-header .breadcrumb a:hover { color: #fff; }

/* ===== SIDEBAR ===== */
.page-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }

.sidebar-widget {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 25px;
  border: 1px solid rgba(108, 92, 231, 0.06);
  transition: var(--transition);
}
.sidebar-widget:hover { box-shadow: var(--shadow-md); }

.sidebar-widget h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid;
  border-image: var(--gradient-1) 1;
}

.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a {
  color: var(--text-body);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.sidebar-widget ul li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
}
.sidebar-widget ul li a:hover {
  color: var(--primary);
  transform: translateX(6px);
}
.sidebar-widget p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 14px; }

.sidebar-widget .widget-title-lg {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.sidebar-widget .widget-subtitle {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
.sidebar-widget .widget-avatar {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  border: 3px solid rgba(108, 92, 231, 0.12);
}
.sidebar-widget .btn-sidebar {
  padding: 10px;
  font-size: 0.9rem;
  width: 100%;
  margin-bottom: 10px;
}
.sidebar-widget .btn-sidebar:last-child { margin-bottom: 0; }

/* ===== SINGLE POST ===== */
.single-post-header {
  margin-bottom: 30px;
}
.single-post-header .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.single-post-header .post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.single-post-header .post-meta span i {
  color: var(--primary);
}

.post-thumbnail-large {
  margin-bottom: 35px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.post-thumbnail-large img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content h2, .post-content h3, .post-content h4 { margin-top: 35px; }
.post-content ul, .post-content ol { margin-left: 1.5rem; }
.post-content img {
  border-radius: var(--radius-sm);
  margin: 25px 0;
  max-width: 100%;
  height: auto;
}
.post-content figure,
.post-content .wp-block-image {
  max-width: 100%;
  margin: 25px 0;
}
.post-content .wp-block-image img {
  max-width: 100%;
  height: auto;
  margin: 0;
}
.post-content .wp-block-image figcaption {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
}
.post-content .alignleft {
  float: left;
  margin-right: 25px;
  margin-bottom: 15px;
}
.post-content .alignright {
  float: right;
  margin-left: 25px;
  margin-bottom: 15px;
}
.post-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post-content .wp-block-gallery { margin: 25px 0; }
.post-content .wp-block-cover { border-radius: var(--radius-sm); overflow: hidden; margin: 25px 0; }
.post-content .wp-block-table { margin: 25px 0; }
.post-content .wp-block-table table { width: 100%; border-collapse: collapse; }
.post-content .wp-block-table td,
.post-content .wp-block-table th {
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 0.92rem;
}
.post-content .wp-block-table th {
  background: var(--bg-light);
  font-weight: 700;
}
.post-content .wp-block-separator {
  margin: 35px 0;
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}
.post-content .wp-block-pullquote {
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  margin: 25px 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.04) 0%, rgba(0, 206, 201, 0.04) 100%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post-content .wp-block-pullquote p { font-size: 1.1rem; font-style: italic; margin: 0; }
.post-content .wp-block-pullquote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-light);
}
.post-content .wp-block-columns { gap: 25px; margin: 25px 0; }
.post-content .wp-block-columns .wp-block-column { min-width: 0; }
.post-content .has-large-font-size { font-size: 1.2rem; line-height: 1.7; }
.post-content .has-small-font-size { font-size: 0.85rem; }
.post-content a { text-decoration: underline; }
.post-content a:hover { text-decoration: none; }
.post-content ul, .post-content ol { padding-left: 0.5rem; }
.post-content li { margin-bottom: 6px; }
.post-content li > ul,
.post-content li > ol { margin-top: 6px; margin-left: 0; }
.post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 18px 24px;
  margin: 25px 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.04) 0%, rgba(0, 206, 201, 0.04) 100%);
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post-content blockquote p { margin: 0; }
.post-content p:last-child { margin-bottom: 0; }
.post-content iframe { max-width: 100%; }

.post-tags {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.post-tags a {
  display: inline-block;
  padding: 7px 16px;
  background: var(--bg-light);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
  border: 1px solid transparent;
}
.post-tags a:hover {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.post-comments {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.post-comments .comments-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid;
  border-image: var(--gradient-1) 1;
}
.post-comments .comment-list {
  list-style: none;
  padding: 0;
}
.post-comments .comment-list .children {
  list-style: none;
  padding-left: 30px;
}
.post-comments .comment-body {
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}
.post-comments .comment-author-avatar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.post-comments .comment-author-avatar img {
  border-radius: 50%;
}
.post-comments .comment-author-avatar strong { font-size: 0.95rem; }
.post-comments .comment-metadata {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
}
.post-comments .comment-text {
  font-size: 0.95rem;
  line-height: 1.7;
}
.post-comments .reply {
  margin-top: 10px;
}
.post-comments .reply a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.post-comments .reply a:hover { gap: 8px; }
.post-comments .no-comments {
  color: var(--text-light);
  font-style: italic;
}
.post-comments .comment-awaiting-moderation {
  display: block;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--warning);
  font-style: italic;
}
.post-comments .comment-navigation {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
}
.post-comments .comment-navigation a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

/* Comment Form */
.post-comments .comment-respond {
  margin-top: 35px;
  padding: 28px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(108, 92, 231, 0.06);
}
.post-comments .comment-reply-title {
  font-size: 1.15rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.post-comments .comment-reply-title small a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.post-comments .comment-reply-title small a:hover {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.post-comments .comment-form { display: block; }
.post-comments .comment-form .form-group {
  margin-bottom: 16px;
}
.post-comments .comment-form input[type="text"],
.post-comments .comment-form input[type="email"],
.post-comments .comment-form input[type="url"],
.post-comments .comment-form .form-control,
.post-comments .comment-form textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: #fff;
  color: var(--text-dark);
  box-sizing: border-box;
  line-height: 1.5;
}
.post-comments .comment-form .form-group input:focus,
.post-comments .comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.08);
  background: #fff;
}
.post-comments .comment-form .form-group input::placeholder,
.post-comments .comment-form textarea::placeholder {
  color: var(--text-light);
}
.post-comments .comment-form textarea {
  resize: vertical;
  min-height: 120px;
}
.post-comments .comment-form .form-submit {
  margin-top: 5px;
}
.post-comments .comment-form .form-submit .btn,
.post-comments .comment-form .form-submit button[type="submit"] {
  padding: 14px 40px;
  font-size: 0.95rem;
}
.post-comments .comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: var(--text-body);
}
.post-comments .comment-form .comment-form-cookies-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.post-comments .comment-form .comment-form-cookies-consent label {
  cursor: pointer;
  margin: 0;
}
.post-comments .comment-form .logged-in-as {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--text-body);
}
.post-comments .comment-form .logged-in-as a {
  font-weight: 600;
}
.post-comments .comment-form .comment-notes {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.post-comments .comment-form .required {
  color: var(--accent);
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  gap: 20px;
}
.post-nav > div {
  flex: 1;
  max-width: 48%;
}
.post-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  border: 1px solid rgba(108, 92, 231, 0.06);
}
.post-nav a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.post-nav > div:last-child a {
  text-align: right;
  justify-content: flex-end;
}
.post-nav a i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.page-links {
  margin-top: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.page-links a {
  padding: 4px 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin: 0 2px;
}
.page-links a:hover {
  background: var(--primary);
  color: #fff;
}
.page-links .post-page-numbers { margin: 0 2px; }
.page-links .post-page-numbers.current {
  padding: 4px 12px;
  background: var(--gradient-1);
  color: #fff;
  border-radius: var(--radius-sm);
}

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a, .pagination span {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-body);
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.9rem;
}
.pagination .current, .pagination a:hover {
  background: var(--gradient-1);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.2);
}

/* ===== 404 ===== */
.error-404 { text-align: center; padding: 100px 0; }
.error-404 h1 { font-size: 8rem; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 20px; }
.error-404 h2 { font-size: 2rem; margin-bottom: 15px; }
.error-404 p { font-size: 1.1rem; margin-bottom: 30px; }

/* ===== MAIN CONTENT ===== */
.main-content { padding: 70px 0; }
.main-content .content-area { max-width: 860px; margin: 0 auto; }

/* ===== UTILITY GRID / FLEX ===== */
.hero-row { display: flex; align-items: center; gap: 50px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.grid-2-2fr { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.text-center { text-align: center; }
.mt-25 { margin-top: 25px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mb-15 { margin-bottom: 15px; }
.w-full { width: 100%; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }

/* ===== RANDEVU PAGE ===== */
.randevu-section { padding: 60px 0; }
.randevu-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.randevu-form-col { min-width: 0; }
.randevu-info-col { display: flex; flex-direction: column; gap: 20px; }

.randevu-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(108,92,231,0.06);
}
.randevu-card-header {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px; padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.randevu-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--gradient-1); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; color: #fff; flex-shrink: 0;
}
.randevu-card-header h3 { margin: 0 0 4px; font-size: 1.2rem; }
.randevu-card-header p { margin: 0; font-size: 0.9rem; color: var(--text-light); }

.randevu-form .form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px;
}
.randevu-form .form-control {
  width: 100%; padding: 13px 16px; font-size: 0.93rem;
  font-family: var(--font-body); border: 2px solid var(--border);
  border-radius: var(--radius-sm); transition: var(--transition);
  background: var(--bg-light); color: var(--text-dark);
  box-sizing: border-box;
}
.randevu-form .form-control::placeholder { color: var(--text-light); }
.randevu-form .form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108,92,231,0.08); background: #fff;
}
.randevu-form .form-control option { color: var(--text-dark); background: #fff; }
.randevu-form .form-group { margin-bottom: 18px; }
.randevu-form .form-response {
  padding: 14px 18px; border-radius: var(--radius-sm);
  margin-bottom: 16px; font-size: 0.92rem; display: none;
}
.randevu-form .form-response.success {
  display: block; background: rgba(40,167,69,0.08);
  color: #155724; border: 1px solid rgba(40,167,69,0.2);
}
.randevu-form .form-response.error {
  display: block; background: rgba(220,53,69,0.08);
  color: #721c24; border: 1px solid rgba(220,53,69,0.2);
}
.randevu-form .btn-submit {
  width: 100%; padding: 15px; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

.randevu-privacy {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--text-light); line-height: 1.5;
  margin-bottom: 18px; padding: 12px 14px;
  background: rgba(108,92,231,0.04); border-radius: var(--radius-sm);
}
.randevu-privacy i { font-size: 0.9rem; color: var(--primary); margin-top: 2px; }

.randevu-info-card {
  background: #fff; border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(108,92,231,0.06);
}
.randevu-info-card h4 {
  font-size: 1rem; margin: 0 0 16px; display: flex;
  align-items: center; gap: 10px; color: var(--primary);
}
.randevu-info-card h4 i { font-size: 1rem; }
.randevu-info-card .working-hours { padding: 0; margin: 0; }
.randevu-info-card .working-hours .hour-row:first-child { padding-top: 0; }
.randevu-info-card .working-hours h3 { display: none; }
.randevu-info-card .working-hours .hour-row { color: var(--text-dark); border-bottom-color: var(--border); }
.randevu-info-card .working-hours .hour-row:last-child { border-bottom: none; }
.randevu-wa-grid .randevu-info-col { display: contents; }

.randevu-info-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem;
}
.randevu-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.randevu-info-item:first-child { padding-top: 0; }
.randevu-info-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(108,92,231,0.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.randevu-info-icon.whatsapp { background: rgba(37,211,102,0.1); color: #25D366; }
.randevu-info-item a { color: var(--text-dark); text-decoration: none; font-weight: 500; }
.randevu-info-item a:hover { color: var(--primary); }

.randevu-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 50px;
  background: linear-gradient(135deg,rgba(0,206,201,0.12),rgba(0,206,201,0.06));
  color: #00b894; font-size: 0.85rem; font-weight: 600;
  margin-top: 12px;
}
.randevu-badge i { font-size: 0.9rem; }

.randevu-payment-tag {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  background: var(--bg-light); font-size: 0.8rem; color: var(--text-light);
  margin: 3px 3px 0 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-content h1 { font-size: 2.8rem; }
}

@media (max-width: 992px) {
  .about-section .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-with-sidebar { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .hero-stats { gap: 25px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 25px; }
  .process-step .step-number { width: 80px; height: 80px; font-size: 1.8rem; }
  .hero-row { gap: 30px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }
  h4 { font-size: 1rem; }
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .section-title { margin-bottom: 40px; }
  .section-title h2 { font-size: 1.8rem; }
  .section-title p { font-size: 1rem; }
  p { font-size: 0.95rem; }
  .container { padding: 0 16px; }

  :root { --header-h: 60px; }
  .header-inner { height: 60px; padding: 0 16px; }

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

  .main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    min-width: 280px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 0 16px;
  }
  .main-navigation.active { max-height: 80vh; overflow-y: auto; padding: 16px; }
  .main-navigation ul { flex-direction: column; gap: 0; }
  .main-navigation ul li a { padding: 12px 16px; font-size: 0.95rem; border-radius: 8px; }
  .main-navigation ul .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    display: none;
  }
  .main-navigation ul .sub-menu li a { font-size: 0.88rem; padding: 10px 14px; }

  .header-cta { padding: 10px 18px; font-size: 0.82rem; }
  .header-phone { display: none; }

  .hero-section { min-height: auto; padding: 80px 0 50px; text-align: center; }
  .hero-row { flex-direction: column; gap: 30px; }
  .hero-content { max-width: 100%; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 1rem; margin-left: auto; margin-right: auto; }
  .hero-content .hero-tag { font-size: 0.78rem; padding: 6px 16px; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .hero-image { display: none; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 15px; margin-top: 30px; padding-top: 25px; }
  .hero-stat strong { font-size: 1.5rem; }

  .about-section .about-grid { gap: 30px; }
  .about-features { grid-template-columns: 1fr; }
  .about-image .about-img-wrap { width: 100%; }
  .about-experience-badge { right: 10px; padding: 12px 16px; }
  .about-experience-badge strong { font-size: 1.5rem; }
  .about-text .about-name { font-size: 1.5rem; }
  .about-text .about-title { font-size: 0.82rem; }

  .process-steps { grid-template-columns: 1fr; gap: 35px; }
  .process-steps::before { display: none; }
  .process-step .step-number { width: 80px; height: 80px; font-size: 1.8rem; }
  .process-step h3 { font-size: 1.15rem; }
  .process-step p { font-size: 0.9rem; margin: 0 auto; }

  .services-grid, .expertise-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .expertise-card { padding: 25px 20px; }
  .expertise-card .icon { width: 52px; height: 52px; font-size: 22px; }
  .service-card { padding: 25px 20px; }
  .service-card .icon { width: 50px; height: 50px; font-size: 2rem; line-height: 50px; }
  .service-card h3 { font-size: 1.1rem; }

  .testimonial-card { padding: 25px 20px; }

  .blog-card .post-thumbnail { height: 200px; }
  .blog-card .post-content { padding: 20px; }
  .blog-card h3 { font-size: 1.05rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .counter-item { padding: 20px 15px; }
  .counter-item .counter-number { font-size: 2.2rem; }
  .counter-item .counter-icon { font-size: 1.5rem; }
  .counter-item .counter-label { font-size: 0.85rem; }

  .contact-grid { gap: 30px; }
  .randevu-form .form-control { padding: 12px 14px; font-size: 0.9rem; }
  input[type="search"], .search-form input { max-width: 100%; }
  .contact-info-item { gap: 12px; }
  .contact-info-item .icon { width: 44px; height: 44px; min-width: 44px; font-size: 1rem; }

  .cookie-notice .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-notice p { font-size: 0.82rem; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 22px; bottom: 15px; right: 15px; }
  .scroll-top { width: 40px; height: 40px; font-size: 16px; bottom: 72px; right: 15px; }

  .main-content { padding: 40px 0; }
  .randevu-layout { grid-template-columns: 1fr; gap: 30px; }
  .randevu-card { padding: 25px; }
  .randevu-info-card { padding: 20px; }
  .page-header { padding-top: 30px; padding-bottom: 30px; }
  .page-header h1 { font-size: 1.6rem; }

  .sidebar-widget { padding: 20px; }
  .sidebar-widget h3 { font-size: 0.95rem; }

  .pagination { flex-wrap: wrap; }
  .pagination a, .pagination span { padding: 8px 14px; font-size: 0.82rem; }

  .error-404 { padding: 60px 0; }
  .error-404 h1 { font-size: 5rem; }
  .error-404 h2 { font-size: 1.5rem; }

  .post-content h2 { font-size: 1.4rem; }
  .post-content h3 { font-size: 1.2rem; }

  .single-post-header .post-meta { flex-wrap: wrap; gap: 10px; font-size: 0.8rem; }

  .random-post-thumbnails img { width: 100%; height: auto; }
  iframe { max-width: 100%; }

  /* Utility grid overrides */
  .hero-row { flex-direction: column; gap: 30px; }
  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .grid-2-2fr { grid-template-columns: 1fr; gap: 30px; }
  .grid-3 { grid-template-columns: 1fr; gap: 25px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .post-nav { flex-direction: column; gap: 15px; align-items: center; text-align: center; }

  /* Inline style overrides (for templates that still use inline) */
  .randevu-form [style*="grid-template-columns: 1fr 1fr"],
  .form-row[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="display: flex"][style*="justify-content: space-between"] {
    /* Only target post nav pattern */
  }

  .section-bg-alt::before,
  .section-bg-alt::after { display: none; }

  .hero-section::before,
  .hero-section::after { display: none; }

  .btn { padding: 14px 28px; font-size: 0.92rem; }
  .btn-lg { padding: 14px 32px; font-size: 1rem; }
  .btn-sm { padding: 8px 18px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.05rem; }
  .section-title h2 { font-size: 1.4rem; }
  .section { padding: 40px 0; }
  .container { padding: 0 12px; }

  .hero-content h1 { font-size: 1.5rem; }
  .hero-content p { font-size: 0.92rem; }
  .hero-actions .btn { padding: 12px 20px; font-size: 0.85rem; }
  .hero-stats { flex-direction: column; align-items: center; text-align: center; gap: 15px; }
  .hero-stat strong { font-size: 1.3rem; }

  .counters-grid { grid-template-columns: 1fr; }
  .counter-item .counter-number { font-size: 2rem; }

  .expertise-grid { gap: 15px; }
  .services-grid { gap: 15px; }
  .blog-grid { gap: 20px; }
  .testimonials-grid { gap: 15px; }

  .footer-grid { gap: 25px; }
  .footer-widget h3 { font-size: 1rem; }
  .footer-widget ul li { margin-bottom: 8px; }
  .footer-widget ul li a { font-size: 0.85rem; }

  .btn { padding: 12px 22px; font-size: 0.85rem; }
  .btn-lg { padding: 12px 26px; font-size: 0.9rem; }

  .randevu-layout { gap: 20px; }
  .randevu-card { padding: 20px; border-radius: var(--radius-sm); }
  .randevu-info-card { padding: 16px; border-radius: var(--radius-sm); }
  .randevu-form .form-row-2 { grid-template-columns: 1fr; }
  .page-header { padding-top: 25px; padding-bottom: 25px; }
  .page-header h1 { font-size: 1.3rem; }

  .blog-card .post-thumbnail { height: 180px; }

  .whatsapp-float { width: 42px; height: 42px; font-size: 18px; bottom: 12px; right: 12px; }
  .scroll-top { width: 36px; height: 36px; font-size: 14px; bottom: 64px; right: 12px; }

  .site-logo img { max-height: 36px; }
  .site-logo .logo-text { font-size: 1.1rem; }

  .grid-2 { gap: 20px; }
  .grid-2-2fr { gap: 20px; }
  .form-row-2 { gap: 10px; }
}
