/* ===== 기본 설정 ===== */
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');

:root {
  --blue: #025785;
  --green: #00A650;
  --light-blue: #e8f4fb;
  --light-green: #e6f7ee;
  --dark: #1a1a2e;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
}

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

body {
  font-family: 'Nanum Gothic', sans-serif;
  color: #333;
  scroll-behavior: smooth;
}

/* ===== 스크롤 애니메이션 ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 헤더 / 네비게이션 ===== */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-brand .brand-sub {
  font-size: 0.65rem;
  color: var(--gray);
  font-weight: 400;
}

.navbar-brand .brand-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
}

.navbar-brand .brand-main span {
  color: var(--green);
}

.navbar-nav .nav-link {
  font-weight: 700;
  color: #333;
  padding: 0.5rem 0.9rem;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
  color: var(--blue);
}

.navbar-nav .nav-link.highlight {
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
}

.navbar-nav .nav-link.highlight:hover {
  background-color: var(--green);
  color: #fff;
}

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23025785' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* 모바일 메뉴 */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-top: 2px solid var(--light-blue);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }
  .navbar-nav .nav-link {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #f0f0f0;
  }
  .navbar-nav .nav-link.highlight {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    color: var(--green);
  }
}

/* ===== 히어로 배너 ===== */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0376b0 60%, #014f7a 100%);
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  background: rgba(0, 166, 80, 0.15);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 166, 80, 0.25);
  color: #7fe8b0;
  border: 1px solid rgba(0, 166, 80, 0.5);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #7fe8b0;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-phone-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-phone-box .phone-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}

.hero-phone-box a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.hero-phone-box a:hover {
  color: #7fe8b0;
}

.hero-phone-box a i {
  color: var(--green);
  margin-right: 0.4rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #7fe8b0;
  display: block;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.hero-img-box {
  position: relative;
  text-align: center;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.hero-card i {
  font-size: 4rem;
  color: #7fe8b0;
}

.hero-card p {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.guide-entry-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.4rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  color: #fff;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.guide-entry-link:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

@media (max-width: 767px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 50px 0 40px; }
  .hero-stats { gap: 1rem; }
  .guide-entry-link { font-size: 0.82rem; }
}

/* ===== 핵심 서비스 ===== */
.services {
  padding: 70px 0;
  background: var(--light-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .tag {
  display: inline-block;
  background: var(--light-green);
  color: var(--green);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-title h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.section-title p {
  color: var(--gray);
  font-size: 0.95rem;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(2,87,133,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
}

.service-icon.blue { background: var(--light-blue); color: var(--blue); }
.service-icon.green { background: var(--light-green); color: var(--green); }
.service-icon.blue2 { background: #e8f4fb; color: #0376b0; }
.service-icon.orange { background: #fff3e0; color: #e67e22; }

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--blue);
  border-radius: 12px;
  padding: 0.2rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ===== 센터 소개 ===== */
.about {
  padding: 70px 0;
  background: #fff;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-list li i {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.about-img-box {
  background: linear-gradient(135deg, var(--light-blue), var(--light-green));
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
}

.about-img-box i {
  font-size: 5rem;
  color: var(--blue);
}

.about-img-box p {
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 700;
}

/* ===== 장기요양보험 ===== */
.insurance {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--blue), #014f7a);
  color: #fff;
}

.ins-detail-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: #7fe8b0;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(127,232,176,0.4);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}

.ins-detail-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.insurance .section-title .tag {
  background: rgba(0,166,80,0.2);
  color: #7fe8b0;
}

.insurance .section-title h2 { color: #fff; }
.insurance .section-title p { color: rgba(255,255,255,0.75); }

.insurance-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: transform 0.3s;
  height: 100%;
}

.insurance-card:hover {
  transform: translateY(-4px);
}

.insurance-card i {
  font-size: 2.5rem;
  color: #7fe8b0;
  margin-bottom: 1rem;
  display: block;
}

.insurance-card h5 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.insurance-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}

/* ===== 요양보호사 채용 ===== */
.recruit {
  padding: 70px 0;
  background: var(--light-gray);
}

.recruit-box {
  background: linear-gradient(135deg, var(--green), #00843f);
  border-radius: 20px;
  padding: 3rem;
  color: #fff;
  text-align: center;
}

.recruit-box h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.recruit-box p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.btn-recruit {
  background: #fff;
  color: var(--green);
  font-weight: 800;
  border-radius: 30px;
  padding: 0.7rem 2rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  font-size: 1rem;
}

.btn-recruit:hover {
  background: var(--blue);
  color: #fff;
}

/* ===== 상담 / 연락처 ===== */
.contact {
  padding: 70px 0;
  background: #fff;
}

.contact-card {
  background: var(--light-blue);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 0.8rem;
  display: block;
}

.contact-card h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-card a {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--green);
}

.contact-card .sub {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.3rem;
}

.map-box {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-box {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.map-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(2,87,133,0.1);
}

.map-box h5 {
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 1rem;
}

.map-tap-hint {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  margin-left: 0.4rem;
  vertical-align: middle;
}

.map-box p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.4rem;
}

.map-box p i {
  color: var(--green);
  margin-right: 0.4rem;
}

/* ===== 방문간호사 배너 ===== */
.nurse-banner {
  background: linear-gradient(135deg, var(--green), #00843f);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

.nurse-banner h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.nurse-banner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.btn-call {
  background: #fff;
  color: var(--green);
  font-weight: 800;
  border-radius: 30px;
  padding: 0.8rem 2.5rem;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  border: 2px solid #fff;
}

.btn-call:hover {
  background: transparent;
  color: #fff;
}

/* ===== 푸터 ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 0;
  font-size: 0.85rem;
}

.footer .footer-brand {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer hr {
  border-color: rgba(255,255,255,0.1);
  margin: 1.5rem 0;
}

/* ===== 플로팅 전화 버튼 (모바일) ===== */
.float-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .float-call {
    display: flex;
  }
}

.float-btn {
  background: var(--blue);
  color: #fff;
  border-radius: 50px;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.float-btn.green {
  background: var(--green);
}

.float-btn:hover {
  background: #013f60;
  color: #fff;
}

/* ===== 상단 공지바 ===== */
.top-bar {
  background: var(--blue);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 0.4rem 0;
  font-size: 0.82rem;
}

.top-bar span,
.top-bar-tel {
  color: #7fe8b0;
  font-weight: 700;
  text-decoration: none;
}

.top-bar-tel:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===== 지도 앱 선택 모달 ===== */
.map-select-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
}

.map-select-modal.show {
  display: block;
}

.map-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.map-modal-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 1rem 1.5rem 2rem;
  animation: slideUp 0.28s cubic-bezier(0.25,0.8,0.25,1);
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.map-modal-handle {
  width: 40px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 0 auto 1.2rem;
}

.map-modal-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.map-modal-addr {
  font-size: 0.83rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.map-app-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.map-app-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--light-gray);
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s;
}

.map-app-btn:hover {
  background: #e8f4fb;
  color: var(--blue);
}

.map-app-btn .bi-chevron-right {
  margin-left: auto;
  color: #bbb;
}

.map-app-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.map-modal-close {
  width: 100%;
  padding: 0.75rem;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
  color: var(--gray);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s;
}

.map-modal-close:hover {
  background: var(--light-gray);
}

/* ===== 기관 현황 ===== */
.info-table-box {
  background: var(--light-blue);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}

.info-table-box h5 {
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 1rem;
}

.info-table {
  width: 100%;
  font-size: 0.87rem;
  border-collapse: collapse;
}

.info-table th {
  color: var(--gray);
  font-weight: 700;
  padding: 0.45rem 0.8rem 0.45rem 0;
  white-space: nowrap;
  vertical-align: top;
  width: 70px;
}

.info-table td {
  color: #333;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(2,87,133,0.08);
  line-height: 1.5;
}

/* ===== 센터장 소개 ===== */
.director-box {
  background: linear-gradient(135deg, var(--blue), #014f7a);
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  height: 100%;
}

.director-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.director-header > i {
  font-size: 3.5rem;
  color: #7fe8b0;
}

.director-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.director-name {
  font-size: 1.4rem;
  font-weight: 800;
}

.director-career {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.director-career li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.85);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.director-career li i {
  color: #7fe8b0;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.director-quote {
  background: rgba(255,255,255,0.1);
  border-left: 3px solid #7fe8b0;
  padding: 0.8rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin: 0;
}

/* ===== 장기요양보험 상세 ===== */
.insurance-info-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
}

.insurance-info-card h5 {
  font-size: 1rem;
  font-weight: 800;
  color: #7fe8b0;
  margin-bottom: 1rem;
}

.insurance-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.insurance-info-card li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.info-label {
  background: rgba(0,166,80,0.3);
  color: #7fe8b0;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.free-apply-banner {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(0,166,80,0.5);
  border-radius: 16px;
  padding: 1.5rem 2rem;
}

.free-apply-banner h5 {
  color: #7fe8b0;
  font-weight: 800;
}

/* ===== 서비스 상세 ===== */
.service-detail-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(2,87,133,0.12);
}

.sdc-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.sdc-icon.blue  { background: var(--light-blue);  color: var(--blue); }
.sdc-icon.green { background: var(--light-green); color: var(--green); }
.sdc-icon.orange { background: #fff3e0; color: #e67e22; }
.sdc-icon.purple { background: #f3e5f5; color: #7b1fa2; }

.service-detail-card h6 {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.service-detail-card ul {
  padding-left: 1rem;
  margin: 0;
}

.service-detail-card ul li {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0.15rem;
}

/* ===== 복지용구 ===== */
.welfare-box {
  background: var(--light-green);
  border-radius: 20px;
  padding: 2.5rem;
}

.welfare-item {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.welfare-item i {
  font-size: 1.8rem;
  color: var(--green);
}

.welfare-item span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
}

.btn-welfare-consult {
  background: var(--green);
  color: #fff;
  font-weight: 800;
  border-radius: 30px;
  padding: 0.7rem 1.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.btn-welfare-consult:hover {
  background: var(--blue);
  color: #fff;
}

/* ===== 방문간호사 섹션 ===== */
.nurse-section {
  background: linear-gradient(135deg, var(--green), #00843f);
  padding: 70px 0;
  color: #fff;
}

.nurse-section .section-title h2 { color: #fff; }
.nurse-section .section-title p  { color: rgba(255,255,255,0.8); }

.nurse-tag {
  background: rgba(255,255,255,0.2) !important;
  color: #fff !important;
}

.nurse-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 1.8rem;
  height: 100%;
  backdrop-filter: blur(5px);
  transition: transform 0.3s;
}

.nurse-card:hover { transform: translateY(-4px); }

.nurse-card-icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.8rem;
}

.nurse-card-icon.star { color: #ffd700; }

.nurse-card h5 {
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.nurse-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.nurse-card ul {
  padding-left: 1rem;
  margin: 0;
}

.nurse-card ul li {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.highlight-card {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
}

/* ===== 히어로 이미지 ===== */
.hero-card-img {
  padding: 1rem 1rem 0;
  text-align: center;
}

.hero-nurse-img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  display: block;
  margin: 0 auto 0.8rem;
}

.hero-card-img p {
  margin-bottom: 1rem;
}

/* ===== 가정방문 통합형 서비스 ===== */
.integrated-service-box {
  background: linear-gradient(135deg, var(--light-blue), #d4eeff);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  border: 2px solid rgba(2,87,133,0.12);
}

.integrated-img {
  width: 110px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.integrated-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.integrated-service-box h5 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.integrated-service-box p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.btn-integrated {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-integrated:hover {
  background: var(--green);
  color: #fff;
}

/* ===== 요양보호사 이미지 ===== */
.recruit-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.recruit-img {
  width: 100px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.recruit-header > div {
  flex: 1;
  min-width: 200px;
}

.recruit-header h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.recruit-header p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 0;
}

/* ===== 방문간호사 이미지 ===== */
.nurse-card-with-img {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.nurse-side-img {
  width: 90px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* ===== 연락처 이미지 ===== */
.contact-card .contact-nurse-img {
  width: 90px;
  margin: 0 auto 0.5rem;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}

@media (max-width: 767px) {
  .hero-nurse-img { max-width: 220px; }
  .nurse-card-with-img { flex-direction: column; align-items: center; }
  .nurse-side-img { width: 80px; }
  .recruit-header { gap: 1rem; }
  .recruit-img { width: 80px; }
  .integrated-service-box { padding: 1.3rem; }
}
