/* === PROPERTY LEADS FLORIDA — v1 (2026-04-07) === */

:root {
  --brand-primary: #047857;
  --brand-primary-dark: #064E3B;
  --brand-secondary: #EAB308;
  --brand-secondary-dark: #A16207;
  --brand-accent: #DC2626;
  --brand-whatsapp: #25D366;
  --brand-whatsapp-dark: #128C7E;
  --brand-dark: #0B1F1A;
  --brand-text: #334155;
  --brand-muted: #64748B;
  --brand-border: #E2E8F0;
  --brand-bg: #F8FAF9;
  --brand-bg-alt: #F1F5F3;
  --shadow-sm: 0 1px 2px rgba(11,31,26,0.05);
  --shadow-md: 0 4px 12px rgba(11,31,26,0.08);
  --shadow-lg: 0 10px 30px rgba(11,31,26,0.10);
  --shadow-xl: 0 20px 50px rgba(11,31,26,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--brand-text);
  line-height: 1.7;
  background: var(--brand-bg);
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  background: #fff !important;
  box-shadow: 0 1px 0 rgba(11,31,26,0.06), 0 2px 12px rgba(11,31,26,0.04) !important;
  padding: 14px 0 !important;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .inside-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px !important;
}
.site-branding {
  flex: 0 0 auto;
  width: 280px;
  height: 56px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 64'%3E%3Cdefs%3E%3ClinearGradient id='plfRoof' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23047857'/%3E%3Cstop offset='100%25' stop-color='%23064E3B'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M32 6 L56 24 V52 H40 V36 H24 V52 H8 V24 Z' fill='url(%23plfRoof)'/%3E%3Crect x='28' y='40' width='8' height='12' fill='%23EAB308'/%3E%3Cg font-family='Inter,sans-serif' font-weight='800'%3E%3Ctext x='70' y='30' font-size='19' fill='%230B1F1A' letter-spacing='-0.5'%3EProperty Leads%3C/text%3E%3Ctext x='70' y='51' font-size='19' fill='%23047857' letter-spacing='-0.5'%3EFlorida%3Ctspan fill='%2394A3B8' font-weight='500' font-size='13' dx='6'%3E.com%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.site-branding a { display: block; width: 100%; height: 100%; }
.site-title, .site-description, .header-image { display: none !important; }

/* NAVIGATION */
.main-navigation { background: transparent !important; border: none !important; }
.main-navigation .main-nav > ul > li > a {
  color: var(--brand-dark) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.main-navigation .main-nav > ul > li > a:hover {
  color: var(--brand-primary) !important;
  background: var(--brand-bg);
}
.main-navigation .main-nav > ul > li.current-menu-item > a {
  color: var(--brand-primary) !important;
  background: rgba(4,120,87,0.08);
}

/* POSTS / ARTICLES */
.site-content { background: var(--brand-bg); }
.inside-article {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px !important;
  margin-bottom: 24px;
  border: 1px solid var(--brand-border);
}
h1.entry-title {
  color: var(--brand-dark);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.entry-content h2 {
  color: var(--brand-primary);
  font-size: 26px;
  font-weight: 700;
  margin-top: 44px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--brand-bg-alt);
  letter-spacing: -0.3px;
}
.entry-content h3 {
  color: var(--brand-dark);
  font-size: 21px;
  font-weight: 700;
  margin-top: 32px;
}
.entry-content p { margin-bottom: 18px; }
.entry-content ul, .entry-content ol { margin-bottom: 18px; padding-left: 24px; }
.entry-content ul li, .entry-content ol li { margin-bottom: 6px; }
.entry-content a {
  color: var(--brand-primary);
  text-decoration: underline;
  text-decoration-color: rgba(4,120,87,0.30);
  text-underline-offset: 3px;
}
.entry-content a:hover { text-decoration-color: var(--brand-primary); }

.entry-content nav {
  background: var(--brand-bg-alt);
  border-left: 4px solid var(--brand-primary);
  padding: 22px 28px;
  border-radius: var(--radius-md);
  margin: 24px 0 32px;
}
.entry-content nav h2 {
  color: var(--brand-dark) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.entry-content nav ul { margin: 0; padding-left: 18px; }
.entry-content nav ul li { font-size: 14px; margin-bottom: 6px; }

/* Tables */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--brand-border);
}
.entry-content table thead th {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: #fff;
  padding: 16px;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
}
.entry-content table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--brand-border);
  font-size: 15px;
}
.entry-content table tr:nth-child(even) { background: var(--brand-bg); }
.entry-content table tr:hover { background: rgba(4,120,87,0.05); }

/* Inline CTA quote box */
.cta-quote {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 36px 0;
  box-shadow: 0 8px 24px rgba(4,120,87,0.30);
}
.cta-quote p {
  color: #fff;
  margin-bottom: 18px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}
.cta-quote .btn-quote {
  display: inline-block;
  background: var(--brand-secondary);
  color: var(--brand-dark) !important;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}
.cta-quote .btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  background: #FACC15;
}

/* FOOTER */
.site-footer {
  background: var(--brand-dark) !important;
  color: rgba(255,255,255,0.65) !important;
  padding: 50px 0 30px !important;
  margin-top: 60px;
}
.site-footer .inside-footer-widgets,
.site-footer .footer-widgets,
.site-footer .site-info {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-footer a { color: #6EE7B7 !important; text-decoration: none; }
.site-footer a:hover { color: #D1FAE5 !important; }
.site-footer .site-info {
  text-align: center;
  font-size: 13px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin-top: 30px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: var(--brand-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: plfPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.55); animation: none; }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes plfPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.50); }
  50%      { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-float { animation: none; } }

/* Header CTA phone */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-whatsapp), var(--brand-whatsapp-dark));
  color: #fff !important;
  padding: 11px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.header-cta-phone:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.45); }

/* MOBILE */
@media (max-width: 900px) {
  .site-branding { width: 240px; height: 48px; }
  .header-cta-phone { padding: 9px 14px; font-size: 13px; }
}
@media (max-width: 600px) {
  .site-header .inside-header { padding: 0 16px !important; flex-wrap: wrap; gap: 12px; }
  .site-branding { width: 200px; height: 42px; }
  .inside-article { padding: 22px !important; }
  h1.entry-title { font-size: 26px; }
  .entry-content h2 { font-size: 21px; }
  .entry-content table { font-size: 13px; }
  .entry-content table thead th { padding: 12px 8px; font-size: 12px; }
  .entry-content table td { padding: 10px 8px; font-size: 13px; }
  .cta-quote { padding: 24px; }
  .cta-quote p { font-size: 16px; }
  .cta-quote .btn-quote { padding: 14px 26px; font-size: 15px; }
}
/* === CTA ENHANCEMENTS (appended to both per-site CSS files) === */

/* Inline CTA quote box — more visible */
.cta-quote {
  padding: 44px 36px !important;
  margin: 48px 0 !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18) !important;
}
.cta-quote::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 60%;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}
.cta-quote p {
  font-size: 22px !important;
  margin-bottom: 24px !important;
  position: relative;
  z-index: 1;
}
.cta-quote .btn-quote {
  padding: 20px 44px !important;
  font-size: 19px !important;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,255,255,0.50) !important;
  animation: ctaQuotePulse 2.4s ease-in-out infinite;
}
.cta-quote .btn-quote:hover {
  animation: none;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 38px rgba(0,0,0,0.32) !important;
}
@keyframes ctaQuotePulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,255,255,0.50); }
  50%      { box-shadow: 0 10px 28px rgba(0,0,0,0.25), 0 0 0 14px rgba(255,255,255,0);   }
}
@media (prefers-reduced-motion: reduce) {
  .cta-quote .btn-quote { animation: none; }
}

/* Header "Get Free Quote" CTA */
.header-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-secondary, #16A34A);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.header-quote-btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  filter: brightness(1.08);
}
.header-quote-btn::before {
  content: '⚡';
  font-size: 16px;
}

/* Mobile */
@media (max-width: 600px) {
  .cta-quote { padding: 28px 20px !important; margin: 32px 0 !important; }
  .cta-quote p { font-size: 18px !important; }
  .cta-quote .btn-quote { padding: 16px 28px !important; font-size: 16px !important; display: block; }
  .header-quote-btn { padding: 9px 14px; font-size: 12px; }
  .header-quote-btn::before { display: none; }
}
/* === /quote/ page form styles === */

.page-id-quote .inside-article,
.page-template-default.page .inside-article { padding: 36px !important; }

.quote-page { max-width: 720px; margin: 0 auto; }

.quote-page .quote-lead {
  text-align: center;
  font-size: 18px;
  color: var(--brand-muted);
  margin: 0 auto 28px;
  max-width: 620px;
  line-height: 1.6;
}

.quote-page .quote-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.quote-page .quote-trust span {
  font-size: 13px;
  color: var(--brand-secondary-dark);
  font-weight: 600;
  background: rgba(22,163,74,0.08);
  padding: 8px 14px;
  border-radius: 50px;
}

.quote-form {
  background: #fff !important;
  border: 2px solid var(--brand-border) !important;
  border-radius: var(--radius-xl) !important;
  padding: 40px !important;
  box-shadow: var(--shadow-xl) !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.quote-form h2 {
  text-align: center;
  color: var(--brand-dark) !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  border: none !important;
  letter-spacing: -0.5px;
}

.quote-form .quote-sub {
  text-align: center;
  color: var(--brand-muted);
  font-size: 14px;
  margin: 0 0 28px;
}

.quote-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 14px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 2px solid var(--brand-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--brand-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--brand-primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0,102,204,0.10);
}

.quote-form .btn-submit {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.20);
  transition: all 0.25s ease;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.quote-form .btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
  filter: brightness(1.08);
}
.quote-form .btn-submit:disabled { opacity: 0.7; cursor: wait; }

.quote-form .lgpd {
  text-align: center;
  color: #94A3B8;
  font-size: 11px;
  margin: 16px 0 0;
  line-height: 1.5;
}

#success-msg {
  display: none;
  text-align: center;
  padding: 50px 24px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--brand-secondary);
}
#success-msg h3 {
  color: var(--brand-secondary-dark);
  font-size: 28px;
  margin: 0 0 12px;
}
#success-msg p {
  font-size: 16px;
  color: var(--brand-text);
  max-width: 480px;
  margin: 0 auto 10px;
}

@media (max-width: 600px) {
  .quote-form { padding: 24px !important; }
  .quote-form h2 { font-size: 22px !important; }
  .quote-page .quote-lead { font-size: 15px; }
  .quote-page .quote-trust { gap: 10px; }
  .quote-page .quote-trust span { font-size: 11px; padding: 6px 10px; }
}

/* page-id-quote hide title (duplicate with form H2) */
body.page .entry-header:has(h1.entry-title) { display: none; }
body.page article .entry-content > .quote-page { max-width: 720px; margin: 0 auto; }
body.page .entry-meta, body.page .entry-header .posted-on { display: none !important; }
/* Hide the default "Get Your Free Quote" nav link appended by WP */
.main-navigation .menu-item-page { display: none; }
