/*
Theme Name: Flow Seoul
Theme URI: https://flowseoul.com
Author: Flow Seoul
Author URI: https://flowseoul.com
Description: K-Wellness Body Care Studio - A modern WordPress theme for spa and wellness businesses
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flowseoul
*/

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul {
  list-style: none;
}

/* Colors */
:root {
  --olive-100: #eef0e9;
  --olive-400: #a8b092;
  --olive-500: #9caf88;
  --olive-600: #7a8a66;
  --olive-700: #616e51;
  --gray-50: #f9fafb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --purple-500: #a855f7;
  --orange-400: #fb923c;
  --red-500: #ef4444;
}

/* Utilities */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-sm {
  max-width: 672px;
  margin: 0 auto;
  padding: 0 1rem;
}
.text-center {
  text-align: center;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.hidden {
  display: none;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.grid {
  display: grid;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-x-4 > * + * {
  margin-left: 1rem;
}
.space-x-8 > * + * {
  margin-left: 2rem;
}
.w-full {
  width: 100%;
}
.w-fit {
  width: fit-content;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-40 {
  height: 10rem;
}
.h-48 {
  height: 12rem;
}
.min-h-screen {
  min-height: 100vh;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.overflow-hidden {
  overflow: hidden;
}
.object-cover {
  object-fit: cover;
}
.transition {
  transition: all 0.3s ease;
}
.cursor-pointer {
  cursor: pointer;
}
.resize-none {
  resize: none;
}
.outline-none {
  outline: none;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.aspect-square {
  aspect-ratio: 1/1;
}
.italic {
  font-style: italic;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.border-t {
  border-top: 1px solid #e5e7eb;
}

/* Text sizes */
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}

/* Margins & Paddings */
.m-0 {
  margin: 0;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.p-3 {
  padding: 0.75rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pt-16 {
  padding-top: 4rem;
}

/* Colors */
.text-white {
  color: #fff;
}
.text-gray-300 {
  color: #d1d5db;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-500 {
  color: #6b7280;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-700 {
  color: #374151;
}
.text-gray-900 {
  color: #111827;
}
.text-olive-400 {
  color: var(--olive-400);
}
.text-olive-600 {
  color: var(--olive-600);
}
.text-yellow-400 {
  color: #facc15;
}
.bg-white {
  background-color: #fff;
}
.bg-gray-50 {
  background-color: #f9fafb;
}
.bg-gray-300 {
  background-color: #d1d5db;
}
.bg-gray-800 {
  background-color: #1f2937;
}
.bg-gray-900 {
  background-color: #111827;
}
.bg-olive-100 {
  background-color: var(--olive-100);
}
.bg-olive-500 {
  background-color: var(--olive-500);
}
.bg-green-500 {
  background-color: var(--green-500);
}
.bg-blue-500 {
  background-color: var(--blue-500);
}
.bg-blue-600 {
  background-color: var(--blue-600);
}
.bg-yellow-400 {
  background-color: var(--yellow-400);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.header .container {
  max-width: 1280px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.header-logo {
  height: 2.5rem;
  cursor: pointer;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
.header-nav a {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}
.header-nav a:hover {
  color: var(--olive-600);
}
.mobile-menu-btn {
  display: block;
  color: #374151;
  font-size: 1.25rem;
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: #374151;
  font-weight: 500;
}
.mobile-menu a:hover {
  color: var(--olive-600);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-top: 4rem;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.7)
    ),
    url("https://nfscieyh.gensparkspace.com/images/hero-background.jpg");
  background-size: cover;
  background-position: center;
}
.hero-content {
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-primary {
  background: var(--olive-500);
  color: #fff;
}
.btn-primary:hover {
  background: var(--olive-600);
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #111827;
}
.btn-green {
  background: var(--green-500);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-600);
}

/* Sections */
.section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.section-header p {
  color: #4b5563;
  font-size: 1.125rem;
}

/* Feature Cards */
.features-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: #f9fafb;
  transition: box-shadow 0.3s;
}
.feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--olive-100);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.feature-icon i {
  font-size: 1.5rem;
  color: var(--olive-600);
}
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #4b5563;
}

/* Experience Cards */
.experience-grid {
  display: grid;
  gap: 1.5rem;
}
.experience-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.experience-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.experience-card .icon {
  width: 3rem;
  height: 3rem;
  background: var(--olive-100);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.experience-card .icon i {
  font-size: 1.25rem;
  color: var(--olive-600);
}
.experience-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.experience-card p {
  color: #4b5563;
  font-size: 0.875rem;
}

/* Service Cards */
.services-grid {
  display: grid;
  gap: 2rem;
}
.service-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.service-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
.service-card-content {
  padding: 1.5rem;
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: #4b5563;
  font-size: 0.875rem;
}

/* Price List */
.price-section {
  margin-top: 5rem;
  background: #f9fafb;
  border-radius: 1.5rem;
  padding: 2rem;
}
.price-grid {
  display: grid;
  gap: 2rem;
}
.price-grid-center {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.price-grid-center .price-card {
  width: 100%;
  max-width: 600px;
}
.price-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.price-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.price-card > p {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.price-card img {
  width: 100%;
  border-radius: 0.5rem;
}

/* Testimonials */
.testimonials {
  background: #111827;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--olive-400);
  margin-bottom: 0.5rem;
}
.stat-label {
  color: #9ca3af;
}
.stars {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.stars i {
  color: #facc15;
}
.quick-reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.quick-reviews span {
  background: #1f2937;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}
.reviews-grid {
  display: grid;
  gap: 2rem;
}
.review-card {
  background: #1f2937;
  padding: 1.5rem;
  border-radius: 1rem;
}
.review-card .stars {
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.review-card p {
  color: #d1d5db;
  margin-bottom: 1rem;
}
.review-card .author {
  color: var(--olive-400);
  font-weight: 600;
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}
.blog-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.blog-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.blog-card img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}
.blog-card-content {
  padding: 1.25rem;
}
.blog-card .date {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.blog-card p {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.blog-card button {
  color: var(--olive-600);
  font-weight: 600;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
}
.blog-card button:hover {
  color: var(--olive-700);
}

/* Blog Hero Section */
.blog-hero {
  background: linear-gradient(135deg, var(--olive-100) 0%, rgba(156, 175, 136, 0.1) 100%);
  padding: 8rem 0;
  margin-top: 4rem;
}
.blog-hero-content {
  text-align: center;
}
.blog-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.blog-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
}

/* Breadcrumbs */
.breadcrumb-section {
  background: #f9fafb;
  padding: 1.5rem 0;
  margin-top: 4rem;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.breadcrumbs a {
  color: var(--olive-600);
  transition: color 0.3s;
}
.breadcrumbs a:hover {
  color: var(--olive-700);
}
.breadcrumbs .separator {
  color: var(--gray-300);
}
.breadcrumbs .current {
  color: var(--gray-700);
  font-weight: 600;
}

/* Post Header */
.post-header {
  padding: 3rem 0;
}
.post-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.post-date,
.post-reading-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post-date i,
.post-reading-time i {
  color: var(--olive-500);
}
.post-separator {
  color: var(--gray-300);
}
.post-category {
  color: var(--olive-600);
  font-weight: 600;
  transition: color 0.3s;
}
.post-category:hover {
  color: var(--olive-700);
}

/* Featured Image */
.post-featured-image {
  padding: 2rem 0;
  margin-bottom: 2rem;
}
.featured-image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Post Content */
.post-content {
  padding: 2rem 0;
}
.post-content {
  line-height: 1.8;
}
.post-content p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  color: var(--gray-700);
}
.post-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 2rem 0 1rem 0;
  border-bottom: 3px solid var(--olive-500);
  padding-bottom: 0.5rem;
}
.post-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 1.5rem 0 0.75rem 0;
}
.post-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 1.25rem 0 0.75rem 0;
}
.post-content h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 1rem 0 0.5rem 0;
}
.post-content h6 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 1rem 0 0.5rem 0;
}
.post-content ul,
.post-content ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
}
.post-content li {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}
.post-content ul li {
  list-style: disc;
}
.post-content ol li {
  list-style: decimal;
}
.post-content blockquote {
  border-left: 4px solid var(--olive-500);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--olive-100);
  font-style: italic;
  color: var(--gray-700);
}
.post-content a {
  color: var(--olive-600);
  text-decoration: underline;
  transition: color 0.3s;
}
.post-content a:hover {
  color: var(--olive-700);
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 2rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.post-content em {
  font-style: italic;
}
.post-content strong {
  font-weight: 700;
}
.post-content code {
  background: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.875rem;
}
.post-content pre {
  background: #1f2937;
  color: #e5e7eb;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.post-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* Tags */
.post-tags {
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.tags-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.tags-wrapper strong {
  margin-top: 0.25rem;
}
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--olive-100);
  color: var(--olive-700);
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: all 0.3s;
}
.tag-pill:hover {
  background: var(--olive-500);
  color: #fff;
}

/* Blog Card Category Tag */
.blog-category-tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--olive-100);
  color: var(--olive-700);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s;
}
.blog-category-tag:hover {
  background: var(--olive-500);
  color: #fff;
}

/* Blog Card Improvements */
.blog-card-image-link {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}
.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}
.blog-card-title {
  margin-top: 0;
}
.blog-card-title a {
  color: var(--gray-900);
  transition: color 0.3s;
}
.blog-card-title a:hover {
  color: var(--olive-600);
}
.blog-card-excerpt {
  color: var(--gray-600);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.blog-date {
  color: var(--gray-500);
}
.blog-reading-time {
  color: var(--gray-500);
}
.blog-separator {
  color: var(--gray-300);
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--olive-600);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
}
.blog-read-more:hover {
  color: var(--olive-700);
  gap: 0.75rem;
}
.blog-read-more i {
  font-size: 0.75rem;
}

/* Post Navigation */
.post-navigation {
  padding: 3rem 0;
}
.nav-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.nav-item {
  flex: 1;
}
.nav-item.prev-post {
  text-align: left;
}
.nav-item.next-post {
  text-align: right;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  transition: all 0.3s;
}
.nav-link:hover {
  background: var(--olive-100);
  gap: 1.5rem;
}
.nav-item.next-post .nav-link {
  flex-direction: row-reverse;
}
.nav-link small {
  display: block;
  color: var(--gray-500);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-link strong {
  display: block;
  color: var(--gray-900);
  font-size: 1rem;
  line-height: 1.4;
}
.nav-link i {
  color: var(--olive-500);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Related Posts Section */
.related-posts {
  background: var(--olive-100);
  padding: 4rem 0;
  margin: 3rem 0;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--gray-900);
  margin-bottom: 2rem;
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  font-weight: 600;
  transition: all 0.3s;
}
.page-numbers:hover {
  background: var(--olive-500);
  border-color: var(--olive-500);
  color: #fff;
}
.page-numbers.current {
  background: var(--olive-500);
  border-color: var(--olive-500);
  color: #fff;
}
.page-numbers.prev,
.page-numbers.next {
  width: auto;
  padding: 0 1rem;
  gap: 0.5rem;
}
.page-numbers.prev i,
.page-numbers.next i {
  font-size: 0.875rem;
}

/* Back to Blog */
.back-to-blog {
  padding: 3rem 0;
  text-align: center;
}

/* No Posts Message */
.no-posts-message {
  text-align: center;
  padding: 4rem 0;
}
.no-posts-message h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.no-posts-message p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--olive-500);
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--olive-600);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--olive-600);
  border: 2px solid var(--olive-500);
}
.btn-outline:hover {
  background: var(--olive-100);
  color: var(--olive-700);
  border-color: var(--olive-700);
  transform: none;
}

/* Booking */
.booking-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}
.step {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.step.active {
  background: var(--olive-500);
  color: #fff;
}
.step.inactive {
  background: #d1d5db;
  color: #4b5563;
}
.step-line {
  width: 4rem;
  height: 4px;
  background: #d1d5db;
}
.booking-form {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 2rem;
}
.booking-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  color: #374151;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--olive-500);
  box-shadow: 0 0 0 2px rgba(156, 175, 136, 0.2);
}
.form-submit {
  width: 100%;
  background: var(--olive-500);
  color: #fff;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.form-submit:hover {
  background: var(--olive-600);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-item .icon {
  width: 3rem;
  height: 3rem;
  background: var(--olive-100);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}
.contact-item .icon i {
  color: var(--olive-600);
}
.contact-item h4 {
  font-weight: 600;
  color: #111827;
}
.contact-item p {
  color: #4b5563;
}
.contact-buttons {
  margin-top: 2rem;
}
.contact-buttons h4 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.contact-btn {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  width: fit-content;
  transition: all 0.3s;
}
.contact-btn i {
  font-size: 1.25rem;
  margin-right: 0.75rem;
}
.contact-btn .label {
  font-weight: 600;
}
.contact-btn .sublabel {
  font-size: 0.75rem;
  opacity: 0.8;
}
.contact-btn.whatsapp {
  background: var(--green-500);
  color: #fff;
}
.contact-btn.whatsapp:hover {
  background: var(--green-600);
}
.contact-btn.paypal {
  background: var(--blue-500);
  color: #fff;
}
.contact-btn.paypal:hover {
  background: var(--blue-600);
}
.social-links {
  margin-top: 2rem;
}
.social-links h4 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.social-icons {
  display: flex;
  gap: 1rem;
}
.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.social-icon:hover {
  opacity: 0.8;
}
.social-icon.kakao {
  background: var(--yellow-400);
  color: #111827;
}
.social-icon.instagram {
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
  color: #fff;
}
.social-icon.facebook {
  background: var(--blue-600);
  color: #fff;
}
.contact-form-box {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.contact-form-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: #111827;
  color: #fff;
  padding: 4rem 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-logo {
  height: 2.5rem;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-desc {
  color: #9ca3af;
}
.footer h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer ul {
  color: #9ca3af;
}
.footer ul li {
  margin-bottom: 0.5rem;
}
.footer ul a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: #1f2937;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.footer-social a:hover {
  background: #374151;
}
.footer-bottom {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Instagram Feed */
.instagram-section {
  background: #111827;
  padding: 3rem 0;
}
.instagram-section h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.instagram-section .handle {
  color: #9ca3af;
  text-align: center;
  margin-bottom: 2rem;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.instagram-item {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  overflow: hidden;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.instagram-item:hover {
  opacity: 1;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instagram-item:nth-child(1) {
  background: linear-gradient(135deg, var(--pink-500), var(--orange-400));
}
.instagram-item:nth-child(2) {
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
}
.instagram-item:nth-child(3) {
  background: linear-gradient(135deg, var(--pink-500), var(--red-500));
}
.instagram-item:nth-child(4) {
  background: linear-gradient(135deg, var(--orange-400), var(--yellow-400));
}
.instagram-item:nth-child(5) {
  background: linear-gradient(135deg, var(--pink-400), var(--purple-500));
  display: none;
}
.instagram-item:nth-child(6) {
  background: linear-gradient(135deg, var(--red-500), var(--pink-500));
  display: none;
}
.instagram-follow {
  text-align: center;
  margin-top: 1.5rem;
}
.instagram-follow a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.instagram-follow a:hover {
  color: var(--pink-400);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 40;
}
.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.floating-btn.whatsapp {
  background: var(--green-500);
  color: #fff;
  padding: 0.75rem 1.5rem;
}
.floating-btn.whatsapp:hover {
  background: var(--green-600);
}
.floating-btn.whatsapp i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}
.floating-btn.kakao {
  background: var(--yellow-400);
  color: #111827;
  width: 3.5rem;
  height: 3.5rem;
}
.floating-btn.kakao:hover {
  background: var(--yellow-500);
}
.floating-btn.kakao i {
  font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 639px) {
  .blog-hero h1 {
    font-size: 1.875rem;
  }
  .post-title {
    font-size: 1.5rem;
  }
  .nav-posts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .nav-item.next-post .nav-link {
    flex-direction: row;
  }
  .breadcrumbs {
    font-size: 0.75rem;
  }
}
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .hero h1 {
    font-size: 4.5rem;
  }
  .section-header h2 {
    font-size: 3rem;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .instagram-item:nth-child(5),
  .instagram-item:nth-child(6) {
    display: block;
  }
  .stat-number {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
