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

main,
main * {
  all: revert;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #1e2a22;
  line-height: 1.8;
  overflow-x: hidden;
  background: #f0fafa url("../images/background.png") no-repeat center center fixed;
  background-size: cover;
}

.sk-container {
  width: 100%;
  max-width: none;
  padding: 0;
}

section {
  padding: 100px 0;
}

section:has(> .hero) {
  padding: 0;
}

.section-title {
  text-align: center;
  color: #00897b;
  font-size: 2.2rem;
  margin-bottom: 50px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #00acc1;
  margin: 15px auto;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
header .main-logo {
  height: 45px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}
nav li a {
  text-decoration: none;
  font-weight: bold;
  color: #00acc1;
  font-size: 0.9rem;
  transition: 0.3s;
}
nav li a:hover {
  color: #00897b;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger-btn i {
  font-size: 1.5rem;
  color: #00acc1;
}

.hero {
  min-height: 80svh;
  height: auto;
  box-sizing: border-box;
  padding: clamp(56px, 10svh, 100px) 5%;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../images/hiro_area.jpg") no-repeat center/cover;
  background-color: #e0f2f1;
}
.hero .hero-content {
  padding: 40px 60px;
  max-width: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  transition: all 0.6s ease;
}
.hero .hero-content:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.hero .hero-content .title,
.hero .hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  color: #00897b;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.hero-simple {
  height: 40vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 137, 123, 0.15) 0%, rgba(0, 172, 193, 0.15) 100%);
  border-bottom: 3px solid #00acc1;
}
.hero-simple .hero-content {
  padding-left: 5%;
  width: 100%;
  max-width: none;
}
.hero-simple .hero-content .title {
  font-size: 2.5rem;
  color: #00897b;
  margin-bottom: 15px;
}
.hero-simple .hero-content .hero-desc {
  font-size: 1rem;
  color: #555;
}

.hero-desc {
  font-size: 1.2rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.hero-desc p {
  margin: 0 0 30px;
}

@media (max-width: 1023px) {
  .hero .hero-content {
    padding: 30px 40px;
    backdrop-filter: blur(6px);
  }
}
@media (max-width: 767px) {
  .hero {
    justify-content: center;
    padding: 56px 20px;
  }
  .hero .hero-content {
    padding: 20px 30px;
    backdrop-filter: blur(4px);
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 932px) and (orientation: landscape) {
  .hero {
    min-height: calc(100svh - 60px);
    padding: 24px 20px;
  }
  .hero .hero-content {
    padding: 18px 24px;
  }
  .hero .hero-content .title,
  .hero .hero-content h1 {
    font-size: clamp(1.45rem, 4vw, 2rem);
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .hero-desc p {
    margin-bottom: 14px;
  }
  .hero .btn-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}
@supports not (backdrop-filter: blur(8px)) {
  .hero .hero-content {
    background-color: rgba(255, 255, 255, 0.4);
  }
}
.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00796b, #00acc1);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(0, 137, 123, 0.2);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 137, 123, 0.4);
}

.btn-outline {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 35px;
  border: 2px solid #00acc1;
  color: #00acc1;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}
.btn-outline:hover {
  background: #00acc1;
  color: #fff;
}

.news-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.news-item {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  font-size: 0.95rem;
}

.news-date {
  width: 120px;
  color: #00acc1;
  font-weight: bold;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.reason-card {
  background: rgba(255, 255, 255, 0.4);
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.reason-card h3 {
  color: #00897b;
  margin: 15px 0;
}

.reason-icon {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#philosophy, #topMenu {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.philosophy-content, .topMenu-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.philosophy-block {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.philosophy-block:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.philosophy-block h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #00897b;
  line-height: 1.6;
}
.philosophy-block p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.philosophy-block p strong {
  color: #00acc1;
  font-weight: 600;
}

#portfolio {
  padding: 100px 0;
}
#portfolio .sk-container {
  margin-bottom: 50px;
}

.portfolio-wrapper {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}

.portfolio-grid {
  display: flex;
  gap: 40px;
  width: 100%;
  opacity: 1;
  padding: 40px 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.portfolio-grid.is-dragging {
  cursor: grabbing;
}
.portfolio-grid.is-dragging .portfolio-card {
  cursor: grabbing;
}

.portfolio-card {
  position: relative;
  --portfolio-card-base-width: 300px;
  --portfolio-card-expanded-width: 600px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  flex: 0 0 var(--portfolio-card-base-width);
  min-height: 350px;
  transition: flex-basis 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), margin 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: flex-basis, margin, transform;
}

.portfolio-card.is-expanded {
  --portfolio-card-expanded-width: min(600px, calc(100vw - 40px));
  flex-basis: var(--portfolio-card-expanded-width);
  margin-inline: calc((var(--portfolio-card-base-width) - var(--portfolio-card-expanded-width)) / 2);
  transform: translateY(-18px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
  z-index: 1;
}

@media (max-width: 360px) {
  .portfolio-card {
    --portfolio-card-base-width: min(300px, calc(100vw - 40px));
  }
}
.portfolio-card__image {
  position: relative;
  isolation: isolate;
  height: 200px;
  background-color: #ddd;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  --portfolio-split-left: 57%;
  --portfolio-split-right: 43%;
}
.portfolio-card__image span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #888;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.78);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.portfolio-card__image.portfolio-before-after::after,
.portfolio-card__image:has(.portfolio-after)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(calc(var(--portfolio-split-left) - 2px) 0, calc(var(--portfolio-split-left) + 2px) 0, calc(var(--portfolio-split-right) + 2px) 100%, calc(var(--portfolio-split-right) - 2px) 100%);
  filter: drop-shadow(0 0 5px rgba(0, 172, 193, 0.45));
}
.portfolio-card__image.portfolio-before-after .portfolio-after,
.portfolio-card__image:has(.portfolio-after) .portfolio-after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.03);
  clip-path: polygon(var(--portfolio-split-left) 0, 100% 0, 100% 100%, var(--portfolio-split-right) 100%);
}
.portfolio-card__image.portfolio-before-after .elementor-widget,
.portfolio-card__image.portfolio-before-after .elementor-widget-container,
.portfolio-card__image:has(.portfolio-after) .elementor-widget,
.portfolio-card__image:has(.portfolio-after) .elementor-widget-container {
  height: 100%;
}

.portfolio-card__content {
  padding: 20px;
}

.portfolio-card__title {
  color: #00796b;
  margin-bottom: 10px;
}

.portfolio-card__description {
  color: #555;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about-info {
  flex: 1.2;
}

.about-list {
  width: 100%;
}

.about-list__row {
  display: flex;
  border-bottom: 1px solid rgba(0, 137, 123, 0.1);
}

.about-list__label,
.about-list__value {
  padding: 15px;
  text-align: left;
}

.about-list__label {
  flex: 0 0 30%;
  width: 30%;
  color: #00796b;
  font-weight: 700;
}

.about-list__value {
  flex: 1;
}

@media (max-width: 600px) {
  .about-list__row {
    flex-direction: column;
    gap: 4px;
    padding: 15px 0;
  }
  .about-list__label,
  .about-list__value {
    padding: 0;
  }
  .about-list__label {
    width: auto;
  }
}
.map-box {
  flex: 1;
  min-width: 0;
  background: #e0e0e0;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
}

.main-footer {
  background: radial-gradient(circle at 50% 0%, rgba(128, 203, 196, 0.25) 0%, transparent 70%), linear-gradient(180deg, #00695c 0%, #004d40 40%, #002828 100%);
  color: #fff;
  padding: 64px 5% 28px;
}
.main-footer h4 {
  margin-bottom: 15px;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 620px;
}

.footer-logo {
  height: 56px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.9;
  margin: 0;
}

.footer-nav {
  width: 100%;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu li {
  margin: 0;
}
.footer-menu li a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: 0.3s;
  opacity: 0.88;
}
.footer-menu li a:hover {
  color: #b2ebf2;
  opacity: 1;
}

.copyright {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
  padding-top: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}

#contact {
  background: linear-gradient(135deg, rgba(0, 137, 123, 0.05) 0%, rgba(0, 172, 193, 0.05) 100%);
  padding: 100px 0;
}

.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 60px;
  line-height: 1.8;
}

.contact-emergency {
  width: 100%;
  max-width: none;
  margin: 0 0 60px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 152, 0, 0.08) 100%);
  padding: 30px;
  border-left: 5px solid #ff6b6b;
  border-radius: 12px;
  text-align: center;
}

.emergency-title {
  color: #ff6b6b;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.emergency-text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.emergency-phone a {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: bold;
  color: #ff6b6b;
  text-decoration: none;
  padding: 12px 30px;
  border: 2px solid #ff6b6b;
  border-radius: 8px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.emergency-phone a:hover {
  background: #ff6b6b;
  color: #fff;
}

.emergency-hours {
  font-size: 0.85rem;
  color: #999;
  margin-top: 15px;
}

#privacy-policy {
  padding: 80px 0;
}

.privacy-content {
  width: 100%;
  max-width: none;
  margin: 0;
}

.policy-body h2 {
  font-size: 1.4rem;
  color: #00897b;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #00acc1;
}
.policy-body h2:first-child {
  margin-top: 0;
}
.policy-body p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}
.policy-body ul {
  list-style-position: inside;
  margin: 15px 0 25px 20px;
  color: #555;
  line-height: 1.8;
}
.policy-body ul li {
  margin-bottom: 10px;
}

.contact-info-box {
  background: #f9f9f9;
  border-left: 5px solid #00acc1;
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
}
.contact-info-box p {
  margin: 8px 0;
  color: #1e2a22;
  font-size: 0.95rem;
}
.contact-info-box p a {
  color: #00acc1;
  text-decoration: none;
  transition: 0.3s;
}
.contact-info-box p a:hover {
  text-decoration: underline;
}
.contact-info-box strong {
  color: #00897b;
  font-weight: 600;
}

.contact-cta-box {
  background: linear-gradient(135deg, rgba(0, 137, 123, 0.1) 0%, rgba(0, 172, 193, 0.1) 100%);
  border: 2px solid #00acc1;
  padding: 40px;
  margin: 30px 0;
  border-radius: 12px;
  text-align: center;
}
.contact-cta-box p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-contact-form {
  display: inline-block;
  padding: 16px 50px;
  background: linear-gradient(135deg, #00796b, #00acc1);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.05rem;
  box-shadow: 0 10px 20px rgba(0, 137, 123, 0.2);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-contact-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 137, 123, 0.3);
}
.btn-contact-form:active {
  transform: translateY(-1px);
}

.policy-updated {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.policy-updated p {
  font-size: 0.85rem;
  color: #999;
}

.site-main--content {
  background: rgba(240, 250, 250, 0.8);
}

.page-hero {
  min-height: 320px;
  height: auto;
  padding: 80px 0;
}

.page-kicker {
  color: #00acc1;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.archive-description p {
  margin: 0;
}

.content-section {
  padding: 80px 5%;
}

.content-container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.content-container--narrow {
  width: min(880px, 100%);
}

.post-list {
  display: grid;
  gap: 28px;
}

.post-card {
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 172, 193, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 137, 123, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 137, 123, 0.14);
}

.post-card__image {
  position: relative;
  display: block;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(0, 137, 123, 0.1) 0%, rgba(0, 172, 193, 0.16) 100%);
  color: #00acc1;
  overflow: hidden;
}
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.post-card__image span {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
}

.post-card:hover .post-card__image img {
  transform: scale(1.04);
}

.post-card__body {
  padding: 32px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #555;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.post-meta a {
  color: #00acc1;
  text-decoration: none;
}
.post-meta a:hover {
  text-decoration: underline;
}

.post-meta__divider {
  color: rgba(0, 137, 123, 0.35);
}

.post-card__title {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.45;
  margin: 0 0 14px;
}
.post-card__title a {
  color: #00897b;
  text-decoration: none;
}
.post-card__title a:hover {
  color: #00acc1;
}

.post-card__excerpt {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
}
.post-card__excerpt p {
  margin: 0;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: #00acc1;
  font-weight: 700;
  text-decoration: none;
}
.post-card__link::after {
  content: ">";
  margin-left: 8px;
  font-size: 0.8rem;
}
.post-card__link:hover {
  color: #00897b;
}

.pagination-wrap {
  margin-top: 48px;
  text-align: center;
}
.pagination-wrap .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pagination-wrap .page-numbers {
  min-width: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 172, 193, 0.35);
  border-radius: 8px;
  background: #fff;
  color: #00acc1;
  text-decoration: none;
  font-weight: 700;
}
.pagination-wrap .page-numbers.current, .pagination-wrap .page-numbers:hover {
  background: linear-gradient(135deg, #00796b, #00acc1);
  color: #fff;
}

.empty-state {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 137, 123, 0.08);
  padding: 48px;
  text-align: center;
}
.empty-state h2 {
  color: #00897b;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.empty-state p {
  color: #555;
  margin: 0;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 32px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(0, 172, 193, 0.14);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 137, 123, 0.08);
}

.search-panel__input {
  width: 100%;
  min-height: 52px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  color: #1e2a22;
  font: inherit;
  padding: 0 16px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.search-panel__input:focus {
  border-color: #00acc1;
  box-shadow: 0 0 0 4px rgba(0, 172, 193, 0.1);
  outline: none;
}

.search-panel__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #00796b, #00acc1);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.search-panel__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 137, 123, 0.24);
}

.result-count {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.single-hero .title {
  max-width: 980px;
  line-height: 1.35;
}

.single-meta {
  margin-bottom: 0;
}

.single-featured-image {
  margin: 0 0 40px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(0, 137, 123, 0.12);
}
.single-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.single-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 137, 123, 0.08);
  padding: 48px;
  color: #1e2a22;
  line-height: 1.9;
}
.single-content h2,
.single-content h3,
.single-content h4 {
  color: #00897b;
  line-height: 1.5;
  margin: 2em 0 0.8em;
}
.single-content h2 {
  border-bottom: 2px solid #00acc1;
  font-size: 1.55rem;
  padding-bottom: 10px;
}
.single-content p,
.single-content ul,
.single-content ol,
.single-content figure,
.single-content blockquote {
  margin-bottom: 1.4em;
}
.single-content a {
  color: #00acc1;
}
.single-content img {
  max-width: 100%;
  height: auto;
}

.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  color: #555;
}
.single-tags span {
  color: #00897b;
  font-weight: 700;
}
.single-tags a {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: #00acc1;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 137, 123, 0.08);
}
.single-tags a:hover {
  background: #00acc1;
  color: #fff;
}

.single-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.single-nav a {
  display: block;
  height: 100%;
  padding: 22px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 137, 123, 0.08);
  color: #1e2a22;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.single-nav a:hover {
  transform: translateY(-2px);
  color: #00897b;
  box-shadow: 0 16px 36px rgba(0, 137, 123, 0.14);
}
.single-nav span {
  display: block;
  color: #00acc1;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.single-nav__item--next {
  text-align: right;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form-wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 137, 123, 0.1);
}

.contact-form-wrapper .elementor-shortcode,
.contact-form-wrapper .wpcf7,
.contact-form-wrapper .wpcf7-form {
  width: 100%;
}
.contact-form-wrapper .wpcf7-form {
  margin: 0;
}
.contact-form-wrapper .wpcf7-response-output {
  margin: 28px 0 0;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group p {
  display: contents;
  margin: 0;
}
.form-group br {
  display: none;
}
.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1e2a22;
  font-size: 0.95rem;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.form-required {
  display: inline-block;
  background: #ff6b6b;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1e2a22;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00acc1;
  box-shadow: 0 0 0 4px rgba(0, 172, 193, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}

.form-agreement {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}
.form-agreement p {
  display: contents;
  margin: 0;
}
.form-agreement #privacy-agree {
  margin-top: 5px;
  cursor: pointer;
  accent-color: #00acc1;
}
.form-agreement .wpcf7-form-control-wrap,
.form-agreement .wpcf7-form-control,
.form-agreement .wpcf7-list-item,
.form-agreement label {
  display: block;
  width: 100%;
  margin: 0;
}
.form-agreement label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-agreement .wpcf7-list-item-label {
  display: block;
  flex: 1;
}

.checkbox-label {
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
  line-height: 1.4;
}
.checkbox-label .link-privacy {
  color: #00acc1;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.checkbox-label .link-privacy:hover {
  text-decoration: underline;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 40px;
  background: linear-gradient(135deg, #00796b, #00acc1);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: 20px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 137, 123, 0.3);
}
.form-submit:active {
  transform: translateY(0);
}

.reason-icon i,
.emergency-phone a i {
  background: linear-gradient(135deg, #00695c 0%, #00acc1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 1.3em;
}

@media (max-width: 1023px) {
  header {
    padding: 10px 20px;
  }
  .hamburger-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: 0.3s;
  }
  .hamburger-btn:hover {
    background: rgba(0, 172, 193, 0.1);
  }
  .hamburger-btn:active {
    transform: scale(0.95);
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 0 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
    backdrop-filter: blur(8px);
    pointer-events: none;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  header nav.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  header nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  header nav li {
    width: 100%;
  }
  header nav li a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header nav li a:hover {
    background: rgba(0, 172, 193, 0.2);
  }
}
@media (max-width: 600px) {
  .main-footer {
    padding: 52px 20px 26px;
  }
  .footer-inner {
    gap: 26px;
    margin-bottom: 28px;
  }
  .footer-logo {
    height: 48px;
  }
  .footer-description {
    font-size: 0.92rem;
  }
  .footer-nav {
    padding: 18px 0;
  }
  .footer-menu {
    gap: 4px 18px;
  }
  .footer-menu li a {
    min-height: 34px;
    font-size: 0.86rem;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  .form-group label {
    flex-direction: row;
  }
  .page-hero {
    min-height: 260px;
    padding: 56px 0;
  }
  .page-hero .hero-content {
    padding: 0 20px;
  }
  .page-hero .hero-content .title {
    font-size: 2rem;
  }
  .content-section {
    padding: 56px 20px;
  }
  .post-card {
    grid-template-columns: 1fr;
  }
  .post-card__image {
    min-height: 190px;
  }
  .post-card__body,
  .single-content,
  .empty-state {
    padding: 28px 22px;
  }
  .search-panel {
    grid-template-columns: 1fr;
  }
  .search-panel__button {
    width: 100%;
  }
  .single-nav {
    grid-template-columns: 1fr;
  }
  .single-nav__item--next {
    text-align: left;
  }
}
.wpcf7-spinner {
  margin: 12px auto 0;
  display: block;
}
