/* ============================================================
   TCPM – Tri-County Property Management, LLC
   Main Theme Stylesheet (WordPress adapted)
   Palette: white bg / black navbar / #007cba blue / #D4A017 gold
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.7;
  font-size: 16px;
}
a { color: #007cba; text-decoration: none; transition: color .2s; }
a:hover { color: #005a87; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; }

/* ---------- Utility ---------- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s, color .2s, transform .1s;
  border: 2px solid transparent;
}
.btn:active { transform: scale(.97); }
.btn-gold {
  background: #D4A017;
  color: #111111;
  border-color: #D4A017;
}
.btn-gold:hover { background: #b8870f; border-color: #b8870f; color: #111; }
.btn-outline {
  background: transparent;
  color: #007cba;
  border-color: #007cba;
}
.btn-outline:hover { background: #007cba; color: #fff; }

.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4A017;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  color: #111111;
  margin-bottom: 16px;
}
.section-title span { color: #007cba; }
.divider {
  width: 60px;
  height: 3px;
  background: #007cba;
  margin: 0 0 30px;
  border-radius: 2px;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: #000000;
  color: #aaa;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #1a1a1a;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #D4A017; font-weight: 600; }
.top-bar a:hover { color: #f0c040; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: #000000;
  border-bottom: 3px solid #D4A017;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 70px; width: auto; }
/* WP custom logo output */
.site-header .custom-logo-link { display: flex; align-items: center; }
.site-header .custom-logo { height: 70px; width: auto; }

/* Nav */
.main-nav { display: flex; gap: 4px; align-items: center; list-style: none; margin: 0; padding: 0; }
.main-nav li { list-style: none; position: relative; }
.main-nav a {
  color: #e0e0e0;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background .2s, color .2s;
  display: block;
}
.main-nav a:hover,
.main-nav li.current-menu-item > a,
.main-nav li.current_page_item > a,
.main-nav a.active { background: #D4A017; color: #111111; }
.main-nav .btn-nav {
  background: #D4A017;
  color: #111111;
  padding: 8px 18px;
  margin-left: 8px;
}
.main-nav .btn-nav:hover { background: #b8870f; }

/* Sub-menu (dropdown) support for WP menus */
.main-nav ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000000;
  min-width: 200px;
  border: 1px solid #1a1a1a;
  border-top: 3px solid #D4A017;
  border-radius: 0 0 6px 6px;
  padding: 6px;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.main-nav li:hover > ul.sub-menu { display: block; }
.main-nav ul.sub-menu li { width: 100%; }
.main-nav ul.sub-menu a { width: 100%; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: #D4A017; margin: 5px 0; border-radius: 2px;
}

/* ---------- Hero (dark/dramatic) ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #0d1a2a 100%);
  padding: 110px 24px 100px;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,124,186,.15) 0%, transparent 70%);
}
.hero-content { position: relative; max-width: 780px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  background: rgba(0,124,186,.2);
  border: 1px solid #007cba;
  color: #007cba;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 58px);
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero h1 span { color: #D4A017; }
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn-outline { color: #D4A017; border-color: #D4A017; }
.hero .btn-outline:hover { background: #D4A017; color: #111; }

.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #2a2a2a;
  position: relative;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat-num { font-size: 36px; font-weight: 800; color: #D4A017; line-height: 1; }
.hero-stats .stat-label { font-size: 13px; color: #aaa; margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }

/* White (primary) sections */
.section-dark {
  background: #ffffff;
  color: #111111;
}
.section-dark .section-title { color: #111111; }
.section-dark .section-label { color: #D4A017; }
.section-dark .divider { background: #007cba; }
.section-dark a { color: #007cba; }
.section-dark a:hover { color: #005a87; }
.section-dark p { color: #444; }
.section-dark li { color: #444; }

/* Blue (#007cba) alternating sections */
.section-light {
  background: #007cba;
  color: #ffffff;
}
.section-light .section-title { color: #ffffff; }
.section-light .section-title span { color: #D4A017; }
.section-light .section-label { color: #D4A017; }
.section-light .divider { background: #D4A017; }
.section-light a { color: #D4A017; }
.section-light a:hover { color: #f0c040; }
.section-light p  { color: rgba(255,255,255,0.90) !important; }
.section-light li { color: rgba(255,255,255,0.90) !important; }

/* ---------- Feature Grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 40px; }
.feature-card {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 36px 28px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.feature-card:hover { border-color: #007cba; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,124,186,.12); }
.feature-card h3 { font-size: 19px; color: #111; margin-bottom: 10px; }
.feature-card p { color: #555; font-size: 14px; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,124,186,.10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.section-light .feature-card {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}
.section-light .feature-card:hover {
  border-color: #D4A017;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.section-light .feature-card h3 { color: #fff; }
.section-light .feature-card p { color: rgba(255,255,255,0.85) !important; }
.section-light .feature-icon { background: rgba(255,255,255,0.18); }

/* ---------- Why Choose ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 40px; }
.why-item { display: flex; gap: 18px; }
.why-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: #D4A017;
  color: #111;
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.why-item h4 { font-size: 16px; color: #111; margin-bottom: 6px; }
.why-item p { font-size: 14px; color: #555; }
.section-light .why-item h4 { color: #fff; }
.section-light .why-item p { color: rgba(255,255,255,0.85) !important; }

/* ---------- Services List ---------- */
.services-list { list-style: none; margin-top: 30px; padding: 0; }
.services-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: flex; gap: 14px; align-items: flex-start;
}
.services-list li:last-child { border-bottom: none; }
.services-list .s-icon { color: #D4A017; font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.services-list strong { color: #fff; display: block; margin-bottom: 4px; font-size: 15px; }
.services-list p { color: rgba(255,255,255,0.82); font-size: 14px; margin: 0; }
.section-dark .services-list li { border-bottom-color: #e0e0e0; }
.section-dark .services-list strong { color: #111; }
.section-dark .services-list p { color: #555; }

/* ---------- Guarantees ---------- */
.guarantee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.guarantee-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 30px 24px;
  border-top: 4px solid #007cba;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}
.guarantee-card:hover { box-shadow: 0 6px 20px rgba(0,124,186,.14); transform: translateY(-3px); }
.guarantee-card .g-icon { font-size: 36px; margin-bottom: 16px; }
.guarantee-card h4 { color: #007cba; font-size: 15px; margin-bottom: 10px; }
.guarantee-card p { color: #555; font-size: 13px; }
.section-light .guarantee-card { background: rgba(255,255,255,.12); border-top-color: #D4A017; }
.section-light .guarantee-card h4 { color: #D4A017; }
.section-light .guarantee-card p { color: rgba(255,255,255,0.85) !important; }

/* ---------- Areas Served (blue bg) ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-top: 30px; }
.area-pill {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 6px;
  padding: 14px 16px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s, color .2s, background .2s;
}
.area-pill:hover { background: rgba(255,255,255,0.24); border-color: #D4A017; color: #D4A017; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #1a1400 0%, #2a1f00 50%, #1a1400 100%);
  border-top: 3px solid #D4A017;
  border-bottom: 3px solid #D4A017;
  padding: 70px 24px;
  text-align: center;
}
.cta-banner h2 { color: #D4A017; font-size: clamp(24px, 4vw, 38px); margin-bottom: 14px; }
.cta-banner p { color: #ccc; max-width: 560px; margin: 0 auto 30px; }
.cta-banner .btn-outline { color: #D4A017; border-color: #D4A017; }
.cta-banner .btn-outline:hover { background: #D4A017; color: #111; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: #000000;
  border-bottom: 3px solid #007cba;
  padding: 60px 24px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); color: #fff; margin-bottom: 12px; }
.page-hero p { color: #aaa; max-width: 580px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: #888; margin-bottom: 14px; }
.breadcrumb a { color: #D4A017; }
.breadcrumb a:hover { color: #f0c040; }

/* ---------- Filter Bar (Properties) ---------- */
.filter-bar {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 28px;
  margin: 40px 0 30px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.filter-bar label { color: #555; font-size: 13px; font-weight: 700; letter-spacing: .5px; }
.filter-bar select {
  background: #fff; color: #111; border: 1px solid #ccc; border-radius: 4px;
  padding: 8px 14px; font-size: 14px; cursor: pointer;
}
.filter-bar select:focus { border-color: #007cba; outline: none; }

/* ---------- Property Cards ---------- */
.property-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.property-card {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.property-card:hover { transform: translateY(-5px); border-color: #007cba; box-shadow: 0 10px 30px rgba(0,124,186,.14); }
.property-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, #e0f0f8 0%, #c8e2f0 100%);
  display: flex; align-items: center; justify-content: center;
  color: #007cba; font-size: 40px;
}
.prop-badge {
  position: absolute; top: 14px; left: 14px;
  background: #007cba; color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 3px; letter-spacing: .5px; text-transform: uppercase;
}
.prop-body { padding: 22px; }
.prop-rent { font-size: 26px; font-weight: 800; color: #007cba; line-height: 1; }
.prop-rent span { font-size: 14px; font-weight: 400; color: #888; }
.prop-addr { color: #111; font-size: 15px; font-weight: 600; margin: 8px 0 4px; }
.prop-type { color: #666; font-size: 13px; margin-bottom: 14px; }
.prop-meta { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid #e0e0e0; }
.prop-meta span { font-size: 13px; color: #555; }
.prop-meta strong { color: #111; }
.prop-avail { font-size: 12px; color: #2e7d32; font-weight: 700; margin-top: 12px; display: block; }
.prop-actions { display: flex; gap: 10px; margin-top: 18px; }
.prop-actions .btn { padding: 10px 18px; font-size: 13px; flex: 1; text-align: center; }

/* ---------- Tenant Boxes ---------- */
.tenant-section { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.tenant-box {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 36px 32px;
}
.tenant-box h3 { color: #007cba; font-size: 20px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #e0e0e0; }
.tenant-box ul { list-style: none; padding: 0; }
.tenant-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
  color: #444;
  font-size: 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.tenant-box ul li:last-child { border-bottom: none; }
.tenant-box ul li::before { content: '\2713'; color: #007cba; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.qual-box {
  background: #fffde7;
  border: 2px solid #D4A017;
  border-radius: 10px;
  padding: 30px 28px;
  margin-top: 30px;
}
.qual-box h4 { color: #b8870f; margin-bottom: 16px; font-size: 16px; }
.qual-box ul { list-style: none; padding: 0; }
.qual-box ul li { color: #444; padding: 8px 0; border-bottom: 1px solid #f5e642; font-size: 14px; display: flex; gap: 10px; }
.qual-box ul li:last-child { border-bottom: none; }
.qual-box ul li::before { content: '\1F4CB'; flex-shrink: 0; }

.section-light .tenant-box { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.section-light .tenant-box h3 { color: #D4A017; border-bottom-color: rgba(255,255,255,0.2); }
.section-light .tenant-box ul li { border-bottom-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9) !important; }
.section-light .tenant-box ul li::before { color: #D4A017; }

/* ---------- Rental Qualifications block ---------- */
.qual-list {
  background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 10px; overflow: hidden;
}
.qual-list .qual-row {
  padding: 22px 28px; border-bottom: 1px solid #e0e0e0;
  display: flex; gap: 16px; align-items: flex-start;
}
.qual-list .qual-row:last-child { border-bottom: none; }
.qual-list .qual-row .q-ic { color: #D4A017; font-size: 20px; flex-shrink: 0; }
.qual-list .qual-row strong { color: #111; display: block; margin-bottom: 4px; }
.qual-list .qual-row p { color: #555; font-size: 14px; }
.section-light .qual-list { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.22); }
.section-light .qual-list .qual-row { border-bottom-color: rgba(255,255,255,0.15); }
.section-light .qual-list .qual-row strong { color: #fff; }
.section-light .qual-list .qual-row p { color: rgba(255,255,255,0.85) !important; }

/* ---------- FAQ accordion ---------- */
.faq-item {
  background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 14px; overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px; cursor: pointer; color: #111; font-weight: 600; font-size: 15px;
  list-style: none; display: flex; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: #D4A017; }
.faq-item p { padding: 0 24px 20px; color: #555; font-size: 14px; }
.section-light .faq-item { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.22); }
.section-light .faq-item summary { color: #fff; }
.section-light .faq-item p { color: rgba(255,255,255,0.85) !important; }

/* ---------- About Page ---------- */
.about-intro { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-intro img { border-radius: 10px; border: 3px solid #007cba; }
.about-intro p { color: #444; margin-bottom: 16px; font-size: 15px; }
.office-box {
  background: #fffdf3; border: 1px solid #D4A017; border-radius: 8px;
  padding: 20px 24px; margin-top: 24px; text-align: left;
}
.office-box .o-title { color: #b8870f; font-weight: 700; margin-bottom: 10px; }
.office-box p { color: #444; font-size: 14px; }
.office-box a { color: #007cba; }

.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.value-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  transition: background .3s, border-color .3s;
}
.value-card:hover { background: rgba(255,255,255,0.20); border-color: #D4A017; }
.value-card .v-icon { font-size: 32px; margin-bottom: 14px; }
.value-card h4 { color: #D4A017; font-size: 15px; margin-bottom: 8px; }
.value-card p { color: rgba(255,255,255,0.82) !important; font-size: 13px; }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; margin-top: 40px; }
.contact-info-box h3 { color: #007cba; font-size: 20px; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-detail .c-icon {
  width: 44px; height: 44px; background: rgba(0,124,186,.10); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #007cba; font-size: 18px; flex-shrink: 0;
}
.contact-detail h4 { color: #111; font-size: 14px; margin-bottom: 4px; }
.contact-detail p { color: #555; font-size: 14px; }
.contact-detail a { color: #007cba; font-size: 14px; }
.contact-detail a:hover { color: #005a87; }

.contact-quick a {
  background: #f5f5f5; border: 1px solid #e0e0e0; padding: 12px 18px; border-radius: 6px;
  color: #444; font-size: 14px; display: flex; align-items: center; gap: 10px; transition: border-color .2s;
}
.contact-quick a:hover { border-color: #D4A017; }

.contact-form-box {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 40px 36px;
}
.contact-form-box h3 { color: #111; font-size: 20px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #555; font-size: 13px; font-weight: 600; margin-bottom: 8px; letter-spacing: .3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: #fff; border: 1px solid #ddd; color: #111;
  border-radius: 5px; padding: 12px 16px; font-size: 14px; font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #007cba; outline: none; box-shadow: 0 0 0 3px rgba(0,124,186,.1); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 12px; color: #888; margin-top: 12px; }
.form-success {
  display: none; background: #e8f5e9; border: 1px solid #4caf50;
  border-radius: 6px; padding: 16px; color: #2e7d32; margin-top: 16px; text-align: center;
}
.form-success.show { display: block; }

/* Contact Form 7 light styling harmonization */
.contact-form-box .wpcf7-form-control-wrap { display: block; }
.contact-form-box .wpcf7 input[type="text"],
.contact-form-box .wpcf7 input[type="email"],
.contact-form-box .wpcf7 input[type="tel"],
.contact-form-box .wpcf7 select,
.contact-form-box .wpcf7 textarea {
  width: 100%; background: #fff; border: 1px solid #ddd; color: #111;
  border-radius: 5px; padding: 12px 16px; font-size: 14px; font-family: inherit; margin-bottom: 16px;
}
.contact-form-box .wpcf7 .wpcf7-submit {
  background: #D4A017; color: #111; border: 2px solid #D4A017; font-weight: 700;
  padding: 16px 32px; border-radius: 4px; cursor: pointer; width: 100%; font-size: 15px;
}
.contact-form-box .wpcf7 .wpcf7-submit:hover { background: #b8870f; border-color: #b8870f; }

/* CF7 notice box */
.cf7-notice {
  background: #fff8e1; border: 1px solid #D4A017; border-radius: 8px;
  padding: 14px 18px; color: #6b5300; font-size: 13px; margin-bottom: 24px;
}

/* ---------- Map ---------- */
.map-box { margin-top: 50px; border-radius: 10px; overflow: hidden; border: 2px solid rgba(255,255,255,0.3); }
.map-box iframe, .map-box img { width: 100%; height: 340px; border: none; object-fit: cover; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a0a;
  border-top: 3px solid #D4A017;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-img,
.footer-brand .custom-logo { height: 60px; margin-bottom: 16px; }
.footer-brand p { color: #888; font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: #D4A017; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #888; font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: #D4A017; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item .f-icon { color: #D4A017; flex-shrink: 0; font-size: 14px; margin-top: 2px; }
.footer-contact-item p { color: #888; font-size: 13px; }
.footer-contact-item a { color: #888; font-size: 13px; }
.footer-contact-item a:hover { color: #D4A017; }
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: #555; font-size: 12px; }
.footer-bottom a { color: #D4A017; }

/* ---------- Blog / Index / Fallback ---------- */
.blog-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.post-card {
  background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 10px;
  padding: 30px 32px; margin-bottom: 30px;
}
.post-card h2 { font-size: 24px; margin-bottom: 10px; }
.post-card h2 a { color: #111; }
.post-card h2 a:hover { color: #007cba; }
.post-meta { font-size: 13px; color: #888; margin-bottom: 16px; }
.post-card .entry-content { color: #444; font-size: 15px; }
.post-thumb { margin-bottom: 20px; border-radius: 8px; overflow: hidden; }
.pagination { margin-top: 30px; display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers {
  padding: 8px 14px; background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 4px; color: #007cba;
}
.pagination .page-numbers.current { background: #007cba; color: #fff; border-color: #007cba; }

/* Sidebar / widgets */
.sidebar .widget {
  background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 10px;
  padding: 24px 26px; margin-bottom: 26px;
}
.sidebar .widget-title {
  color: #007cba; font-size: 16px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #e0e0e0;
}
.sidebar ul { list-style: none; padding: 0; }
.sidebar ul li { padding: 8px 0; border-bottom: 1px solid #e8e8e8; }
.sidebar ul li:last-child { border-bottom: none; }
.sidebar a { color: #444; font-size: 14px; }
.sidebar a:hover { color: #007cba; }
.sidebar .widget select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; }

/* Footer widgets */
.footer-col .widget { margin-bottom: 20px; }
.footer-col .widget-title { color: #D4A017; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.footer-col .widget ul { list-style: none; padding: 0; }
.footer-col .widget ul li { margin-bottom: 10px; }
.footer-col .widget ul li a { color: #888; font-size: 13px; }
.footer-col .widget ul li a:hover { color: #D4A017; }

/* Search form */
.search-form { display: flex; gap: 8px; }
.search-form input[type="search"] {
  flex: 1; padding: 10px 14px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px;
}
.search-form input[type="submit"], .search-form button {
  background: #007cba; color: #fff; border: none; border-radius: 5px; padding: 10px 18px; font-weight: 700; cursor: pointer;
}
.search-form input[type="submit"]:hover, .search-form button:hover { background: #005a87; }

/* 404 */
.error-404 { text-align: center; padding: 40px 0; }
.error-404 .big-404 { font-size: clamp(80px, 18vw, 180px); font-weight: 800; color: #007cba; line-height: 1; }

/* Generic content area (WPBakery + the_content) */
.tcpm-content-area { }
.tcpm-content-area p { margin-bottom: 16px; }
.tcpm-content-area ul, .tcpm-content-area ol { margin: 0 0 16px 22px; }
.tcpm-content-area h2, .tcpm-content-area h3 { margin-bottom: 14px; }

/* WPBakery front-end editor safety: don't force our section paddings onto builder rows */
.vc_row .container { max-width: none; padding: 0; }
body.wpb-js-composer .vc_column-inner { }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .tenant-section,
  .about-intro,
  .contact-grid,
  .blog-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #000000;
    flex-direction: column;
    padding: 16px;
    border-bottom: 3px solid #D4A017;
    gap: 4px;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 16px; }
  .main-nav ul.sub-menu { position: static; display: block; border: none; box-shadow: none; padding-left: 12px; }
  .nav-toggle { display: block; }
  .site-header { position: relative; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
