/*
Theme Name: AHH - Alternative Holistic Healthcare
Theme URI: https://alternativeholistic.com
Author: AHH Team
Author URI: https://alternativeholistic.com
Description: A clean, modern WordPress theme for Alternative Holistic Healthcare (AHH). Built with Tailwind CSS, Poppins & Inter fonts, and a soft pastel wellness palette.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ahh-theme
Tags: health, wellness, holistic, healthcare, blog, services, contact
*/

/* =====================================================
   AHH THEME - GLOBAL STYLES
   ===================================================== */

:root {
  --primary: #118AB2;
  --secondary: #CDB4DB;
  --pastel-petal: #FFC8DD;
  --blush-pop: #FFAFCC;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white: #ffffff;
  --font-poppins: 'Poppins', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-inter);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

.font-poppins { font-family: var(--font-poppins); }
.font-inter   { font-family: var(--font-inter); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-poppins);
  line-height: 1.2;
  color: var(--gray-900);
}

/* =====================================================
   LAYOUT / CONTAINERS
   ===================================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(17,138,178,0.3);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gray-700);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-white:hover {
  background: rgba(205,180,219,0.2);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  color: var(--primary);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-white-outline:hover {
  background: rgba(255,175,204,0.2);
  border-color: var(--blush-pop);
  color: var(--white);
}

/* =====================================================
   HEADER / NAV
   ===================================================== */

#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

#site-header nav {
  width: 100%;
  padding: 1rem 1.5rem;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  margin-right: 0.75rem;
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--font-poppins);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: var(--gray-700);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  box-shadow: 0 4px 15px rgba(17,138,178,0.3);
  transform: translateY(-1px);
  color: var(--white) !important;
  font-weight: 600 !important;
}

#mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--gray-800);
}
@media (min-width: 768px) {
  #mobile-menu-btn { display: none; }
}

#mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-200);
  margin-top: 1rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  color: var(--gray-700);
  font-size: 0.95rem;
}
#mobile-menu a:hover,
#mobile-menu a.active {
  color: var(--primary);
  font-weight: 600;
}

/* =====================================================
   PAGE HERO BANNERS (inner pages)
   ===================================================== */

.page-hero {
  position: relative;
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, rgba(205,180,219,0.2) 0%, rgba(255,200,221,0.1) 50%, var(--white) 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  right: 5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(205,180,219,0.1);
  border-radius: 50%;
  filter: blur(48px);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 2.5rem;
  left: 5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(255,200,221,0.1);
  border-radius: 50%;
  filter: blur(32px);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: block;
}
.page-hero h1 {
  font-family: var(--font-poppins);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.page-hero h1 span {
  background: linear-gradient(90deg, var(--secondary), var(--blush-pop), var(--pastel-petal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================================================
   SECTIONS
   ===================================================== */

.section {
  padding: 5rem 1.5rem;
}
.section-light { background-color: var(--white); }
.section-gray  { background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%); }
.section-primary { background-color: var(--primary); color: var(--white); }

.section-title {
  font-family: var(--font-poppins);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  text-align: center;
}
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
  line-height: 1.7;
}
.section-subtitle.white { color: rgba(255,255,255,0.85); }
.section-divider {
  width: 6rem;
  height: 4px;
  background: var(--secondary);
  border-radius: var(--radius-full);
  margin: 0 auto 1.5rem;
}

/* =====================================================
   SERVICE CARDS
   ===================================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: block;
}
.service-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--gray-700);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.service-card:hover h3 { color: var(--primary); }
.service-card p {
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-card ul {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.service-card ul li { margin-bottom: 0.25rem; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.service-card .learn-more:hover { color: var(--blush-pop); }

/* Card color variants */
.card-v1 { background: linear-gradient(135deg, rgba(205,180,219,0.3) 0%, rgba(255,200,221,0.2) 100%); }
.card-v2 { background: linear-gradient(135deg, rgba(255,175,204,0.3) 0%, rgba(205,180,219,0.2) 100%); }
.card-v3 { background: linear-gradient(135deg, rgba(255,200,221,0.3) 0%, rgba(255,175,204,0.2) 100%); }
.card-icon-v1 { background: rgba(205,180,219,0.4); }
.card-icon-v2 { background: rgba(255,175,204,0.4); }
.card-icon-v3 { background: rgba(255,200,221,0.4); }

/* =====================================================
   BLOG CARDS
   ===================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.blog-card-img {
  position: relative;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  color: var(--gray-800);
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.2s;
}
.blog-card:hover h3 { color: var(--primary); }
.blog-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-card-author-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gray-600);
}
.blog-card-author span {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.blog-card-read {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.blog-card-read:hover { color: var(--blush-pop); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  color: #facc15;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.testimonial-card blockquote {
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gray-600);
}
.testimonial-author h4 {
  font-family: var(--font-poppins);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.125rem;
}
.testimonial-author p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* =====================================================
   TWO COLUMN CONTENT LAYOUTS
   ===================================================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .two-col { grid-template-columns: repeat(2, 1fr); } }

.two-col-img {
  position: relative;
}
.two-col-img img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.img-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.img-badge-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}
.img-badge p:first-child { font-family: var(--font-poppins); font-weight: 700; color: var(--gray-900); }
.img-badge p:last-child  { font-size: 0.875rem; color: var(--gray-600); }

.badge-bottom-left { bottom: -1.5rem; left: -1.5rem; }
.badge-top-right   { top: -1.5rem; right: -1.5rem; }

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-info-card {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 2rem;
  border-radius: var(--radius-2xl);
  margin-bottom: 2rem;
}
.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  font-size: 1.25rem;
  color: var(--gray-700);
}
.contact-info-icon-1 { background: rgba(205,180,219,0.2); }
.contact-info-icon-2 { background: rgba(255,175,204,0.2); }
.contact-info-icon-3 { background: rgba(255,200,221,0.2); }
.contact-info-item h4 { font-size: 0.95rem; color: var(--gray-900); margin-bottom: 0.25rem; }
.contact-info-item p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

.whatsapp-btn {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #22c55e;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  background: #4ade80;
  box-shadow: 0 4px 15px rgba(34,197,94,0.3);
  transform: translateY(-2px);
  color: var(--white);
}

.map-placeholder {
  height: 18rem;
  background: var(--gray-100);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background-image: url('https://public.readdy.ai/gen_page/map_placeholder_1280x720.png');
  background-size: cover;
  background-position: center;
}

/* Contact Form */
.contact-form-card {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 2rem;
  border-radius: var(--radius-2xl);
}
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.form-label {
  display: block;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-inter);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(17,138,178,0.1);
}
.form-select { appearance: none; cursor: pointer; }
.form-select-wrapper {
  position: relative;
}
.form-select-wrapper i {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}
.form-textarea { resize: none; }

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: 1rem;
}
.form-success i { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.form-success p { font-weight: 600; }
.form-success span { font-size: 0.875rem; margin-top: 0.25rem; display: block; }

/* =====================================================
   VALUE CARDS
   ===================================================== */

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: box-shadow 0.3s;
}
.value-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--gray-700);
}
.value-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.value-card p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* =====================================================
   TEAM GRID
   ===================================================== */

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card { text-align: center; }
.team-avatar-wrap {
  position: relative;
  width: 13rem;
  height: 13rem;
  margin: 0 auto 1.5rem;
}
.team-avatar-wrap .avatar-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.team-avatar-wrap img {
  position: relative;
  width: 13rem;
  height: 13rem;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 4px solid var(--white);
}
.team-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.team-card .role { color: var(--primary); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; max-width: 18rem; margin: 0 auto; }

/* =====================================================
   STATS BAND
   ===================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-number {
  font-family: var(--font-poppins);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* =====================================================
   CTA BAND
   ===================================================== */

.cta-band {
  background: var(--primary);
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-poppins);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta-band p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  max-width: 40rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .cta-buttons { flex-direction: row; justify-content: center; } }

/* =====================================================
   PROCESS / HOW IT WORKS
   ===================================================== */

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-card { text-align: center; }
.process-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  color: var(--gray-700);
  margin: 0 auto 1.5rem;
}
.process-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.process-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }

.journey-box {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 2rem;
  border-radius: var(--radius-2xl);
  margin-top: 4rem;
}
.journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .journey-grid { grid-template-columns: repeat(2, 1fr); } }

.journey-steps { display: flex; flex-direction: column; gap: 1rem; }
.journey-step { display: flex; align-items: flex-start; gap: 1rem; }
.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(17,138,178,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.125rem;
}
.journey-step h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.journey-step p  { font-size: 0.875rem; color: var(--gray-600); }
.journey-img img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-xl);
}

/* =====================================================
   FILTER TABS
   ===================================================== */

.filter-bar {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 64px;
  z-index: 50;
}
.filter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--gray-100);
  color: var(--gray-600);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-inter);
}
.filter-btn:hover { background: rgba(205,180,219,0.3); }
.filter-btn.active { background: var(--primary); color: var(--white); }

/* =====================================================
   NEWSLETTER
   ===================================================== */

.newsletter-section {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}
.newsletter-section h2 {
  font-family: var(--font-poppins);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.newsletter-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  font-size: 0.95rem;
  color: var(--gray-800);
  outline: none;
}
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
.newsletter-form button {
  background: var(--white);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font-inter);
}
.newsletter-form button:hover { background: rgba(205,180,219,0.2); }
.newsletter-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 1rem; }

/* =====================================================
   BLOG SEARCH
   ===================================================== */

.blog-search-wrap {
  max-width: 28rem;
  margin: 2rem auto 0;
  position: relative;
}
.blog-search-wrap input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-300);
  outline: none;
  font-size: 0.95rem;
  color: var(--gray-700);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-family: var(--font-inter);
}
.blog-search-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(17,138,178,0.1);
}
.blog-search-btn {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1rem;
}

/* =====================================================
   BLOG FEATURED POST
   ===================================================== */

.featured-post-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(205,180,219,0.1) 0%, rgba(255,200,221,0.1) 100%);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .featured-post-wrap { grid-template-columns: repeat(2, 1fr); } }
.featured-post-wrap > img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.featured-post-body { padding: 1.5rem; }
.featured-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.featured-post-meta .tag {
  padding: 0.25rem 0.75rem;
  background: rgba(205,180,219,0.3);
  color: var(--gray-700);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
}
.featured-post-meta span { font-size: 0.75rem; color: var(--gray-500); }
.featured-post-body h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.featured-post-body p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.featured-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.post-author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-600);
}
.post-author-name { font-size: 0.875rem; font-weight: 500; color: var(--gray-900); }
.post-author-role { font-size: 0.75rem; color: var(--gray-500); }

/* =====================================================
   PAGINATION
   ===================================================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  background: none;
  transition: all 0.2s;
  font-family: var(--font-inter);
}
.page-btn:hover { background: rgba(205,180,219,0.2); }
.page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* =====================================================
   BLOG DETAIL / SINGLE POST
   ===================================================== */

.post-hero-img {
  width: 100%;
  height: clamp(15rem, 40vw, 30rem);
  object-fit: cover;
  border-radius: var(--radius-2xl);
  margin-bottom: 2rem;
}

.post-content {
  max-width: 52rem;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.85;
}
.post-content h2,
.post-content h3 {
  font-family: var(--font-poppins);
  color: var(--gray-900);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.post-content h2 { font-size: 1.5rem; }
.post-content h3 { font-size: 1.2rem; }
.post-content p  { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.5rem; }
.post-content blockquote {
  border-left: 4px solid var(--secondary);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gray-600);
}
.post-content a { color: var(--primary); text-decoration: underline; }

.post-header { max-width: 52rem; margin: 0 auto 2rem; }
.post-header .tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(205,180,219,0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 1rem;
}
.post-header h1 { font-size: clamp(1.875rem, 4vw, 2.5rem); margin-bottom: 1.25rem; }
.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.post-meta-row .author { display: flex; align-items: center; gap: 0.5rem; }
.post-meta-row .author img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}
.post-meta-row span { font-size: 0.875rem; color: var(--gray-500); }

/* =====================================================
   SERVICE DETAIL PAGE
   ===================================================== */

.service-detail-hero {
  background: linear-gradient(135deg, rgba(205,180,219,0.2) 0%, rgba(255,200,221,0.1) 100%);
  padding: 5rem 1.5rem;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .service-detail-grid { grid-template-columns: 7fr 5fr; } }

.service-detail-body h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}
.service-detail-body p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-detail-body .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.service-detail-img img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.benefit-check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(17,138,178,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 0.75rem;
  margin-top: 0.125rem;
}
.benefit-item p { font-size: 0.95rem; color: var(--gray-700); }

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

#site-footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 3rem 1.5rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand h3 {
  font-family: var(--font-poppins);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1.125rem;
  transition: background 0.2s;
  text-decoration: none;
}
.footer-social-btn:hover { background: var(--gray-700); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-poppins);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { color: var(--gray-400); font-size: 0.875rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--gray-400); font-size: 0.875rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* =====================================================
   HERO SECTION (Home)
   ===================================================== */

.home-hero {
  position: relative;
  min-height: 100vh;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.home-hero-inner {
  width: 100%;
  padding: 5rem 1.5rem;
}
.home-hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .home-hero-grid { grid-template-columns: repeat(2, 1fr); } }

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.hero-h1 {
  font-family: var(--font-poppins);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.hero-h1 span {
  display: block;
  background: linear-gradient(90deg, var(--secondary), var(--blush-pop), var(--pastel-petal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 36rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.hero-badge { text-align: center; }
.hero-badge-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
}
.hero-badge span { font-size: 0.875rem; color: var(--gray-600); font-weight: 500; }

.hero-img-wrap { position: relative; }
.hero-img-inner { position: relative; }
.hero-img-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(205,180,219,0.05) 0%, rgba(255,200,221,0.05) 50%, rgba(255,175,204,0.05) 100%);
  border-radius: var(--radius-3xl);
}
.hero-img-inner img {
  position: relative;
  width: 100%;
  height: clamp(24rem, 50vw, 37rem);
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.hero-img-badge-1 {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
}
.hero-img-badge-2 {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
}

.hero-orb-1 {
  position: absolute;
  top: 5rem;
  right: 5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(205,180,219,0.08);
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  bottom: 10rem;
  left: 5rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255,200,221,0.08);
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

/* =====================================================
   WORDPRESS NATIVE - ALIGNMENT HELPERS
   ===================================================== */

.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--gray-500); text-align: center; margin-top: 0.5rem; }

/* =====================================================
   MORE SERVICES CTA BOX
   ===================================================== */

.more-services-box {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(205,180,219,0.2) 0%, rgba(255,200,221,0.1) 100%);
  border-radius: var(--radius-3xl);
  margin-top: 4rem;
}
.more-services-box i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.more-services-box h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.more-services-box p { color: var(--gray-600); margin-bottom: 1.5rem; max-width: 32rem; margin-left: auto; margin-right: auto; }

/* =====================================================
   RESPONSIVE HELPERS
   ===================================================== */

.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: block; } }
