:root{--c-primary:#ff9f43;--font:'Microsoft YaHei','PingFang SC',sans-serif;}
/* ===== 爱宠动物医院 - 爪印泡泡萌趣风 ===== */
:root {
  --orange: #ff9f43;
  --purple: #6c5ce7;
  --green: #00b894;
  --blue: #74b9ff;
  --pink: #fd79a8;
  --yellow: #fdcb6e;
  --cream: #fff8ef;
  --text: #5a5648;
  --text-light: #9a938a;
  --dark: #3d3a3a;
  --shadow: 0 8px 28px rgba(255,159,67,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 90px 0; }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,248,239,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(255,159,67,0.12);
  transition: all 0.35s ease;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(255,159,67,0.22); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-bubble {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe3c2, var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow);
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { color: var(--dark); font-size: 1.2rem; font-weight: 700; }
.logo-sub { color: var(--orange); font-size: 0.55rem; letter-spacing: 2px; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.nav a:hover, .nav a.active { background: var(--orange); color: #fff; }
.nav-cta {
  color: #fff !important;
  background: var(--purple);
  padding: 10px 24px !important;
  border-radius: 30px;
  font-size: 0.88rem !important;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(108,92,231,0.35);
}
.nav-cta:hover { background: #5b4de0 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 3px; border-radius: 3px; background: var(--orange); transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- 泡泡装饰 ---- */
.bubble { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.5); animation: float 6s ease-in-out infinite; }
.b1 { width: 90px; height: 90px; top: 18%; left: 6%; }
.b2 { width: 50px; height: 50px; bottom: 20%; left: 16%; animation-delay: 1.5s; }
.b3 { width: 70px; height: 70px; bottom: 16%; right: 8%; animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(160deg, #ffe9cf 0%, var(--cream) 60%, #ffe9cf 100%);
  overflow: hidden;
}
.hero::before {
  content: '🐾';
  position: absolute;
  font-size: 5rem;
  top: 12%; right: 8%;
  opacity: 0.18;
  transform: rotate(18deg);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 60px;
}
.hero-tag {
  display: inline-block;
  background: #fff;
  color: var(--orange);
  border-radius: 30px;
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.hero-text h1 {
  font-size: 3rem;
  line-height: 1.35;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-text h1 em { color: var(--orange); font-style: normal; }
.hero-text p { color: var(--text-light); line-height: 2; font-size: 0.98rem; max-width: 520px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 16px; margin-bottom: 40px; }
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(255,159,67,0.4); }
.btn-orange:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,159,67,0.5); }
.btn-white { background: #fff; color: var(--orange); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-3px); }
.hero-meta { display: flex; gap: 40px; }
.meta-item { font-size: 0.84rem; color: var(--text-light); }
.meta-item span { display: block; font-size: 1.8rem; font-weight: 800; color: var(--purple); margin-bottom: 2px; }

/* 宠物头像 */
.hero-avatar { position: relative; width: 380px; height: 380px; margin: 0 auto; }
.avatar-ear {
  position: absolute;
  top: 8px;
  width: 130px; height: 130px;
  background: linear-gradient(135deg, #ffbe76, var(--orange));
  border-radius: 50%;
  z-index: 1;
  box-shadow: inset 0 -10px 20px rgba(255,159,67,0.35);
}
.avatar-ear.left { left: 28px; transform: rotate(-28deg); border-radius: 50% 50% 50% 12%; }
.avatar-ear.right { right: 28px; transform: rotate(28deg); border-radius: 50% 50% 12% 50%; }
.avatar-face {
  position: absolute;
  top: 42px; left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 280px;
  background: linear-gradient(160deg, #ffe3c2, #ffd29a);
  border-radius: 46% 46% 42% 42%;
  z-index: 2;
  box-shadow: 0 16px 40px rgba(255,159,67,0.3);
}
.avatar-eye {
  position: absolute;
  top: 96px;
  width: 22px; height: 26px;
  background: var(--dark);
  border-radius: 50%;
}
.avatar-eye.left { left: 66px; }
.avatar-eye.right { right: 66px; }
.avatar-eye::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
}
.avatar-nose {
  position: absolute;
  top: 128px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 24px;
  background: var(--purple);
  border-radius: 50%;
}
.avatar-mouth {
  position: absolute;
  top: 150px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 30px;
  border-bottom: 4px solid var(--purple);
  border-radius: 0 0 60px 60px;
}
.avatar-cheek {
  position: absolute;
  top: 150px;
  width: 26px; height: 16px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.55;
}
.avatar-cheek.left { left: 44px; }
.avatar-cheek.right { right: 44px; }
/* 爪印轨迹 */
.paw-trail { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.paw {
  position: absolute;
  width: 46px; height: 40px;
  background: rgba(108,92,231,0.28);
  border-radius: 50%;
  opacity: 0.7;
}
.paw::before {
  content: '';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 22px;
  background: inherit;
  border-radius: 50% 50% 40% 40%;
}
.paw::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 8px; height: 14px;
  background: inherit;
  border-radius: 50%;
}
.p1 { top: 20px; left: 20px; transform: rotate(-30deg); }
.p2 { top: 0; right: 30px; transform: rotate(20deg); }
.p3 { bottom: 20px; left: 40px; transform: rotate(15deg); }
.p4 { bottom: -10px; right: 60px; transform: rotate(-20deg); }
.p5 { top: 50%; left: -10px; transform: rotate(40deg); width: 34px; height: 30px; opacity: 0.4; }
.p5::before { width: 15px; height: 17px; top: -9px; }
.p5::after { width: 6px; height: 11px; }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); text-align: center; color: var(--text-light); font-size: 0.82rem; }
.hero-scroll .arrow { display: block; font-size: 1.3rem; color: var(--orange); animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---- Paw divider 爪印串分隔 ---- */
.paw-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px; }
.paw-divider span { width: 80px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, transparent, var(--orange)); }
.paw-divider span:last-child { background: linear-gradient(90deg, var(--orange), transparent); }
.paw-divider i { font-style: normal; font-size: 1.5rem; animation: bounce 2s infinite; }

/* ---- Section head ---- */
.section-head { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 2.2rem; color: var(--dark); font-weight: 800; position: relative; display: inline-block; }
.section-title::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -14px;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--orange), var(--purple), var(--green));
}
.section-subtitle { color: var(--text-light); font-size: 0.95rem; margin-top: 26px; }

/* ---- 爱心宠物 ---- */
.love-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.love-card {
  background: #fff;
  border-radius: 30px 30px 30px 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
}
.love-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 18px 40px rgba(255,159,67,0.25); }
.love-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.love-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--orange);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255,159,67,0.4);
}
.love-tag-purple { background: var(--purple) !important; box-shadow: 0 4px 12px rgba(108,92,231,0.4) !important; }
.love-tag-green { background: var(--green) !important; box-shadow: 0 4px 12px rgba(0,184,148,0.4) !important; }
.love-body { padding: 24px 26px 28px; }
.love-body h3 { color: var(--dark); font-size: 1.15rem; margin-bottom: 10px; }
.love-body h3 span { font-size: 0.78rem; color: var(--text-light); font-weight: 400; margin-left: 6px; }
.love-body p { color: var(--text-light); font-size: 0.88rem; line-height: 1.9; }

/* ---- 诊疗科室 ---- */
.dept { position: relative; background: #fff; overflow: hidden; }
.dept-bg {
  position: absolute;
  right: -40px; bottom: -40px;
  font-size: 16rem;
  opacity: 0.05;
  pointer-events: none;
}
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dept-card {
  border-radius: 26px 26px 26px 10px;
  padding: 36px 30px;
  color: #fff;
  transition: all 0.35s ease;
}
.dept-card:hover { transform: translateY(-8px) rotate(1deg); box-shadow: 0 16px 34px rgba(0,0,0,0.14); }
.d-orange { background: linear-gradient(150deg, #ffbe76, var(--orange)); }
.d-purple { background: linear-gradient(150deg, #a29bfe, var(--purple)); }
.d-green { background: linear-gradient(150deg, #55efc4, var(--green)); }
.d-blue { background: linear-gradient(150deg, #81ecec, var(--blue)); }
.d-pink { background: linear-gradient(150deg, #fd9ec4, var(--pink)); }
.d-yellow { background: linear-gradient(150deg, #ffeaa7, var(--yellow)); }
.dept-icon { font-size: 2.4rem; margin-bottom: 14px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }
.dept-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.dept-card p { font-size: 0.88rem; line-height: 1.9; opacity: 0.92; margin-bottom: 16px; }
.dept-card a { font-size: 0.84rem; font-weight: 700; border-bottom: 2px solid rgba(255,255,255,0.6); padding-bottom: 3px; }
.dept-card a:hover { border-color: #fff; }

/* ---- 特色服务 ---- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
  background: #fff;
  border-radius: 40px 40px 16px 40px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 3px solid transparent;
  transition: all 0.35s ease;
}
.service-card:nth-child(1) { border-color: var(--orange); }
.service-card:nth-child(2) { border-color: var(--purple); }
.service-card:nth-child(3) { border-color: var(--green); }
.service-card:nth-child(4) { border-color: var(--pink); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.service-emoji { font-size: 2.6rem; margin-bottom: 14px; }
.service-card h3 { color: var(--dark); font-size: 1.12rem; margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 0.86rem; line-height: 1.9; }

/* ---- 动态 ---- */
.news { position: relative; background: #fff; overflow: hidden; }
.news-bg { position: absolute; left: -40px; top: 10%; font-size: 14rem; opacity: 0.05; pointer-events: none; transform: rotate(-18deg); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--cream);
  border-radius: 26px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.news-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(255,159,67,0.18); }
.news-img { height: 190px; background-size: cover; background-position: center; }
.news-body { padding: 24px 26px; }
.news-date { color: var(--purple); font-size: 0.8rem; font-weight: 700; margin-bottom: 10px; }
.news-body h3 { color: var(--dark); font-size: 1.08rem; line-height: 1.6; margin-bottom: 10px; }
.news-body p { color: var(--text-light); font-size: 0.86rem; line-height: 1.9; margin-bottom: 14px; }
.news-body a { color: var(--orange); font-size: 0.85rem; font-weight: 700; }
.news-body a:hover { color: var(--purple); }

/* ---- 联系 ---- */
.contact { background: linear-gradient(160deg, #ffe9cf, var(--cream)); }
.contact-box {
  background: #fff;
  border-radius: 40px;
  padding: 54px 50px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(255,159,67,0.18);
}
.contact-paw { font-size: 2.4rem; margin-bottom: 12px; }
.contact-box h2 { color: var(--dark); font-size: 1.8rem; margin-bottom: 12px; }
.contact-box > p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 30px; }
.contact-form { max-width: 820px; margin: 0 auto; }
.form-row { display: flex; gap: 14px; margin-bottom: 14px; }
.form-row input, .form-row select {
  flex: 1;
  padding: 15px 20px;
  border-radius: 50px;
  border: 2px solid #ffe9cf;
  background: #fffdf8;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}
.form-row select { color: var(--text-light); }
.form-row input:focus, .form-row select:focus { border-color: var(--orange); }

/* ---- Footer ---- */
.footer { background: #fff; padding: 70px 0 0; border-top: 6px solid linear-gradient(90deg, var(--orange), var(--purple), var(--green)); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-about { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.footer-about p { color: var(--text-light); font-size: 0.88rem; line-height: 1.9; margin-top: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social span {
  background: var(--cream);
  color: var(--purple);
  font-size: 0.8rem;
  padding: 7px 16px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-social span:hover { background: var(--purple); color: #fff; }
.footer h4 { color: var(--dark); font-size: 1rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-light); font-size: 0.88rem; transition: all 0.3s ease; }
.footer-links a:hover { color: var(--orange); padding-left: 6px; }
.footer-contact li { margin-bottom: 14px; font-size: 0.88rem; color: var(--text-light); }
.footer-contact .icon { color: var(--orange); margin-right: 8px; }
.footer-bottom { border-top: 2px dashed #ffe9cf; padding: 20px 0; text-align: center; font-size: 0.8rem; color: var(--text-light); }

/* ---- Page banner ---- */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(160deg, #ffe9cf, var(--cream));
  overflow: hidden;
}
.page-banner::before { content: '🐾'; position: absolute; left: 6%; top: 30%; font-size: 4rem; opacity: 0.15; transform: rotate(-20deg); }
.page-banner::after { content: '🦴'; position: absolute; right: 8%; top: 24%; font-size: 3.4rem; opacity: 0.15; transform: rotate(20deg); }
.page-banner h1 { font-size: 2.5rem; color: var(--dark); font-weight: 800; }
.page-banner p { color: var(--text-light); margin-top: 14px; font-size: 0.95rem; }
.breadcrumb { margin-top: 18px; font-size: 0.84rem; color: var(--purple); font-weight: 700; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--orange); }

/* ---- About ---- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { height: 420px; border-radius: 40px 40px 40px 10px; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.about-badge {
  position: absolute;
  bottom: -24px; right: 20px;
  background: linear-gradient(135deg, var(--orange), #ffbe76);
  color: #fff;
  border-radius: 30px;
  padding: 18px 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(255,159,67,0.4);
}
.about-badge span { display: block; font-size: 1.7rem; font-weight: 800; }
.about-badge em { font-style: normal; font-size: 0.8rem; }
.about-text h2 { color: var(--dark); font-size: 1.9rem; margin-bottom: 20px; }
.about-text h2 em { color: var(--orange); font-style: normal; }
.about-text p { color: var(--text-light); line-height: 2; font-size: 0.95rem; margin-bottom: 16px; }
.about-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
.about-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--orange);
  transition: all 0.3s ease;
}
.about-card:nth-child(2) { border-top-color: var(--purple); }
.about-card:nth-child(3) { border-top-color: var(--green); }
.about-card:nth-child(4) { border-top-color: var(--pink); }
.about-card:hover { transform: translateY(-6px); }
.about-card .emoji { font-size: 2rem; margin-bottom: 10px; }
.about-card h3 { color: var(--dark); font-size: 0.98rem; margin-bottom: 8px; }
.about-card p { color: var(--text-light); font-size: 0.8rem; line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: #fff;
  border-radius: 40px 40px 16px 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
}
.team-card:hover { transform: translateY(-8px); }
.team-img { height: 260px; background-size: cover; background-position: center top; }
.team-body { padding: 22px 26px; text-align: center; }
.team-body h3 { color: var(--dark); font-size: 1.15rem; margin-bottom: 4px; }
.team-body .role { color: var(--orange); font-size: 0.84rem; font-weight: 700; margin-bottom: 10px; }
.team-body p { color: var(--text-light); font-size: 0.85rem; line-height: 1.8; }

/* ---- Products ---- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: #fff;
  border-radius: 30px 30px 10px 30px;
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-bottom: 6px solid var(--orange);
  transition: all 0.35s ease;
}
.product-card:nth-child(3n+2) { border-bottom-color: var(--purple); }
.product-card:nth-child(3n+3) { border-bottom-color: var(--green); }
.product-card:hover { transform: translateY(-8px) rotate(1deg); }
.product-icon { width: 74px; height: 74px; border-radius: 24px; background: linear-gradient(150deg, #ffe9cf, var(--orange)); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 20px; }
.product-card:nth-child(3n+2) .product-icon { background: linear-gradient(150deg, #e5e0ff, var(--purple)); }
.product-card:nth-child(3n+3) .product-icon { background: linear-gradient(150deg, #d6faf0, var(--green)); }
.product-card h3 { color: var(--dark); font-size: 1.2rem; margin-bottom: 12px; }
.product-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.9; margin-bottom: 18px; }
.product-card a { color: var(--orange); font-weight: 700; font-size: 0.86rem; }
.product-card a:hover { color: var(--purple); }

/* ---- News page ---- */
.news-cats { display: flex; justify-content: center; gap: 14px; margin-bottom: 44px; flex-wrap: wrap; }
.news-cat {
  border: 2px solid #ffe9cf;
  background: #fff;
  color: var(--text);
  padding: 9px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-cat:hover, .news-cat.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.news-list { max-width: 960px; margin: 0 auto; }
.news-item {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.news-item:hover { transform: translateX(8px); }
.news-item-img { height: 180px; background-size: cover; background-position: center; }
.news-item-body { padding: 26px 28px; }
.news-item-body .news-date { color: var(--purple); font-weight: 700; font-size: 0.8rem; margin-bottom: 10px; }
.news-item-body h3 { color: var(--dark); font-size: 1.15rem; margin-bottom: 10px; }
.news-item-body p { color: var(--text-light); font-size: 0.88rem; line-height: 1.9; }
.news-item-body a { color: var(--orange); font-size: 0.85rem; font-weight: 700; display: inline-block; margin-top: 12px; }

/* ---- Contact ---- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-card { background: #fff; border-radius: 34px; padding: 40px 34px; box-shadow: var(--shadow); }
.contact-card h3 { color: var(--dark); font-size: 1.3rem; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item .ci-icon {
  width: 52px; height: 52px;
  border-radius: 18px;
  background: linear-gradient(150deg, #ffe9cf, var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-item:nth-child(3) .ci-icon { background: linear-gradient(150deg, #e5e0ff, var(--purple)); }
.contact-item:nth-child(4) .ci-icon { background: linear-gradient(150deg, #d6faf0, var(--green)); }
.contact-item h4 { color: var(--dark); font-size: 0.92rem; margin-bottom: 4px; }
.contact-item p { color: var(--text-light); font-size: 0.86rem; line-height: 1.7; }
.contact-map { height: 220px; border-radius: 24px; background: linear-gradient(150deg, #fdf6ec, #f8ecdc); display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.86rem; }
.contact-form-card .contact-form label { display: block; font-size: 0.86rem; color: var(--dark); font-weight: 700; margin-bottom: 8px; }
.contact-form-card .form-group { margin-bottom: 18px; }
.contact-form-card input, .contact-form-card select, .contact-form-card textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 20px;
  border: 2px solid #ffe9cf;
  background: #fffdf8;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}
.contact-form-card textarea { height: 120px; resize: vertical; }
.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus { border-color: var(--purple); }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 30px; }
  .hero-btns, .hero-meta { justify-content: center; }
  .hero-avatar { margin-top: 30px; }
  .love-grid, .news-grid, .team-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-text h1 { font-size: 2.4rem; }
}
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 20px 26px 30px;
    transform: translateY(-130%);
    transition: transform 0.4s ease;
    border-bottom: 4px solid var(--orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }
  .nav.active { transform: translateY(0); }
  .nav a { padding: 12px 18px; width: 100%; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .love-grid, .news-grid, .team-grid, .product-grid, .dept-grid, .service-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .news-item { grid-template-columns: 1fr; }
  .news-item-img { height: 200px; }
  .hero-meta { flex-wrap: wrap; }
  .hero-text h1 { font-size: 1.9rem; }
  .hero-avatar { width: 260px; height: 260px; transform: scale(0.7); }
  .contact-box { padding: 40px 24px; }
}
