/* ============================================================
   FLAVOR FLAVOR - Beyaz Eşya Servis Teması
   Premium Redesign v4.0
   ============================================================ */

:root {
  /* Profesyonel Servis Renk Paleti */
  --primary: #0052cc;
  --primary-light: #e6f0ff;
  --primary-dark: #003d99;
  --primary-rgb: 0, 82, 204;
  --secondary: #0a1628;
  --accent: #ff6b35;
  --accent-light: #fff3ed;
  --accent-dark: #e55a25;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f6;
  --gray-200: #dde2eb;
  --gray-300: #bcc4d4;
  --gray-400: #8e99ae;
  --gray-500: #6b7a94;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;
  --gray-900: #0f141e;
  --green: #10b981;
  --green-light: #ecfdf5;
  --red: #ef4444;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 2px 8px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.04);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: .2s ease;
}

/* === RESET === */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100% }
body { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale }
img { max-width: 100%; height: auto; display: block }
a { color: var(--primary); text-decoration: none; transition: color var(--transition) }
a:hover { color: var(--primary-dark) }
h1,h2,h3,h4,h5,h6 { color: var(--gray-900); font-weight: 700; line-height: 1.3 }
ul,ol { list-style: none }
button { cursor: pointer; border: none; background: none; font-family: inherit }
input,textarea,select { font-family: inherit; font-size: inherit }
::selection { background: var(--primary); color: #fff }

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

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; font-weight: 600; font-size: 14px;
  border-radius: var(--radius); border: 2px solid transparent;
  transition: all .25s ease; cursor: pointer;
  text-decoration: none !important; line-height: 1.4;
  letter-spacing: .01em;
}
.btn-primary { background: var(--primary); color: #fff !important; border-color: var(--primary) }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(var(--primary-rgb),.25) }
.btn-accent { background: var(--accent); color: #fff !important; border-color: var(--accent) }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px) }
.btn-outline { background: transparent; color: var(--primary) !important; border-color: var(--primary) }
.btn-outline:hover { background: var(--primary); color: #fff !important }
.btn-white { background: #fff; color: var(--primary) !important; border-color: #fff }
.btn-white:hover { background: var(--gray-50); box-shadow: 0 4px 16px rgba(0,0,0,.1) }
.btn-outline-white { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.4) }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff }
.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 10px }
.btn-sm { padding: 8px 18px; font-size: 13px }
.btn-block { width: 100%; justify-content: center }
.btn-whatsapp { background: #25d366; color: #fff !important; border-color: #25d366 }
.btn-whatsapp:hover { background: #1fba59; transform: translateY(-2px) }
.btn-cta { background: #fff; color: var(--primary) !important; font-weight: 700 }
.btn-cta:hover { background: var(--gray-50) }

/* === HEADER === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all .3s ease;
}
.header-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); border-bottom-color: transparent }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px }
.header-logo .site-title { font-size: 20px; font-weight: 800; color: var(--gray-900) }
.header-logo .site-title-link { text-decoration: none }
.header-logo img { max-height: 44px }
.header-logo .custom-logo-link { display: flex; align-items: center }

.header-nav { flex: 1; display: flex; justify-content: center }
.nav-menu { display: flex; gap: 4px }
.nav-menu li { position: relative }
.nav-menu li a {
  display: block; padding: 8px 16px;
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  border-radius: 6px; transition: all var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a { color: var(--primary); background: var(--primary-light) }
.nav-menu .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .2s ease; z-index: 100;
}
.nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0) }
.nav-menu .sub-menu a { font-size: 13px; padding: 8px 14px }

.header-actions { display: flex; align-items: center; gap: 10px }
.search-toggle {
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; border-radius: var(--radius); color: var(--gray-500);
  transition: all var(--transition);
}
.search-toggle:hover { background: var(--gray-100); color: var(--gray-800) }
.header-cta-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; background: var(--accent); color: #fff !important;
  border-radius: var(--radius); font-weight: 600; font-size: 13px;
  transition: all .2s ease; letter-spacing: .01em;
}
.header-cta-btn:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,107,53,.3) }
.mobile-menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px }
.hamburger-line { width: 20px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all .2s }

/* Search Overlay */
.search-overlay {
  position: fixed; inset: 0; background: rgba(10,22,40,.85);
  z-index: 2000; display: none; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(4px);
}
.search-active .search-overlay { display: flex; opacity: 1; visibility: visible }
.search-overlay-inner { width: 90%; max-width: 560px; position: relative }
.search-overlay form { display: flex; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg) }
.search-overlay input { flex: 1; padding: 18px 24px; border: none; font-size: 16px; outline: none }
.search-overlay button[type="submit"] { padding: 18px 20px; color: var(--primary) }
.search-close {
  position: absolute; top: -56px; right: 0;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 32px; background: rgba(255,255,255,.15);
  border-radius: 50%; transition: all .2s; cursor: pointer;
}
.search-close:hover { background: rgba(255,255,255,.3); transform: scale(1.1) }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 320px; height: 100vh; background: #fff; z-index: 3000; transition: right .35s ease; box-shadow: var(--shadow-lg); overflow-y: auto }
.mobile-menu-active .mobile-menu { right: 0 }
body.mobile-menu-active::before { content: ''; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 2999 }
.mobile-menu-inner { padding: 24px }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); margin-bottom: 20px }
.mobile-menu-close { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 24px; border-radius: var(--radius); background: var(--gray-100) }
.mobile-nav-menu li a { display: block; padding: 14px 0; font-size: 15px; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-100) }
.mobile-nav-menu .sub-menu { padding-left: 16px }
.mobile-nav-menu .sub-menu a { font-size: 14px; color: var(--gray-500) }
.mobile-menu-contact { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--gray-200) }
.mobile-contact-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--primary-light); border-radius: var(--radius); color: var(--primary); font-weight: 600; font-size: 14px }

/* === HERO SLIDER === */
.hero-slider {
  position: relative; margin-top: 72px;
  background: linear-gradient(135deg, var(--secondary) 0%, #162a4a 50%, #1a3a5c 100%);
  overflow: hidden;
}
.hero-slider::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(0,82,204,.15) 0%, transparent 60%);
  pointer-events: none;
}
.slider-wrapper { position: relative; z-index: 1 }
.slide { display: none }
.slide.active { display: block; animation: slideIn .6s ease }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px) } to { opacity: 1; transform: none } }
.slide-overlay { display: none }
.slide-inner {
  display: flex; align-items: center; gap: 60px;
  min-height: 540px; padding: 60px 0;
}
.slide-content { flex: 1; min-width: 0 }
.slide-subtitle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: rgba(255,107,53,.15);
  border: 1px solid rgba(255,107,53,.3);
  border-radius: 50px; font-size: 13px; font-weight: 600;
  color: var(--accent); margin-bottom: 20px;
}
.slide-title {
  font-size: 46px; font-weight: 800; color: #fff;
  line-height: 1.12; margin-bottom: 18px;
  letter-spacing: -.02em;
}
.slide-description {
  font-size: 17px; color: rgba(255,255,255,.7);
  line-height: 1.7; margin-bottom: 32px; max-width: 480px;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap }
.slide-actions .btn-primary {
  background: var(--accent); color: #fff !important;
  border-color: var(--accent); padding: 14px 30px; font-size: 15px;
}
.slide-actions .btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark) }
.slide-actions .btn-outline {
  color: #fff !important; border-color: rgba(255,255,255,.35);
  padding: 14px 30px; font-size: 15px;
}
.slide-actions .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6) }
.slide-image {
  flex: 0 0 440px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.slide-image::before {
  content: ''; position: absolute; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(var(--primary-rgb),.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.slide-image img {
  max-height: 400px; border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  position: relative; z-index: 1;
}
.slide-image-placeholder {
  width: 400px; height: 340px;
  background: rgba(255,255,255,.04); border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed rgba(255,255,255,.1);
}
.slider-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.25); cursor: pointer;
  transition: all .3s;
}
.slider-dot.active { background: var(--accent); width: 28px; border-radius: 5px }

/* === SECTION COMMON === */
.section-header { text-align: center; margin-bottom: 52px }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: ''; width: 20px; height: 2px;
  background: var(--primary); border-radius: 1px;
}
.section-title {
  font-size: 34px; font-weight: 800; color: var(--gray-900);
  letter-spacing: -.02em;
}
.section-desc {
  font-size: 16px; color: var(--gray-500);
  max-width: 540px; margin: 14px auto 0; line-height: 1.7;
}
.section-footer { text-align: center; margin-top: 40px }

/* === ABOUT === */
.about-section { padding: 90px 0; background: var(--white) }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center }
.about-image-wrap { position: relative }
.about-image-wrap img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg) }
.about-image-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--gray-100) 100%);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: #fff;
  padding: 18px 24px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: 0 8px 24px rgba(255,107,53,.3);
}
.badge-number { display: block; font-size: 32px; font-weight: 800; line-height: 1 }
.badge-text { font-size: 12px; font-weight: 500; opacity: .9; margin-top: 2px; display: block }
.about-content .section-label { text-align: left }
.about-content .section-label::before { display: none }
.about-content .section-title { text-align: left; font-size: 30px }
.about-text { font-size: 15px; line-height: 1.85; color: var(--gray-600); margin: 16px 0 28px }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px }
.feature-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: var(--gray-50);
  border-radius: var(--radius); transition: all .2s;
  border: 1px solid var(--gray-200);
}
.feature-item:hover { border-color: var(--primary); background: var(--primary-light) }
.feature-icon {
  width: 42px; height: 42px; display: flex; align-items: center;
  justify-content: center; background: var(--primary-light);
  border-radius: var(--radius); color: var(--primary); flex-shrink: 0;
}
.feature-item span { font-size: 13px; font-weight: 600; color: var(--gray-800) }

/* === SERVICES === */
.services-section { padding: 90px 0; background: var(--gray-50) }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px }
.service-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: all .3s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-6px);
}
.service-image { position: relative; aspect-ratio: 16/10; overflow: hidden }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease }
.service-card:hover .service-image img { transform: scale(1.06) }
.service-image-placeholder {
  width: 100%; height: 100%; min-height: 180px;
  background: linear-gradient(135deg, var(--primary-light), var(--gray-100));
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.service-icon-badge {
  position: absolute; bottom: -18px; right: 18px;
  width: 44px; height: 44px; background: var(--primary);
  color: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb),.3);
}
.service-icon-badge svg { width: 20px; height: 20px }
.service-body { padding: 28px 22px 22px }
.service-title { font-size: 17px; font-weight: 700; margin-bottom: 8px }
.service-title a { color: var(--gray-900); text-decoration: none }
.service-title a:hover { color: var(--primary) }
.service-excerpt { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  transition: gap .2s;
}
.service-link:hover { gap: 10px }

/* === BLOG HOME === */
.blog-section { padding: 90px 0; background: var(--white) }
.blog-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px }
.blog-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: all .3s ease;
}
.blog-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transform: translateY(-4px);
}
.blog-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease }
.blog-card:hover .blog-card-image img { transform: scale(1.05) }
.blog-card-placeholder {
  width: 100%; height: 100%; min-height: 180px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex; align-items: center; justify-content: center;
}
.blog-card-date {
  position: absolute; top: 14px; left: 14px;
  background: #fff; padding: 8px 12px; border-radius: var(--radius);
  text-align: center; line-height: 1.1; box-shadow: var(--shadow-sm);
}
.date-day { display: block; font-size: 20px; font-weight: 800; color: var(--primary) }
.date-month { font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--gray-500) }
.blog-card-cat {
  position: absolute; top: 14px; right: 14px;
  background: var(--accent); color: #fff; padding: 4px 12px;
  border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.blog-card-body { padding: 22px }
.blog-card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.45 }
.blog-card-title a { color: var(--gray-900) }
.blog-card-title a:hover { color: var(--primary) }
.blog-card-excerpt { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 14px }
.blog-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  transition: gap .2s;
}
.blog-card-link:hover { gap: 9px }

/* === CTA === */
.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  position: relative; z-index: 1;
}
.cta-content h2 { color: #fff; font-size: 30px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.02em }
.cta-content p { color: rgba(255,255,255,.8); font-size: 16px; max-width: 480px }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0 }

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #162a4a 100%);
  padding: 120px 0 52px; margin-top: 72px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: 0; bottom: 0;
  width: 300px; height: 200px;
  background: radial-gradient(circle, rgba(var(--primary-rgb),.1) 0%, transparent 70%);
}
.page-hero-title { font-size: 36px; color: #fff; font-weight: 800; margin-bottom: 10px; letter-spacing: -.02em }
.page-hero-desc { font-size: 16px; color: rgba(255,255,255,.65); max-width: 500px; line-height: 1.7 }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 13px }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s }
.breadcrumb a:hover { color: #fff }
.breadcrumb .sep { color: rgba(255,255,255,.25) }
.breadcrumb .current { color: rgba(255,255,255,.85); font-weight: 500 }

/* === BLOG PAGE === */
.blog-page { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 56px 0 64px }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px }
.blog-list-card {
  display: grid; grid-template-columns: 260px 1fr;
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  transition: all .2s ease;
}
.blog-list-card:hover { border-color: transparent; box-shadow: var(--shadow-md) }
.blog-list-card .blog-card-image { aspect-ratio: auto; height: 100% }
.blog-list-card .blog-card-body { padding: 24px; display: flex; flex-direction: column; justify-content: center }
.blog-card-cat-link {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 6px;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--gray-100); margin-top: auto;
}
.blog-card-meta { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gray-400) }

/* === SIDEBAR === */
.blog-sidebar { position: sticky; top: 92px; align-self: start }
.sidebar-inner { display: flex; flex-direction: column; gap: 24px }
.widget {
  background: #fff; border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--gray-200);
}
.widget-title {
  font-size: 16px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--primary); position: relative;
}
.widget ul li a {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600); font-size: 14px; transition: all .2s;
}
.widget ul li a:hover { color: var(--primary); padding-left: 6px }
.sidebar-search-form {
  display: flex; background: var(--gray-50); border-radius: var(--radius);
  border: 1px solid var(--gray-200); overflow: hidden;
}
.sidebar-search-form input {
  flex: 1; padding: 12px 16px; border: none; background: transparent;
  outline: none; font-size: 14px;
}
.sidebar-search-form button { padding: 12px 16px; color: var(--primary); background: none; border: none; cursor: pointer }
.recent-post-link { display: flex !important; gap: 12px; align-items: center; padding: 10px 0 !important; border-bottom: 1px solid var(--gray-100) !important }
.recent-post-thumb { width: 60px; height: 48px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0 }
.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover }
.recent-thumb-placeholder { width: 100%; height: 100%; background: var(--gray-100); display: flex; align-items: center; justify-content: center }
.recent-post-info { flex: 1 }
.recent-post-title { display: block; font-size: 14px; font-weight: 600; color: var(--gray-800); line-height: 1.4 }
.recent-post-date { display: block; font-size: 12px; color: var(--gray-400); margin-top: 3px }
.tagcloud { display: flex; flex-wrap: wrap; gap: 8px }
.tagcloud a {
  display: inline-block; padding: 5px 14px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 50px; font-size: 12px !important;
  color: var(--gray-600) !important; transition: all .2s;
}
.tagcloud a:hover { background: var(--primary); border-color: var(--primary); color: #fff !important }
.sidebar-cta {
  text-align: center; padding: 28px 24px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f4ff 100%);
  border-radius: var(--radius-lg);
}
.sidebar-cta svg { color: var(--primary); margin: 0 auto 12px; display: block }
.sidebar-cta h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px }
.sidebar-cta p { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.6 }

/* === SINGLE POST === */
.single-featured-image { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 32px }
.single-featured-image img { width: 100% }
.single-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 14px; font-size: 13px; color: var(--gray-400) }
.single-meta span { display: flex; align-items: center; gap: 6px }
.single-title { font-size: 32px; font-weight: 800; margin-bottom: 28px; line-height: 1.3; color: var(--gray-900); letter-spacing: -.02em }
.entry-content { font-size: 16px; line-height: 1.85; color: var(--gray-700) }
.entry-content h2 { font-size: 24px; margin: 36px 0 16px }
.entry-content h3 { font-size: 20px; margin: 28px 0 12px }
.entry-content p { margin-bottom: 18px }
.entry-content ul, .entry-content ol { margin: 14px 0 18px 24px }
.entry-content ul { list-style: disc }
.entry-content ol { list-style: decimal }
.entry-content li { margin-bottom: 8px }
.entry-content img { border-radius: var(--radius-lg); margin: 24px 0 }
.entry-content blockquote {
  border-left: 4px solid var(--primary); padding: 20px 24px;
  margin: 24px 0; background: var(--primary-light);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic; color: var(--gray-600);
}
.single-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--gray-200) }
.tags-label { font-weight: 600; font-size: 14px; color: var(--gray-600) }
.tag-link {
  padding: 4px 14px; background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 50px; font-size: 12px; color: var(--gray-600); transition: all .2s;
}
.tag-link:hover { background: var(--primary); border-color: var(--primary); color: #fff }
.single-share { display: flex; align-items: center; gap: 12px; margin-top: 24px }
.share-label { font-weight: 600; font-size: 14px; color: var(--gray-600) }
.share-btn {
  width: 38px; height: 38px; display: flex; align-items: center;
  justify-content: center; border-radius: var(--radius); transition: all .2s;
}
.share-facebook { background: #1877f2; color: #fff }
.share-twitter { background: #000; color: #fff }
.share-whatsapp { background: #25d366; color: #fff }
.share-btn:hover { opacity: .85; transform: scale(1.08) }
.author-box {
  display: flex; gap: 20px; align-items: center;
  margin-top: 40px; padding: 28px;
  background: var(--gray-50); border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}
.author-avatar img { width: 70px; height: 70px; border-radius: 50% }
.author-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px }
.author-info p { font-size: 14px; color: var(--gray-500); line-height: 1.6 }
.related-posts { margin-top: 48px }
.related-title { font-size: 24px; font-weight: 700; margin-bottom: 24px }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }
.related-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all .2s ease;
}
.related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px) }
.related-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover }
.related-card h4 { padding: 14px 16px 6px; font-size: 14px; line-height: 1.45 }
.related-card h4 a { color: var(--gray-800) }
.related-card h4 a:hover { color: var(--primary) }
.related-date { display: block; padding: 0 16px 14px; font-size: 12px; color: var(--gray-400) }

/* === CONTACT PAGE === */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 48px 0 }
.contact-info-card {
  background: #fff; padding: 28px; border-radius: var(--radius-lg);
  text-align: center; border: 1px solid var(--gray-200);
  transition: all .3s ease;
}
.contact-info-card:hover {
  border-color: transparent; box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.contact-card-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--primary-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.contact-info-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px }
.contact-info-card p { font-size: 14px; color: var(--gray-500); line-height: 1.5 }
.contact-info-card a { color: var(--primary); font-weight: 500 }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 56px }
.contact-form-wrap {
  background: #fff; padding: 36px; border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; letter-spacing: -.02em }
.contact-form-wrap > p { color: var(--gray-500); margin-bottom: 24px; font-size: 15px; line-height: 1.6 }
.contact-map-wrap { border-radius: var(--radius-xl); overflow: hidden; min-height: 420px }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: none }
.contact-map-placeholder {
  width: 100%; height: 100%; min-height: 420px;
  background: var(--gray-50); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  border-radius: var(--radius-xl); border: 1px solid var(--gray-200);
}
.contact-map-placeholder p { font-size: 14px; color: var(--gray-400); text-align: center; padding: 0 24px }

/* === FORMS === */
.form-group { margin-bottom: 18px }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--gray-700) }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-300);
  border-radius: var(--radius); font-size: 14px;
  transition: all .2s; outline: none; background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb),.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.form-message { margin-top: 14px; padding: 12px 16px; border-radius: var(--radius); font-size: 14px }
.form-message.success { background: var(--green-light); color: #065f46; border: 1px solid #a7f3d0 }
.form-message.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca }

/* === SERVICES PAGE === */
.services-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 56px 0 64px }
.service-page-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all .3s ease;
}
.service-page-card:hover {
  border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-5px);
}
.service-page-image { aspect-ratio: 16/10; overflow: hidden }
.service-page-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease }
.service-page-card:hover .service-page-image img { transform: scale(1.05) }
.service-page-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--gray-100));
  display: flex; align-items: center; justify-content: center;
}
.service-page-body { padding: 24px }
.service-page-body h2 { font-size: 19px; font-weight: 700; margin-bottom: 10px }
.service-page-body h2 a { color: var(--gray-900) }
.service-page-body h2 a:hover { color: var(--primary) }
.service-page-body p { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.65 }

/* === FOOTER === */
.site-footer { background: var(--gray-900); padding: 56px 0 0; color: var(--gray-400) }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px }
.footer-logo { margin-bottom: 16px }
.footer-logo img { max-height: 38px; filter: brightness(0) invert(1) }
.footer-site-title { font-size: 20px; font-weight: 800; color: #fff }
.footer-desc { font-size: 14px; line-height: 1.75; margin-bottom: 20px }
.footer-social { display: flex; gap: 10px }
.social-link {
  width: 36px; height: 36px; display: flex; align-items: center;
  justify-content: center; background: rgba(255,255,255,.08);
  border-radius: var(--radius); color: var(--gray-400); transition: all .2s;
}
.social-link:hover { background: var(--primary); color: #fff }
.footer-title {
  font-size: 16px; font-weight: 700; color: #fff;
  margin-bottom: 18px; padding-bottom: 12px; position: relative;
}
.footer-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--accent); border-radius: 1px;
}
.footer-nav-menu li a {
  display: block; padding: 8px 0; font-size: 14px;
  color: var(--gray-400); transition: all .2s;
}
.footer-nav-menu li a:hover { color: #fff; padding-left: 6px }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0; font-size: 14px;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent) }
.footer-contact-list li a { color: var(--gray-400) }
.footer-contact-list li a:hover { color: #fff }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0; text-align: center;
  font-size: 13px; color: var(--gray-500);
}

/* === FAB === */
.fab-container { position: fixed; bottom: 120px; right: 20px; z-index: 900 }
.fab-toggle {
  width: 54px; height: 54px; background: var(--accent);
  color: #fff; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(255,107,53,.35); transition: all .2s;
}
.fab-toggle:hover { transform: scale(1.06) }
.fab-toggle .fab-close-icon { display: none }
.fab-open .fab-toggle svg:first-child { display: none }
.fab-open .fab-toggle .fab-close-icon { display: block }
.fab-open .fab-toggle { background: var(--gray-700); border-radius: 50% }
.fab-buttons {
  position: absolute; bottom: 68px; right: 0;
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all .25s ease;
}
.fab-open .fab-buttons { opacity: 1; visibility: visible; transform: translateY(0) }
.fab-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; background: #fff; border-radius: 12px;
  box-shadow: var(--shadow-md); white-space: nowrap;
  font-size: 13px; font-weight: 600; color: var(--gray-800);
  transition: all .2s; text-decoration: none;
}
.fab-btn:hover { transform: translateX(-4px); box-shadow: var(--shadow-lg) }
.fab-whatsapp { color: #25d366 !important }
.fab-phone { color: var(--primary) !important }
.fab-form { color: var(--accent) !important; cursor: pointer }

/* === CONTACT MODAL === */
.contact-modal { position: fixed; inset: 0; z-index: 5000; opacity: 0; visibility: hidden; transition: all .3s }
.contact-modal.modal-open { opacity: 1; visibility: visible }
.modal-overlay { position: absolute; inset: 0; background: rgba(10,22,40,.6); backdrop-filter: blur(4px) }
.modal-content {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.94);
  background: #fff; border-radius: var(--radius-xl);
  padding: 36px; width: 90%; max-width: 460px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); transition: transform .3s ease;
}
.modal-open .modal-content { transform: translate(-50%, -50%) scale(1) }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; display: flex; align-items: center;
  justify-content: center; font-size: 22px;
  border-radius: var(--radius); background: var(--gray-100);
  cursor: pointer; transition: background .2s;
}
.modal-close:hover { background: var(--gray-200) }
.modal-content h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px }
.modal-content > p { font-size: 14px; color: var(--gray-500); margin-bottom: 24px }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed; bottom: 100px; right: 76px;
  width: 42px; height: 42px; background: #fff; color: var(--primary);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all .25s; z-index: 800; cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0) }
.back-to-top:hover { background: var(--primary); color: #fff; border-color: var(--primary) }

/* === MOBILE BOTTOM NAV === */
.mobile-bottom-nav { display: none }

/* === PAGINATION === */
.pagination-wrap { margin-top: 36px; display: flex; justify-content: center }
.pagination-wrap .nav-links { display: flex; gap: 6px }
.pagination-wrap a,
.pagination-wrap span {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 14px;
  border-radius: var(--radius); font-size: 14px;
  font-weight: 500; transition: all .2s;
}
.pagination-wrap a { background: #fff; color: var(--gray-600); border: 1px solid var(--gray-200) }
.pagination-wrap a:hover { border-color: var(--primary); color: var(--primary) }
.pagination-wrap span.current { background: var(--primary); color: #fff; border: 1px solid var(--primary) }

/* === 404 === */
.error-404 { text-align: center; padding: 120px 24px; margin-top: 72px }
.error-404 h1 { font-size: 120px; font-weight: 900; color: var(--primary); line-height: 1; letter-spacing: -.04em }
.error-404 h2 { font-size: 26px; margin-bottom: 14px }
.error-404 p { color: var(--gray-500); margin-bottom: 28px; font-size: 16px }
.no-results { text-align: center; padding: 80px 24px }
.no-results h2 { font-size: 22px; margin-bottom: 10px }
.no-results p { color: var(--gray-500); font-size: 15px }

/* === PAGE CONTENT === */
.page-content { padding: 56px 0; max-width: 800px; margin: 0 auto }
.page-featured-image { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 28px }
.page-featured-image img { width: 100% }

/* === COMMENTS === */
.comments-section { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-200) }
.comments-title { font-size: 22px; margin-bottom: 24px }
.comment-list { list-style: none }
.comment-list .comment { padding: 20px 0; border-bottom: 1px solid var(--gray-100) }
.comment-list .comment img { border-radius: 50% }

/* === ADS === */
.ad-container { text-align: center; margin: 24px 0; overflow: hidden }

/* === ANIMATIONS === */
.animate-on-scroll { opacity: 1; transform: none }

/* === SEO TEXT === */
.seo-text-section { padding: 64px 0; background: #fff; border-top: 1px solid var(--gray-200) }
.seo-text-title { font-size: 26px; font-weight: 800; color: var(--gray-900); margin-bottom: 24px }
.seo-text-content { font-size: 15px; line-height: 1.85; color: var(--gray-600); columns: 2; column-gap: 48px }
.seo-text-content h2,.seo-text-content h3 { column-span: all; color: var(--gray-800); margin: 24px 0 10px }
.seo-text-content h2 { font-size: 20px }
.seo-text-content h3 { font-size: 17px }
.seo-text-content p { margin-bottom: 14px }
.seo-text-content ul,.seo-text-content ol { margin: 10px 0 14px 20px }
.seo-text-content ul { list-style: disc }
.seo-text-content li { margin-bottom: 6px }
@media(max-width:768px) { .seo-text-content { columns: 1 } }

/* === FAQ === */
.faq-section { padding: 72px 0; background: var(--gray-50) }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .2s }
.faq-item.active { border-color: var(--primary) }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 22px; font-size: 15px; font-weight: 600;
  color: var(--gray-800); text-align: left; cursor: pointer;
  background: none; border: none; gap: 14px;
}
.faq-question:hover { color: var(--primary) }
.faq-icon { flex-shrink: 0; transition: transform .25s; color: var(--gray-400) }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--primary) }
.faq-answer { padding: 0 22px 18px }
.faq-answer p { font-size: 14px; line-height: 1.7; color: var(--gray-600) }

/* === RESPONSIVE === */
@media(max-width: 1024px) {
  .services-grid, .blog-grid-home, .services-page-grid { grid-template-columns: repeat(2, 1fr) }
  .about-grid { grid-template-columns: 1fr; gap: 36px }
  .contact-cards { grid-template-columns: repeat(2, 1fr) }
  .contact-grid { grid-template-columns: 1fr }
  .cta-inner { flex-direction: column; text-align: center }
  .cta-actions { width: 100%; justify-content: center }
  .footer-grid { grid-template-columns: 1fr; gap: 32px }
  .related-grid { grid-template-columns: repeat(2, 1fr) }
  .header-nav { display: none }
  .mobile-menu-toggle { display: flex }
  .slide-image { flex: 0 0 340px }
  .slide-title { font-size: 36px }
}

@media(max-width: 768px) {
  .services-grid, .blog-grid-home, .services-page-grid { grid-template-columns: 1fr }
  .blog-page { grid-template-columns: 1fr }
  .blog-list-card { grid-template-columns: 1fr }
  .contact-cards { grid-template-columns: 1fr }
  .about-features { grid-template-columns: 1fr }
  .related-grid { grid-template-columns: 1fr }
  .form-row { grid-template-columns: 1fr }
  .slide-image { display: none }
  .slide-title { font-size: 30px }
  .slide-inner { min-height: 420px; padding: 48px 0; text-align: center }
  .slide-actions { justify-content: center }
  .slide-subtitle { margin-left: auto; margin-right: auto }
  .slide-description { margin-left: auto; margin-right: auto }
  .page-hero-title { font-size: 28px }
  .single-title { font-size: 24px }
  .cta-content h2 { font-size: 24px }
  .cta-actions { flex-direction: column; width: 100% }
  .header-cta-btn span { display: none }
  .header-cta-btn { padding: 10px }
  body { padding-bottom: 68px }
  .site-footer { padding-bottom: 76px }
  .fab-container { bottom: 84px; right: 16px }
  .back-to-top { bottom: 84px; right: 72px }
  .fab-btn span { display: none }
  .fab-btn { padding: 11px; border-radius: 50% }
  .mobile-bottom-nav {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--gray-200); z-index: 900;
    padding: 8px 0; padding-bottom: max(8px, env(safe-area-inset-bottom));
    justify-content: space-around;
  }
  .bottom-nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 500; color: var(--gray-500);
    padding: 4px 12px; text-decoration: none; transition: color .2s;
  }
  .bottom-nav-item.active, .bottom-nav-item:hover { color: var(--primary) }
  .bottom-nav-item svg { width: 20px; height: 20px }
  .section-title { font-size: 26px }
  .about-section, .services-section, .blog-section { padding: 64px 0 }
}

@media(max-width: 480px) {
  .container { padding: 0 16px }
  .hero-slider { margin-top: 64px }
  .header-inner { height: 64px }
  .page-hero { padding: 104px 0 40px; margin-top: 64px }
  .slide-title { font-size: 26px }
  .slide-inner { min-height: 380px }
  .about-section, .services-section, .blog-section { padding: 52px 0 }
  .about-badge {
    position: relative; bottom: auto; right: auto;
    display: inline-flex; gap: 8px; align-items: center;
    padding: 12px 18px; margin-top: 14px;
  }
  .section-label::before, .section-label::after { width: 12px }
}

/* === WP ADMIN BAR === */
.admin-bar .site-header { top: 32px }
.admin-bar .page-hero, .admin-bar .hero-slider { margin-top: 104px }
@media(max-width: 782px) {
  .admin-bar .site-header { top: 46px }
  .admin-bar .page-hero, .admin-bar .hero-slider { margin-top: 118px }
}

/* === PRINT === */
@media print {
  .site-header, .site-footer, .fab-container, .mobile-bottom-nav, .back-to-top, .contact-modal { display: none !important }
  body { padding: 0 }
  .page-hero { margin-top: 0 }
}
