/* ===========================================
   Kawaii Pastel - น้ำเงินอ่อน + ทอง
   Sunc Auction - รับซื้อบ้านไม้เก่า รื้อถอน
   =========================================== */

:root {
  --bg-main: #F0F6FF;
  --bg-soft: #E6F0FF;
  --bg-cloud: #F8FBFF;

  --blue-pastel: #C9DEFF;
  --blue-soft: #A8C7F0;
  --blue-main: #4A7FCC;
  --blue-deep: #2C5AA0;

  --gold-pastel: #FFE9B8;
  --gold-soft: #FFD680;
  --gold-main: #E8B845;
  --gold-deep: #C99826;

  --white: #FFFFFF;
  --text-dark: #1F3358;
  --text-soft: #5A6F94;
  --text-mute: #8FA3C2;

  --shadow-soft: 0 8px 24px rgba(74, 127, 204, 0.12);
  --shadow-mid: 0 12px 32px rgba(74, 127, 204, 0.18);
  --shadow-gold: 0 8px 24px rgba(232, 184, 69, 0.25);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Sarabun', system-ui, -apple-system, sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

/* Decorative blobs */
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
body::before {
  width: 380px; height: 380px;
  background: var(--blue-pastel);
  top: -120px; right: -100px;
}
body::after {
  width: 320px; height: 320px;
  background: var(--gold-pastel);
  bottom: -100px; left: -100px;
}

h1, h2, h3, h4 {
  font-family: 'Mitr', 'Sarabun', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

a { color: var(--blue-main); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-deep); }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  border-bottom: 3px dashed var(--blue-pastel);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 14px;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid var(--gold-soft);
  background: var(--white);
  padding: 4px;
  box-shadow: var(--shadow-gold);
}
.logo-text h1 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--blue-deep);
  line-height: 1.2;
}
.logo-text p {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 2px 0 0;
}
.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-call, .btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-call {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-deep));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-line {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 6px 16px rgba(44, 90, 160, 0.3);
}
.btn-call:hover, .btn-line:hover {
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
}

/* ===== HERO ===== */
.hero {
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--blue-deep);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  border: 2px dashed var(--gold-soft);
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}
.hero h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--blue-deep);
  margin-bottom: 18px;
}
.hero h2 span {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 760px;
  margin: 0 auto 28px;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: var(--shadow-mid);
}
.cta-big.gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-main));
  color: var(--white);
}
.cta-big.line {
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-main));
  color: var(--white);
}
.cta-big:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 36px;
}
.chip {
  display: inline-block;
  background: var(--blue-pastel);
  color: var(--blue-deep);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.chip.gold {
  background: var(--gold-pastel);
  color: var(--gold-deep);
}
.section-title h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.section-title h3 span {
  color: var(--gold-deep);
}
.section-title p {
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto;
}

section { padding: 50px 0; }
.services-bg {
  background: var(--bg-cloud);
  padding: 60px 0;
  position: relative;
}
.gallery-bg {
  background: linear-gradient(180deg, var(--bg-cloud), var(--bg-soft));
  padding: 60px 0;
}
.reviews-bg {
  background: var(--bg-cloud);
  padding: 60px 0;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px dashed transparent;
  transition: all 0.3s;
  position: relative;
}
.service-card:nth-child(odd) { border-color: var(--blue-pastel); }
.service-card:nth-child(even) { border-color: var(--gold-pastel); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-style: solid;
}
.service-icon {
  font-size: 2.5rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-pastel), var(--gold-pastel));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  animation: wiggle 4s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
.service-card h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--blue-deep);
}
.service-card h4 a {
  color: inherit;
  text-decoration: none;
}
.service-card p {
  color: var(--text-soft);
  font-size: 0.93rem;
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.highlight-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--gold-main);
}
.highlight-item .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-deep));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.highlight-item h4 {
  font-size: 1.05rem;
  color: var(--blue-deep);
  margin-bottom: 5px;
}
.highlight-item p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--white);
  transition: transform 0.3s;
  background: var(--bg-soft);
}
.gallery-item:hover { transform: scale(1.04); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 50px 0;
}
.content-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-soft);
  max-width: 980px;
  margin: 0 auto;
}
.content-block h3 {
  color: var(--blue-deep);
  margin: 26px 0 12px;
  font-size: 1.3rem;
  padding-bottom: 8px;
  border-bottom: 2px dashed var(--gold-pastel);
}
.content-block h3:first-child { margin-top: 0; }
.content-block p {
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.85;
}
.content-block a { color: var(--blue-main); font-weight: 600; }
.content-block a:hover { color: var(--gold-deep); }
.content-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 18px 0;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--white);
}

/* ===== SUBDISTRICTS / NEARBY AREAS ===== */
.areas-section {
  background: var(--bg-soft);
  padding: 50px 0;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.area-tag {
  background: var(--white);
  color: var(--blue-deep);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  border: 2px dashed var(--blue-pastel);
  transition: all 0.25s;
  text-decoration: none;
}
.area-tag:hover {
  background: var(--gold-pastel);
  color: var(--gold-deep);
  border-color: var(--gold-main);
  transform: translateY(-2px);
}
.area-tag.gold-tag {
  border-color: var(--gold-pastel);
  color: var(--gold-deep);
}

/* ===== PRICE CALCULATOR ===== */
.calc-section {
  background: linear-gradient(180deg, var(--bg-main), var(--bg-cloud));
  padding: 60px 0;
}
.calc-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-mid);
  border: 3px dashed var(--gold-soft);
}
.calc-box h3 {
  color: var(--blue-deep);
  text-align: center;
  margin-bottom: 8px;
}
.calc-box .calc-sub {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 22px;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .calc-grid { grid-template-columns: 1fr; }
}
.calc-field label {
  display: block;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.calc-field input, .calc-field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--blue-pastel);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-cloud);
  transition: border-color 0.2s;
}
.calc-field input:focus, .calc-field select:focus {
  outline: none;
  border-color: var(--gold-main);
  background: var(--white);
}
.calc-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-deep));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s;
  box-shadow: var(--shadow-gold);
}
.calc-btn:hover { transform: translateY(-2px); }
.calc-result {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, var(--blue-pastel), var(--gold-pastel));
  border-radius: var(--radius-md);
  text-align: center;
  display: none;
}
.calc-result.show { display: block; }
.calc-result .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-deep);
  margin: 6px 0;
}
.calc-result small {
  color: var(--text-soft);
  font-size: 0.88rem;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--gold-main);
}
.review-stars {
  font-size: 1.1rem;
  color: var(--gold-main);
  margin-bottom: 8px;
}
.review-text {
  color: var(--text-dark);
  font-size: 0.96rem;
  margin-bottom: 16px;
  line-height: 1.65;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-pastel);
}
.review-author strong {
  display: block;
  color: var(--blue-deep);
  font-size: 0.97rem;
}
.review-author small {
  color: var(--text-soft);
  font-size: 0.82rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--blue-main);
}
.faq-q {
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 1.02rem;
  margin-bottom: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after {
  content: "+";
  color: var(--gold-main);
  font-size: 1.4rem;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding-top: 8px;
  color: var(--text-soft);
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ===== MAP ===== */
.map-section {
  padding: 50px 0;
}
.map-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  border: 4px solid var(--white);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  background: linear-gradient(135deg, var(--blue-pastel), var(--gold-pastel));
  border-radius: var(--radius-lg);
  padding: 44px 30px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: var(--shadow-mid);
}
.contact-cta h3 {
  color: var(--blue-deep);
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.contact-cta p {
  color: var(--text-dark);
  margin-bottom: 24px;
}
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-deep);
  color: var(--white);
  padding: 36px 0 24px;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a {
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--gold-pastel); }
.footer p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.footer p a { color: var(--gold-soft); }

/* ===== FLOAT BUTTONS ===== */
.float-btn {
  position: fixed;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-mid);
  z-index: 90;
  transition: transform 0.2s;
  color: var(--white);
}
.float-btn:hover { transform: scale(1.1); color: var(--white); }
.float-call {
  right: 24px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-deep));
}
.float-line {
  right: 24px;
  bottom: 90px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-deep));
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(31, 51, 88, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.show { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 88vh;
  border-radius: var(--radius-md);
  border: 4px solid var(--white);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--blue-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  font-weight: 700;
}

/* ===== INDEX-SPECIFIC ===== */
.search-wrap {
  max-width: 700px;
  margin: 30px auto 24px;
  position: relative;
}
.search-input {
  width: 100%;
  padding: 16px 56px 16px 22px;
  border: 3px dashed var(--gold-main);
  border-radius: 50px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}
.search-input:focus {
  outline: none;
  border-style: solid;
  border-color: var(--blue-main);
  box-shadow: 0 0 0 4px var(--blue-pastel);
}
.search-icon {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  pointer-events: none;
}

.prov-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 24px auto 30px;
  max-width: 1000px;
}
.prov-link {
  background: var(--white);
  color: var(--blue-deep);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px dashed var(--blue-pastel);
  transition: all 0.2s;
}
.prov-link:hover {
  background: var(--gold-pastel);
  color: var(--gold-deep);
  border-color: var(--gold-main);
}

.prov-block {
  margin-bottom: 36px;
}
.prov-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 3px dashed var(--gold-pastel);
}
.prov-flag {
  font-size: 1.7rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-pastel), var(--gold-pastel));
  display: flex;
  align-items: center;
  justify-content: center;
}
.prov-name {
  font-family: 'Mitr', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-deep);
}
.prov-count {
  margin-left: auto;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--gold-pastel);
  padding: 4px 12px;
  border-radius: 50px;
}

.dist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.dist-card {
  background: var(--white);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
  border: 1.5px solid transparent;
  transition: all 0.2s;
  font-size: 0.94rem;
}
.dist-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-soft);
  background: var(--bg-cloud);
  color: var(--blue-deep);
}
.dist-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.dist-name {
  flex: 1;
  font-weight: 600;
}
.dist-arrow {
  color: var(--gold-main);
  font-weight: 700;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 30px auto;
}
.stat-box {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--gold-main);
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-deep);
  font-family: 'Mitr', sans-serif;
}
.stat-label {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ===== ARTICLES ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--blue-main);
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-mid);
  border-color: var(--gold-main);
}
.article-card .article-icon {
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.article-card h4 {
  color: var(--blue-deep);
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.article-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: transparent;
  padding: 14px 0 6px;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.breadcrumb a {
  color: var(--blue-main);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb-sep {
  margin: 0 8px;
  color: var(--text-mute);
}

/* ===== FADE UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WAVE DIVIDER ===== */
.wave {
  display: block;
  width: 100%;
  height: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; align-items: stretch; }
  .header-cta { justify-content: center; }
  .logo { justify-content: center; }
  .logo-text h1 { font-size: 1rem; }
  .hero { padding: 50px 0 40px; }
  .content-block { padding: 26px 20px; }
  .content-block h3 { font-size: 1.15rem; }
  .float-btn { width: 50px; height: 50px; font-size: 1.3rem; }
  section { padding: 40px 0; }
}
