/* =============================================
   有巢氏麻吉地產翊安 - Personal Page Styles
   Modern Minimal · Green Gradient · Rounded
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --sage-100:  #ecf4ec;
  --sage-200:  #d4e8d4;
  --sage-400:  #8fba8f;
  --mint-50:   #f0fff8;
  --mint-100:  #d0f5e8;

  --text-dark:   #1a2e1a;
  --text-mid:    #374737;
  --text-soft:   #5a6b5a;
  --text-muted:  #8a9e8a;

  --white:       #ffffff;
  --bg-light:    #f8fdf8;
  --bg-card:     #ffffff;
  --ui-border-soft: #cadccf;
  --ui-border:   #adc7b2;
  --ui-border-strong: #8eaf95;
  --glass-border: rgba(74,222,128,0.48);
  --glass-border-strong: rgba(74,222,128,0.66);
  --inverse-border: rgba(255,255,255,0.22);
  --inverse-border-strong: rgba(255,255,255,0.16);

  --shadow-sm:   0 1px 4px rgba(22,101,52,0.07);
  --shadow-md:   0 4px 20px rgba(22,101,52,0.11);
  --shadow-lg:   0 12px 40px rgba(22,101,52,0.15);
  --shadow-xl:   0 24px 60px rgba(22,101,52,0.18);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --font-main:   'Noto Sans TC', 'Inter', sans-serif;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 10000;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: #f8fafc;
  color: var(--green-800);
  border: 2px solid var(--green-500);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.18s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(124,58,237,0.35);
  outline-offset: 3px;
}

:focus-visible {
  outline: 3px solid rgba(124,58,237,0.52);
  outline-offset: 3px;
}

#pageSectionsRoot:focus { outline: none; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5, 30, 12, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
.navbar .nav-logo { color: #86efac; }
.navbar .nav-links li a { color: rgba(255,255,255,0.82); }
.navbar .nav-links li a:hover {
  background: rgba(74,222,128,0.18);
  color: #d1fae5;
}
.navbar .nav-toggle span { background: #86efac; }
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-md);
}
.navbar.scrolled .nav-logo { color: var(--green-700); }
.navbar.scrolled .nav-links li a { color: var(--text-mid); }
.navbar.scrolled .nav-links li a:hover {
  background: var(--green-100);
  color: var(--green-700);
}
.navbar.scrolled .nav-toggle span { background: var(--green-700); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-700);
}
.logo-icon {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.5rem;
  line-height: 1;
}
.logo-icon.has-image {
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}
.logo-icon.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links > li {
  position: relative;
}
.nav-links li a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-dropdown-toggle {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a:hover {
  background: var(--green-100);
  color: var(--green-700);
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  background: var(--green-100);
  color: var(--green-700);
}
.nav-dropdown-toggle i {
  font-size: 0.72rem;
  transition: transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ui-border);
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu li {
  width: 100%;
}
.nav-dropdown-menu a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-mid);
}
.nav-dropdown-menu a:hover {
  background: var(--green-50);
  color: var(--green-700);
}
.navbar .nav-dropdown-toggle {
  color: rgba(255,255,255,0.82);
}
.navbar .nav-dropdown-toggle:hover,
.navbar .nav-dropdown.open .nav-dropdown-toggle {
  background: rgba(74,222,128,0.18);
  color: #d1fae5;
}
.navbar.scrolled .nav-dropdown-toggle {
  color: var(--text-mid);
}
.navbar.scrolled .nav-dropdown-toggle:hover,
.navbar.scrolled .nav-dropdown.open .nav-dropdown-toggle {
  background: var(--green-100);
  color: var(--green-700);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO BANNER
   ============================================= */
.hero {
  min-height: 84vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 76px 24px 36px;
  background:
    linear-gradient(135deg,
      rgba(6, 78, 59, 0.72) 0%,
      rgba(20, 83, 45, 0.65) 40%,
      rgba(5, 46, 22, 0.78) 100%
    ),
    url('../images/store.jpg') center center / cover no-repeat;
}

/* Dark overlay for readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.25) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Animated Blobs — subtle on photo bg */
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #4ade80, #22c55e88);
  top: -120px; left: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #86efac, #4ade8044);
  bottom: -80px; right: -80px;
  animation-delay: 3s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #bbf7d0, #86efac55);
  top: 40%; left: 55%;
  animation-delay: 5s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 15px) scale(0.95); }
}

/* ============================================
   HERO CONTENT — 2-column layout
   ============================================ */
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 390px 1fr;
  align-items: center;
  gap: 34px;
  max-width: 1030px;
  width: 100%;
}

/* ---- LEFT: Avatar column ---- */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Avatar */
.avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}
.avatar-ring {
  width: 280px; height: 336px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(74,222,128,0.25) 0%, rgba(22,163,74,0.4) 100%);
  padding: 4px;
  box-shadow: 0 0 0 8px rgba(74,222,128,0.15),
              0 30px 80px rgba(0,0,0,0.4);
  overflow: hidden;
  animation: avatarPulse 4s ease-in-out infinite;
}
@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(74,222,128,0.15), 0 30px 80px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 0 16px rgba(74,222,128,0.08), 0 40px 90px rgba(0,0,0,0.5); }
}
.avatar-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: calc(var(--radius-xl) - 4px);
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.avatar-badge {
  position: absolute;
  bottom: 28px; right: -14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  border: 3px solid var(--green-300);
  animation: badgeBounce 2s ease-in-out infinite;
  white-space: nowrap;
  line-height: 1;
}
.avatar-badge.is-text {
  width: auto;
  height: auto;
  min-height: 38px;
  padding: 8px 14px;
  right: -22px;
  bottom: 22px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: var(--white);
  border: 1px solid var(--inverse-border);
  box-shadow: 0 8px 18px rgba(34,197,94,0.3);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.avatar-floating-tag {
  position: absolute;
  top: 20px; left: -18px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(34,197,94,0.4);
  letter-spacing: 0.06em;
  white-space: nowrap;
  animation: floatTag 3s ease-in-out infinite;
}
@keyframes floatTag {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-5px) rotate(-2deg); }
}

/* Floating stat cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-size: 0.82rem;
  white-space: nowrap;
}
.hero-float-card i {
  color: var(--green-500);
  font-size: 1.1rem;
}
.hero-float-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
}
.hero-float-card span {
  color: var(--text-soft);
  font-size: 0.75rem;
}
.card-left  { bottom: 30px; left: -20px; animation: floatCardL 4s ease-in-out infinite; }
.card-right { top: 40px;    right: -16px; animation: floatCardR 4s ease-in-out 2s infinite; }
@keyframes floatCardL { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatCardR { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---- RIGHT: Text column ---- */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
}

/* Tag row */
.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #d1fae5;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  letter-spacing: 0.05em;
}
.hero-tag-green {
  background: rgba(34,197,94,0.25);
  border-color: var(--glass-border-strong);
  color: #bbf7d0;
}
.hero-tag-dot {
  color: rgba(74,222,128,0.6);
  font-size: 0.6rem;
}

/* Name */
.hero-name {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
  margin-bottom: -6px;
}
.hero-name-main {
  display: inline-block;
  font-size: clamp(3.25rem, 6.4vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 30%, #86efac, #4ade80);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-name-sub {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 8px;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  border-left: 3px solid var(--green-400);
  padding-left: 14px;
}
.hero-tagline p,
.hero-subtitle p {
  margin: 0;
}
.hero-tagline strong,
.hero-subtitle strong {
  font-weight: 900;
}
.hero-tagline em,
.hero-subtitle em {
  font-style: italic;
}
.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.62;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Feature Pills */
.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.hero-pill i { color: var(--green-400); font-size: 0.78rem; }
.hero-pill:hover {
  background: rgba(74,222,128,0.2);
  border-color: var(--glass-border-strong);
  transform: translateY(-2px);
}

/* Stats — glassmorphism on photo bg */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 40, 20, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 12px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: #86efac;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta .btn-primary {
  background: linear-gradient(135deg, #7c3aed, #c026d3);
  box-shadow: 0 8px 24px rgba(124,58,237,0.34);
}
.hero-cta .btn-primary:hover {
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
  box-shadow: 0 12px 30px rgba(124,58,237,0.42);
}
.hero-cta .btn-outline {
  background: rgba(255,255,255,0.92);
  color: #6d28d9;
  border-color: rgba(196,181,253,0.85);
}
.hero-cta .btn-outline:hover {
  background: #f5f3ff;
  border-color: #a78bfa;
  box-shadow: 0 10px 24px rgba(124,58,237,0.18);
}
.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  border: 1.5px solid var(--inverse-border);
  transition: var(--transition);
  white-space: nowrap;
}
.hero-cta .btn-glass {
  background: rgba(124,58,237,0.22);
  border-color: rgba(196,181,253,0.5);
}
.hero-cta .btn-glass:hover {
  background: rgba(124,58,237,0.34);
  border-color: rgba(221,214,254,0.78);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--glass-border-strong);
  transform: translateY(-2px);
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  z-index: 3;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  transition: color .25s ease, background .25s ease;
}
.hero-scroll-hint:hover {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
}
.hero-scroll-hint:focus-visible {
  outline: 2px solid rgba(187,247,208,0.9);
  outline-offset: 4px;
  color: rgba(255,255,255,0.92);
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-400);
  animation: scrollDotBounce 2s ease-in-out infinite;
}
@keyframes scrollDotBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-size: 0.93rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(34,197,94,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34,197,94,0.45);
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
}
.btn-outline {
  background: rgba(255,255,255,0.8);
  color: var(--green-700);
  border: 2px solid var(--ui-border-strong);
}
.btn-outline:hover {
  background: var(--green-50);
  border-color: var(--green-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   SECTION COMMONS
   ============================================= */
section { padding: 64px 0; }

.section-header {
  text-align: center;
  margin-bottom: 30px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-100), var(--mint-100));
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--ui-border);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: 24px;
}

/* =============================================
   NEWS SECTION
   ============================================= */
.news-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3faf4 100%);
  border-bottom: 1px solid var(--ui-border-soft);
}
.news-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.news-image-wrap {
  min-height: 230px;
  background: #e8f5e8;
  border-right: 1px solid var(--ui-border-soft);
}
.news-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}
.news-copy {
  padding: 26px 28px 26px 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.news-meta span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--green-100);
  border: 1px solid var(--ui-border);
}
.news-meta time {
  color: var(--text-muted);
  letter-spacing: 0;
}
.news-copy h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.news-copy p {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.news-link[hidden] { display: none; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(187,247,208,0.3), transparent 70%);
  pointer-events: none;
}

/* ---- Profile Row ---- */
.about-profile-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #f0fdf4, #fafffe);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.about-profile-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="85" cy="15" r="40" fill="rgba(134,239,172,0.08)"/><circle cx="10" cy="90" r="30" fill="rgba(74,222,128,0.06)"/></svg>');
  pointer-events: none;
}
.about-profile-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.about-profile-photo,
.about-profile-text,
.about-social-card {
  position: relative;
  z-index: 1;
}
.about-profile-photo img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.profile-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 10px rgba(34,197,94,0.3);
}

/* Profile Text */
.about-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-600);
  margin-bottom: 4px;
}
.about-big-name {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 10px;
}
.about-big-name span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.about-lead {
  font-size: 1.02rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 8px;
}
.about-profile-text p,
.about-bio {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.72;
  margin-bottom: 16px;
}
.about-profile-text strong { color: var(--green-700); }
.about-profile-text a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-profile-text ul {
  margin: -4px 0 16px;
  padding-left: 22px;
  color: var(--text-soft);
}
.about-profile-text li {
  margin-bottom: 6px;
  line-height: 1.72;
}
.about-profile-text li:last-child {
  margin-bottom: 0;
}
.about-quick-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.qs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  padding: 8px 13px;
  box-shadow: var(--shadow-sm);
}
.qs-item i {
  color: var(--green-500);
  font-size: 1.1rem;
}
.qs-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1.1;
}
.qs-item span {
  font-size: 0.73rem;
  color: var(--text-muted);
}
.about-social-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--ui-border-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(124,58,237,0.12), transparent 52%),
    rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
}
.about-social-kicker {
  width: fit-content;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #f5f3ff;
  color: #7c3aed;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-social-card h3 {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.2;
}
.about-social-card p {
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.6;
}
.about-social-links {
  gap: 8px;
}
.about-social-links .social-btn {
  color: var(--white);
  background: linear-gradient(135deg, #14532d, #16a34a);
  box-shadow: 0 8px 18px rgba(22,101,52,0.16);
}

/* Cards - 3 col now */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-card {
  background: linear-gradient(135deg, #fafffe, #f0fdf4);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--green-300), var(--green-500));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ui-border-strong);
}
.about-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
.about-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.about-card p {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.68;
}
.about-card strong { color: var(--green-700); }
.content-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.content-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.content-list li i { color: var(--green-500); font-size: 0.85rem; }
.values-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.val-tag {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

/* =============================================
   VIDEOS SECTION
   ============================================= */
.videos-section {
  background: linear-gradient(180deg, #f0fdf4 0%, var(--bg-light) 100%);
}
.video-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.vtab {
  padding: 8px 19px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--white);
  border: 1.5px solid var(--ui-border);
  transition: var(--transition);
}
.vtab:hover, .vtab.active {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ui-border);
  transition: var(--transition);
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumb-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-thumb .thumb-emoji {
  font-size: 3.5rem;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-600);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--green-500);
  color: var(--white);
}
.video-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.video-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
  max-width: calc(100% - 20px);
}
.video-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.badge-tour { background: var(--green-500); color: var(--white); }
.badge-tips { background: #f59e0b; color: var(--white); }
.badge-market { background: #3b82f6; color: var(--white); }
.video-info {
  padding: 18px 20px;
}
.video-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.video-meta span { display: flex; align-items: center; gap: 4px; }
.video-card.hidden { display: none; }
.section-empty-state {
  grid-column: 1 / -1;
  min-height: 150px;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--ui-border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(240,253,244,0.92) 100%);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.section-empty-state i {
  font-size: 2rem;
  color: var(--green-500);
}
.section-empty-state strong {
  font-size: 1.08rem;
  color: var(--text-dark);
}
.section-empty-state p {
  max-width: 460px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* =============================================
   LISTINGS SECTION
   ============================================= */
.listings-section {
  background: var(--white);
}
.listings-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--bg-light);
  border: 1.5px solid var(--ui-border);
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ui-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.listing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--ui-border-strong);
}
.listing-img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.listing-img-bg {
  position: absolute;
  inset: 0;
  opacity: 0.85;
}
.listing-img-emoji { position: relative; z-index: 1; }
.listing-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}
.listing-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.badge-a { background: #ef4444; color: #fff; }
.badge-new { background: var(--green-500); color: #fff; }
.badge-sold { background: #6b7280; color: #fff; }
.badge-hot { background: #f97316; color: #fff; }
.listing-heart {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #ef4444;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.listing-heart:hover { transform: scale(1.15); }
.listing-body {
  padding: 18px 19px;
}
.listing-area-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--green-600);
  font-weight: 600;
  margin-bottom: 8px;
}
.listing-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.listing-specs {
  display: flex;
  gap: 10px 12px;
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.listing-specs span { display: flex; align-items: center; gap: 5px; }
.listing-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--green-600);
  margin-bottom: 4px;
}
.listing-price span { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.listing-source-preview {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid rgba(22,101,52,0.12);
  border-radius: 14px;
  background: rgba(240,253,244,0.78);
}
.listing-source-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.75rem;
  color: #15803d;
  font-weight: 700;
}
.listing-source-preview-image {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.listing-source-title {
  display: block;
  font-size: 0.9rem;
  color: #14532d;
  line-height: 1.5;
}
.listing-source-desc {
  margin-top: 6px;
  font-size: 0.82rem;
  color: #4b6354;
  line-height: 1.65;
}
.listing-source-minor {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: #5f7a63;
  font-weight: 600;
}
.listing-action {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-listing {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  color: var(--green-700);
  border: 1.5px solid var(--ui-border);
  border-radius: var(--radius-full);
  padding: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-listing:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}
.btn-listing-primary {
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  color: var(--green-700);
}
.btn-listing-secondary {
  background: #fff;
  color: var(--green-700);
  border-color: rgba(21, 128, 61, 0.22);
}
.btn-listing-secondary:hover {
  background: linear-gradient(135deg, #166534, #15803d);
}
.listing-card.hidden { display: none; }

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.newsletter-section {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7 50%, #f0fff8);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(134,239,172,0.25), transparent 70%);
  pointer-events: none;
}
.newsletter-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-xl);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  box-shadow: var(--shadow-xl);
}
.nl-icon-wrap {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(34,197,94,0.35);
}
.nl-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-600);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.nl-text h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.nl-text p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.68;
  margin-bottom: 16px;
}
.line-qr-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 360px);
  max-width: 100%;
  padding: 12px;
  border: 1.5px solid var(--ui-border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(240,253,244,0.92));
  box-shadow: var(--shadow-sm);
}
.line-qr-card[hidden] {
  display: none;
}
.line-qr-card img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--ui-border);
  background: var(--white);
}
.line-qr-card strong {
  display: block;
  color: var(--green-700);
  font-size: 0.96rem;
  margin-bottom: 4px;
}
.line-qr-card span {
  display: block;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.6;
}
.nl-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nl-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}
.nl-perks li i { color: var(--green-500); font-size: 1rem; width: 20px; text-align: center; }

/* Form */
.nl-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-mid);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  padding: 11px 15px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--ui-border);
  background: var(--bg-light);
  font-size: 0.93rem;
  color: var(--text-dark);
  font-family: var(--font-main);
  transition: var(--transition);
  outline: none;
}
.form-group textarea {
  min-height: 116px;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.15);
}
.radio-group { display: flex; flex-direction: column; gap: 7px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
  cursor: pointer;
}
.radio-label input[type="radio"] {
  accent-color: var(--green-500);
  width: 16px; height: 16px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Success */
.nl-success {
  text-align: center;
  padding: 30px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.success-icon {
  font-size: 3.5rem;
  color: var(--green-500);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes successPop {
  0%   { transform: scale(0); }
  80%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.nl-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}
.nl-success p { font-size: 0.93rem; color: var(--text-soft); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 46px 0 34px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 28px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 12px;
}
.footer-logo .logo-icon { width: 2.3rem; height: 2.3rem; font-size: 2rem; }
.footer-logo strong { font-size: 1.2rem; font-weight: 800; }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.55);
}
.social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--white);
}
.social-btn.youtube  { background: rgba(255,255,255,0.1); }
.social-btn.instagram{ background: rgba(255,255,255,0.1); }
.social-btn.facebook { background: rgba(255,255,255,0.1); }
.social-btn.tiktok   { background: rgba(255,255,255,0.1); }
.social-btn.line     { background: rgba(255,255,255,0.1); }
.social-btn:hover {
  transform: translateY(-3px);
}
.social-btn.youtube:hover  { background: #ff0000; }
.social-btn.instagram:hover{ background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.facebook:hover { background: #1877f2; }
.social-btn.tiktok:hover   { background: #111827; }
.social-btn.line:hover     { background: #06c755; }

.about-social-card .about-social-links .social-btn {
  color: #fff;
  box-shadow: 0 10px 22px rgba(15,23,42,0.12);
}
.about-social-card .about-social-links .social-btn.youtube {
  background: #ff0000;
}
.about-social-card .about-social-links .social-btn.instagram {
  background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}
.about-social-card .about-social-links .social-btn.facebook {
  background: #1877f2;
}
.about-social-card .about-social-links .social-btn.tiktok {
  background: #111827;
}
.about-social-card .about-social-links .social-btn.line {
  background: #06c755;
}
.about-social-card .about-social-links .social-btn:hover {
  filter: saturate(1.08) brightness(1.04);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul a:hover { color: var(--green-400); padding-left: 4px; }
.footer-col ul a i { font-size: 0.7rem; }

.contact-list { gap: 8px !important; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
}
.contact-list li i {
  color: var(--green-400);
  width: 16px;
  text-align: center;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-list li a { color: rgba(255,255,255,0.55); }
.contact-list li a:hover { color: var(--green-400); }

.footer-bottom {
  border-top: 1px solid var(--inverse-border-strong);
  padding: 14px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-credit i { color: #ef4444; font-size: 0.8rem; }

/* =============================================
   VIDEO MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--ui-border);
  padding: 28px;
  width: 90%;
  max-width: 800px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: var(--transition);
}
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: -16px; right: -16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  z-index: 1;
}
.modal-close:hover { background: var(--green-700); transform: rotate(90deg); }
.modal-video-wrap {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible,
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 340px 1fr; gap: 26px; }
  .avatar-ring { width: 260px; height: 320px; }
  .news-feature { grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-profile-row { grid-template-columns: 220px 1fr; gap: 24px; }
  .about-social-card { grid-column: 2; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .newsletter-card { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .hero-left { order: -1; }
  .hero-text { align-items: center; text-align: center; }
  .hero-name { justify-content: center; }
  .hero-tagline { border-left: none; padding-left: 0; border-bottom: 3px solid var(--green-400); padding-bottom: 10px; }
  .hero-tag-row { justify-content: center; }
  .hero-pills { justify-content: center; }
  .hero-stats { justify-content: center; }
  .avatar-ring { width: 220px; height: 270px; }
  .avatar-badge { right: -30px; }
  .avatar-floating-tag { left: -38px; }
  .card-left  { bottom: 12px; left: -30px; }
  .card-right { top: 12px;    right: -30px; }
  .news-feature { grid-template-columns: 1fr; gap: 0; }
  .news-image-wrap {
    min-height: 220px;
    border-right: none;
    border-bottom: 1px solid var(--ui-border-soft);
  }
  .news-image-wrap img { min-height: 220px; }
  .news-copy { padding: 24px; }
  .about-profile-row { grid-template-columns: 1fr; text-align: center; }
  .about-profile-photo { order: -1; }
  .about-quick-stats { justify-content: center; }
  .about-social-card { grid-column: auto; align-items: center; text-align: center; }
  .about-social-links { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    align-items: stretch;
    border-bottom: 1px solid var(--ui-border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .navbar .nav-links li a,
  .navbar .nav-dropdown-toggle,
  .nav-links li a,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    color: var(--text-mid);
  }
  .navbar .nav-links li a:hover,
  .navbar .nav-dropdown-toggle:hover,
  .navbar .nav-dropdown.open .nav-dropdown-toggle {
    background: var(--green-100);
    color: var(--green-700);
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 6px;
    padding: 4px 0 0 14px;
    border: none;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  .nav-dropdown-menu a {
    padding: 10px 14px;
    border-radius: 12px;
  }
  .nav-toggle { display: flex; }

  .hero {
    min-height: auto;
    padding: 72px 18px 38px;
  }
  .hero-content { gap: 20px; }
  .hero-text { gap: 11px; }
  .hero-subtitle { line-height: 1.65; }
  .hero-stats { gap: 10px; padding: 12px 16px; }
  .stat-num { font-size: 1.45rem; }
  .video-grid { grid-template-columns: 1fr; }
  .listings-grid { grid-template-columns: 1fr; }
  .newsletter-card { padding: 24px 20px; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .about-profile-row { padding: 24px 18px; margin-bottom: 26px; }
  .about-card { padding: 22px; }
  .news-copy { padding: 22px; }
  .section-header { margin-bottom: 24px; }
  .video-tabs,
  .listings-filter { margin-bottom: 22px; }

  section { padding: 46px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 68px 14px 34px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; padding: 12px 14px; }
  .stat-divider { display: none; }
  .newsletter-card { padding: 20px 14px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: min(100%, 246px); justify-content: center; }
  .avatar-ring { width: 200px; height: 240px; }
  .about-quick-stats { flex-direction: column; }
  .about-profile-row { padding: 20px 16px; }
  .about-card { padding: 20px; }
  .news-feature { border-radius: var(--radius-md); }
  .news-image-wrap,
  .news-image-wrap img { min-height: 180px; }
  .news-copy { padding: 18px; }
  .news-copy p { font-size: 0.9rem; }
  section { padding: 38px 0; }
  .line-qr-card { align-items: flex-start; padding: 10px; }
  .line-qr-card img { width: 72px; height: 72px; border-radius: 14px; }
  .video-grid,
  .listings-grid {
    gap: 14px;
  }
  .video-card {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    min-height: 126px;
  }
  .video-thumb {
    aspect-ratio: auto;
    min-height: 100%;
  }
  .video-play-btn {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }
  .video-duration {
    right: 8px;
    bottom: 8px;
    font-size: 0.68rem;
  }
  .video-badges {
    top: 8px;
    left: 8px;
    gap: 4px;
    max-width: calc(100% - 16px);
  }
  .video-badge {
    font-size: 0.62rem;
    padding: 3px 7px;
  }
  .video-info {
    padding: 12px 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .video-info h4 {
    font-size: 0.88rem;
    -webkit-line-clamp: 3;
  }
  .video-meta {
    flex-direction: column;
    gap: 4px;
    font-size: 0.72rem;
  }
  .listing-card {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    min-height: 210px;
  }
  .listing-img {
    aspect-ratio: auto;
    min-height: 100%;
    font-size: 2.4rem;
  }
  .listing-badges {
    top: 9px;
    left: 8px;
    gap: 4px;
  }
  .listing-badge {
    font-size: 0.58rem;
    padding: 3px 6px;
  }
  .listing-heart {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
  }
  .listing-body {
    padding: 13px;
    min-width: 0;
  }
  .listing-area-tag {
    font-size: 0.68rem;
    margin-bottom: 5px;
  }
  .listing-body h3 {
    font-size: 0.9rem;
    margin-bottom: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .listing-source-preview,
  .listing-source-minor {
    display: none;
  }
  .listing-specs {
    gap: 6px 9px;
    font-size: 0.7rem;
    margin-bottom: 8px;
  }
  .listing-price {
    font-size: 1.05rem;
    margin-bottom: 2px;
  }
  .listing-action {
    margin-top: 9px;
    gap: 7px;
  }
  .btn-listing {
    padding: 8px;
    font-size: 0.76rem;
  }

  .hero[data-mobile-float-focus="none"] .avatar-badge,
  .hero[data-mobile-float-focus="none"] .avatar-floating-tag,
  .hero[data-mobile-float-focus="none"] .hero-float-card {
    display: none;
  }

  .hero[data-mobile-float-focus="badge"] .avatar-floating-tag,
  .hero[data-mobile-float-focus="badge"] .card-left,
  .hero[data-mobile-float-focus="badge"] .card-right {
    display: none;
  }

  .hero[data-mobile-float-focus="tag"] .avatar-badge,
  .hero[data-mobile-float-focus="tag"] .card-left,
  .hero[data-mobile-float-focus="tag"] .card-right {
    display: none;
  }

  .hero[data-mobile-float-focus="left-card"] .avatar-badge,
  .hero[data-mobile-float-focus="left-card"] .avatar-floating-tag,
  .hero[data-mobile-float-focus="left-card"] .card-right {
    display: none;
  }

  .hero[data-mobile-float-focus="right-card"] .avatar-badge,
  .hero[data-mobile-float-focus="right-card"] .avatar-floating-tag,
  .hero[data-mobile-float-focus="right-card"] .card-left {
    display: none;
  }

  .hero[data-mobile-float-focus="badge"] .avatar-badge {
    right: -28px;
    bottom: 24px;
  }

  .hero[data-mobile-float-focus="tag"] .avatar-floating-tag {
    top: auto;
    bottom: 20px;
    left: -28px;
  }

  .hero[data-mobile-float-focus="left-card"] .card-left {
    bottom: 16px;
    left: -28px;
  }

  .hero[data-mobile-float-focus="right-card"] .card-right {
    top: auto;
    bottom: 28px;
    right: -28px;
  }

}
