/* ===================================
   중앙부동산공인중개사사무소 - 메인 스타일
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Roboto:wght@400;500;700&display=swap');

/* CSS Variables */
:root {
  --primary: #1e5196;
  --primary-dark: #163d73;
  --primary-light: #2a6cc4;
  --accent: #ff6b35;
  --accent-dark: #e85520;
  --success: #27ae60;
  --success-light: #F0FFF4;
  --white: #FFFFFF;
  --bg-light: #F5F5F5;
  --bg-faint: #FAFAFA;
  --bg-blue: #F0F5FF;
  --text-dark: #333333;
  --text-mid: #555555;
  --text-light: #999999;
  --border: #E0E0E0;
  --border-mid: #D0D0D0;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease-out;
  --font-main: 'Noto Sans KR', 'Helvetica Neue', Arial, sans-serif;
  --font-num: 'Roboto', 'Noto Sans KR', sans-serif;
}

/* 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);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); border: none; outline: none; }
input, textarea, select { font-family: var(--font-main); outline: none; }

/* ===================================
   LAYOUT UTILITIES
   =================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 80px 0;
}
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

/* Section Titles */
.section-badge {
  display: inline-block;
  background: rgba(30,81,150,0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 44px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ===================================
   HEADER / NAVIGATION
   =================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
  font-size: 16px;
  font-weight: 900;
  color: var(--primary);
}
.logo-sub {
  font-size: 10.5px;
  color: var(--text-light);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
/* Nav */
nav.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--bg-blue);
}
/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 14px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.header-phone:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-reserve {
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-reserve:hover {
  background: var(--accent-dark);
  transform: scale(1.04);
}
/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}
/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-nav .nav-link {
  display: block;
  padding: 12px 24px;
  border-radius: 0;
  font-size: 15px;
}
.mobile-nav .header-phone,
.mobile-nav .btn-reserve {
  margin: 8px 24px;
  justify-content: center;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.04);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: scale(1.04);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}
.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}
.btn-block { width: 100%; }

/* ===================================
   CARDS
   =================================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  background: var(--bg-faint);
}
.card-body { padding: 28px; }

/* ===================================
   FORMS
   =================================== */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,81,150,0.12);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 12px 16px;
  resize: vertical;
  line-height: 1.6;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ===================================
   TAGS / BADGES
   =================================== */
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--bg-blue);
  color: var(--primary);
  margin: 2px;
}
.tag-accent {
  background: rgba(255,107,53,0.1);
  color: var(--accent);
}
.tag-success {
  background: rgba(39,174,96,0.1);
  color: var(--success);
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===================================
   PAGE HERO (Inner Pages)
   =================================== */
/* ===================================
   PAGE HERO — 페이지별 실사 배경
   =================================== */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-color: #0a1830;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* 공통 딥블루 오버레이 */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,20,60,0.68) 0%,
    rgba(16,44,110,0.38) 50%,
    rgba(6,14,44,0.62) 100%
  );
  z-index: 1;
}
.page-hero > .container { position: relative; z-index: 2; }

/* 페이지별 배경 이미지 */
/* 상가매물: 런던 야경 */
.page-hero.hero-london {
  background-image: url('../images/hero-london.jpg');
}
/* 창업컨설팅: 런던 야경 */
.page-hero.hero-london-2 {
  background-image: url('../images/hero-london.jpg');
  background-position: center 40%;
}
/* 투자상담: 뉴욕 야경 */
.page-hero.hero-newyork {
  background-image: url('../images/hero-newyork.jpg');
}
/* 뉴스: 뉴욕 야경 */
.page-hero.hero-newyork-2 {
  background-image: url('../images/hero-newyork.jpg');
  background-position: center 60%;
}
/* FAQ: 두바이 야경 */
.page-hero.hero-dubai {
  background-image: url('../images/hero-dubai.jpg');
}
/* 문의: 두바이 야경 */
.page-hero.hero-dubai-2 {
  background-image: url('../images/hero-dubai.jpg');
  background-position: center 40%;
}

/* 제거: CSS-only 실루엣 클래스들 (더이상 불필요) */
.page-hero-stars, .page-hero-city, .page-hero-glow, .page-hero-lights { display: none; }
.page-hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero-sub {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 24px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.7;
}
.breadcrumb a:hover { opacity: 1; }

/* ===================================
   CATEGORY FILTER TABS
   =================================== */
.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-tab {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ===================================
   CHAT WIDGET
   =================================== */
#chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}
.chat-btn {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(30,81,150,0.4);
  transition: var(--transition);
  border: none;
}
.chat-btn:hover { transform: scale(1.1); background: var(--accent); }
.chat-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.chat-panel.open { display: flex; }
.chat-header {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header h4 { font-size: 15px; font-weight: 700; }
.chat-close { background: none; border: none; color: var(--white); font-size: 20px; cursor: pointer; padding: 0; line-height: 1; }
.chat-body {
  padding: 20px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-message {
  background: var(--bg-light);
  border-radius: 12px 12px 12px 2px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 85%;
}
.chat-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  height: 38px;
  padding: 0 12px;
  font-size: 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.chat-input:focus { border-color: var(--primary); }
.chat-send {
  height: 38px;
  padding: 0 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.chat-send:hover { background: var(--accent); }

/* ===================================
   BACK TO TOP
   =================================== */
#back-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(30,81,150,0.3);
}
#back-top.show { opacity: 1; pointer-events: all; }
#back-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ===================================
   FOOTER
   =================================== */
#site-footer {
  background: #111827;
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 48px;
}
.footer-brand .logo-main { color: var(--white); font-size: 18px; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-info {
  margin-top: 20px;
  font-size: 13px;
  line-height: 2;
}
.footer-info strong { color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.social-link span { font-size: 12px; }
.social-link:hover { transform: translateY(-3px); opacity: 0.88; box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
.social-blog     { background: linear-gradient(135deg, #03C75A, #00a84b); }
.social-youtube  { background: linear-gradient(135deg, #FF0000, #cc0000); }
.social-instagram{ background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.social-kakao    { background: linear-gradient(135deg, #FEE500, #f5d800); color: #3c1e1e; }
.social-kakao span { color: #3c1e1e; }
.social-kakao i  { color: #3c1e1e; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
}
.footer-contact-item span:first-child { font-size: 18px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===================================
   MOBILE NAV PHONES (공통)
   =================================== */
.mobile-nav-phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin: 4px 0;
}
.mobile-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-phone-btn:hover { background: rgba(255,255,255,0.16); color: #fff; }
.mobile-phone-btn.accent { background: rgba(255,107,53,0.22); color: #ffb590; }
.mobile-phone-btn.accent:hover { background: rgba(255,107,53,0.36); }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 36px; }
  nav.main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  /* 모바일 nav 표시 */
  .mobile-nav.open { display: flex; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 15px; }
  .page-hero { padding: 120px 0 60px; }
  .page-hero-title { font-size: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-social { flex-wrap: wrap; gap: 8px; }
  #chat-widget { bottom: 16px; right: 16px; }
  #back-top { bottom: 90px; right: 16px; }
  /* 헤더 로고 축소 */
  .logo-premium .logo-main { font-size: 15px; }
  .logo-emblem svg { width: 32px; height: 32px; }
  /* 모바일 nav 배경 다크로 */
  .mobile-nav {
    background: #0f2347;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-nav .nav-link { color: rgba(255,255,255,0.85); }
  .mobile-nav .nav-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
}
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .section-title { font-size: 22px; }
  .section-subtitle { font-size: 14px; }
  .page-hero-title { font-size: 24px; }
  .footer-social { gap: 6px; }
  .social-link span { display: none; }
  .social-link { padding: 8px 12px !important; }
  /* 빠른 연락 바 */
  .quick-bar { display: none; }
  /* 헤더 높이 축소 */
  .header-inner { height: 60px; }
}

/* ===================================
   NOTIFICATION TOAST
   =================================== */
#toast {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9999;
  max-width: 320px;
  background: var(--white);
  border-left: 4px solid var(--success);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
#toast.show { transform: translateX(0); opacity: 1; }
#toast.error { border-color: #e74c3c; }
#toast .toast-icon { font-size: 22px; }

/* ===================================
   REVIEWS (고객 후기)
   =================================== */
.overall-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.rating-stars { font-size: 22px; }
.rating-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.rating-total {
  font-size: 15px;
  color: var(--text-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-info {
  flex: 1;
  min-width: 0;
}
.reviewer-info strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 700;
}
.review-stars { font-size: 13px; margin-top: 2px; }
.review-date {
  font-size: 12px;
  color: var(--text-light);
  white-space: nowrap;
  margin-left: auto;
}
.review-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===================================
   FEATURED PROPERTIES (추천 매물)
   =================================== */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.prop-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.prop-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--primary);
}
.prop-thumb {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, #e8f0fd 0%, #d0e2f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prop-thumb-placeholder {
  font-size: 56px;
  opacity: 0.6;
}
.prop-badge-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.prop-badge-type.sell { background: var(--accent); }
.prop-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.prop-wish:hover { color: #e74c3c; transform: scale(1.1); }
.prop-body { padding: 20px; }
.prop-location {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.prop-location i { color: var(--accent); font-size: 11px; }
.prop-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.prop-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.prop-info {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.prop-info span { display: flex; align-items: center; gap: 4px; }
.prop-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.btn-block { width: 100%; justify-content: center; }
@media (max-width: 768px) {
  .props-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .props-grid { grid-template-columns: 1fr; }
}

/* ===================================
   NEWSLETTER (부동산&창업 인사이트)
   =================================== */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1a4b8c 100%);
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.newsletter-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
}
.newsletter-desc {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 20px;
}
.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}
.newsletter-benefits li i {
  color: #7ee8a2;
  font-size: 13px;
  flex-shrink: 0;
}
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.newsletter-input-wrap { width: 100%; }
.newsletter-input-wrap .form-control {
  width: 100%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
}
.newsletter-input-wrap .form-control::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-input-wrap .form-control:focus {
  outline: none;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.2);
}
.newsletter-privacy {
  font-size: 12px;
  opacity: 0.7;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-title { font-size: 24px; }
}
