/*
Theme Name:  VIP Premier Painting
Theme URI:   https://viphomepainting.com
Description: VIP Premier Painting — Community Landing Page Theme. Full design system with REST API agent access. One theme, unlimited city pages.
Author:      VIP Premier Painting
Author URI:  https://viphomepainting.com
Version:     1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License:     Private
Text Domain: vip-premier

--- BRAND TOKENS ---
Orange:    #e8833a
Navy:      #1a1f4e  
Gold:      #d4722e
Warm Gray: #9a9a9a
White:     #ffffff
Cream:     #f8f7f4
Fonts:     Cormorant Garamond + Montserrat
*/

/* ============================================================
   BRAND VARIABLES
   ============================================================ */
:root {
  --vip-orange:    #e8833a;
  --vip-orange-h:  #d4722e;
  --vip-navy:      #1a1f4e;
  --vip-navy-d:    #0d0f1a;
  --vip-navy-m:    #1e2458;
  --vip-white:     #ffffff;
  --vip-cream:     #f8f7f4;
  --vip-gray:      #9a9a9a;
  --vip-dark:      #0d0f1a;
  --vip-dark-card: #1a1d2e;
  --vip-fd:        'Cormorant Garamond', Georgia, serif;
  --vip-fb:        'Montserrat', sans-serif;
  --vip-mw:        480px;
  --vip-r:         8px;
  --vip-tr:        0.3s ease;
}

/* ============================================================
   GLOBAL RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--vip-white); }
body {
  font-family: var(--vip-fb) !important;
  color: var(--vip-navy) !important;
  background: var(--vip-white) !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   WORDPRESS ADMIN BAR FIX
   ============================================================ */
.admin-bar .vip-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .vip-nav { top: 46px; }
}

/* ============================================================
   HIDE DEFAULT WORDPRESS ELEMENTS ON LANDING PAGES
   ============================================================ */
body.vip-landing-page .site-header,
body.vip-landing-page .site-footer,
body.vip-landing-page #wpadminbar + * > header,
body.vip-landing-page .entry-header,
body.vip-landing-page .entry-footer,
body.vip-landing-page .comments-area,
body.vip-landing-page .post-navigation {
  display: none !important;
}

body.vip-landing-page .site-main,
body.vip-landing-page .entry-content,
body.vip-landing-page article {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}

/* ============================================================
   VIP NAV
   ============================================================ */
.vip-nav {
  background: var(--vip-navy);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.vip-logo {
  font-family: var(--vip-fd);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--vip-orange);
  letter-spacing: 2px;
  line-height: 1;
}
.vip-logo span {
  display: block;
  font-family: var(--vip-fb);
  font-size: .48rem;
  font-weight: 400;
  letter-spacing: 5px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  margin-top: 2px;
}
.vip-nav-phone {
  color: var(--vip-orange);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.vip-hero {
  padding: 3rem 1.4rem 2rem;
  text-align: center;
  max-width: var(--vip-mw);
  margin: 0 auto;
  background: var(--vip-white);
}
.vip-location-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #f0f2ff;
  border: 1px solid #d0d5f0;
  border-radius: 50px;
  padding: .35rem 1.1rem;
  font-family: var(--vip-fb);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vip-navy);
  margin-bottom: 1.4rem;
}
.vip-location-badge::before { content: '● '; color: var(--vip-orange); }
.vip-h1 {
  font-family: var(--vip-fd);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vip-navy);
  line-height: 1.18;
  margin-bottom: .7rem;
}
.vip-h1 em {
  font-style: italic;
  color: var(--vip-orange);
}
.vip-hero-sub {
  font-family: var(--vip-fd);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--vip-gray);
  margin-bottom: 1.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.vip-btn-primary {
  display: block;
  width: 100%;
  background: var(--vip-orange);
  color: var(--vip-white);
  font-family: var(--vip-fb);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 1.05rem 1.5rem;
  border-radius: var(--vip-r);
  text-align: center;
  transition: background var(--vip-tr), transform var(--vip-tr);
  margin: 1rem 0 .5rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 18px rgba(232,131,58,.35);
}
.vip-btn-primary:hover {
  background: var(--vip-orange-h);
  transform: translateY(-1px);
  color: var(--vip-white);
}
.vip-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--vip-orange);
  color: var(--vip-white);
  font-family: var(--vip-fb);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .85rem 1.4rem;
  border-radius: var(--vip-r);
  transition: background var(--vip-tr);
  margin-top: 1rem;
  cursor: pointer;
  border: none;
}
.vip-btn-secondary:hover { background: var(--vip-orange-h); color: var(--vip-white); }

/* ============================================================
   ALL SECTIONS — WHITE/CREAM BACKGROUNDS
   ============================================================ */
.vip-section-white { background: var(--vip-white); padding: 3rem 1.4rem; }
.vip-section-cream { background: var(--vip-cream); padding: 3rem 1.4rem; }
.vip-section-navy  { background: var(--vip-navy);  padding: 3rem 1.4rem; }

.vip-section-inner {
  max-width: var(--vip-mw);
  margin: 0 auto;
}

/* Labels */
.vip-label {
  font-family: var(--vip-fb);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vip-orange);
  display: block;
  margin-bottom: .9rem;
}

/* Section headings */
.vip-h2 {
  font-family: var(--vip-fd);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vip-navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-align: center;
}
.vip-h2 em { font-style: italic; color: var(--vip-orange); }
.vip-h2-light {
  font-family: var(--vip-fd);
  font-size: 2rem;
  font-weight: 400;
  color: var(--vip-white);
  line-height: 1.25;
  margin-bottom: 2rem;
  text-align: center;
}
.vip-h2-light em { font-style: italic; color: rgba(255,255,255,.55); }

/* ============================================================
   DIFFERENCE STRIP
   ============================================================ */
.vip-diff-strip {
  background: var(--vip-cream);
  border-radius: var(--vip-r);
  margin: 0 1rem;
  padding: 1.4rem;
  text-align: center;
}
.vip-diff-text { font-size: .85rem; color: var(--vip-navy); line-height: 1.7; }
.vip-diff-text mark {
  background: #fff3b0;
  padding: 0 3px;
  border-radius: 2px;
  color: var(--vip-navy);
  font-weight: 700;
}

/* ============================================================
   CASE STUDY / TESTIMONIAL
   ============================================================ */
.vip-test-card {
  background: var(--vip-white);
  border-radius: 12px;
  padding: 1.8rem 1.4rem;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
  border: 1px solid rgba(26,31,78,.07);
  text-align: left;
  margin-top: 1.5rem;
}
.vip-test-quote {
  font-family: var(--vip-fd);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--vip-navy);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.vip-stars { color: var(--vip-orange); font-size: 1.1rem; margin: 1rem 0; }
.vip-client-name { font-family: var(--vip-fd); font-size: 1.05rem; font-weight: 700; color: var(--vip-navy); }
.vip-client-loc {
  font-family: var(--vip-fb);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vip-gray);
}

/* Toggle buttons */
.vip-toggle-btn {
  font-family: var(--vip-fb);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .42rem 1.05rem;
  border-radius: 50px;
  border: 1px solid #c5b8e8;
  background: transparent;
  color: var(--vip-gray);
  cursor: pointer;
  transition: all var(--vip-tr);
}
.vip-toggle-btn.active {
  background: var(--vip-navy);
  border-color: var(--vip-navy);
  color: var(--vip-white);
}

/* ============================================================
   WARRANTY BADGE
   ============================================================ */
.vip-warranty-wrap {
  background: var(--vip-cream);
  padding: 2.5rem 1.4rem;
  text-align: center;
}
.vip-warranty-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  background: var(--vip-white);
  border: 2px solid rgba(232,131,58,.2);
  border-radius: 12px;
  padding: 2rem 3rem;
  box-shadow: 0 4px 24px rgba(26,31,78,.08);
}
.vip-warranty-icon { font-size: 2.5rem; }
.vip-warranty-pre { font-family: var(--vip-fb); font-size: .6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--vip-navy); }
.vip-warranty-main {
  font-family: var(--vip-fb);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vip-orange);
  line-height: 1;
}

/* ============================================================
   PROCESS STEPS 01/02/03
   ============================================================ */
.vip-process { padding: 4rem 1.4rem; text-align: center; max-width: var(--vip-mw); margin: 0 auto; }
.vip-steps { display: flex; flex-direction: column; gap: 2rem; }
.vip-step { text-align: center; }
.vip-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--vip-cream);
  font-family: var(--vip-fd);
  font-size: 1.4rem;
  color: var(--vip-gray);
  margin-bottom: .9rem;
  border: 1px solid #e0e0e0;
}
.vip-step-num.active {
  background: var(--vip-orange);
  color: var(--vip-white);
  border-color: var(--vip-orange);
  box-shadow: 0 3px 16px rgba(232,131,58,.4);
}
.vip-step h3 { font-family: var(--vip-fb); font-size: .9rem; font-weight: 600; color: var(--vip-navy); margin-bottom: .4rem; }
.vip-step h3.orange { color: var(--vip-orange); }
.vip-step p { font-size: .75rem; color: var(--vip-gray); line-height: 1.65; }

/* ============================================================
   COLOR VISUALIZER
   ============================================================ */
.vip-viz-wrap {
  background: var(--vip-cream);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 24px rgba(26,31,78,.06);
}
.vip-viz-topbar {
  background: #ece9e4;
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vip-viz-tab {
  font-family: var(--vip-fb);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .42rem .85rem;
  border-radius: 50px;
  border: 1px solid rgba(26,31,78,.2);
  background: transparent;
  color: var(--vip-gray);
  cursor: pointer;
  transition: all var(--vip-tr);
}
.vip-viz-tab.active {
  border-color: var(--vip-orange);
  color: var(--vip-navy);
  background: rgba(232,131,58,.1);
}
.vip-swatch {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .32rem .78rem;
  border-radius: 50px;
  font-family: var(--vip-fb);
  font-size: .6rem;
  color: var(--vip-navy);
  border: 1px solid rgba(26,31,78,.18);
  background: var(--vip-white);
}

/* ============================================================
   STATS
   ============================================================ */
.vip-stats { padding: 3.5rem 1.4rem; background: var(--vip-cream); }
.vip-stat { padding: 2rem 0; text-align: center; border-bottom: 1px solid #e8e4e0; }
.vip-stat:last-child { border-bottom: none; }
.vip-stat-num {
  display: block;
  font-family: var(--vip-fd);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--vip-navy);
  line-height: 1;
  margin-bottom: .2rem;
}
.vip-stat-label {
  display: block;
  font-family: var(--vip-fb);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vip-orange);
  margin-bottom: .7rem;
}
.vip-stat p { font-size: .75rem; color: var(--vip-gray); line-height: 1.6; max-width: 220px; margin: 0 auto; }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.vip-svc-card {
  border-radius: var(--vip-r);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  cursor: pointer;
  margin-bottom: 1.2rem;
}
.vip-svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(13,15,26,.75));
}
.vip-svc-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.vip-svc-bg.ext { background: linear-gradient(135deg, #8fa8b8, #5a7a94); }
.vip-svc-bg.int { background: linear-gradient(135deg, #c4b49a, #9a8870); }
.vip-svc-bg.cab { background: linear-gradient(135deg, #b0bec5, #78909c); }
.vip-svc-content { position: relative; z-index: 1; text-align: left; }
.vip-svc-type { font-family: var(--vip-fb); font-size: .52rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--vip-orange); margin-bottom: .25rem; }
.vip-svc-card h3 { font-family: var(--vip-fd); font-size: 1.45rem; font-weight: 700; color: var(--vip-white); margin-bottom: .45rem; }
.vip-svc-card p { font-size: .7rem; color: rgba(255,255,255,.65); line-height: 1.5; margin-bottom: .85rem; }
.vip-svc-link { display: inline-block; font-family: var(--vip-fb); font-size: .56rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--vip-white); background: var(--vip-orange); padding: .4rem .9rem; border-radius: 4px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.vip-faq-item { border-bottom: 1px solid rgba(26,31,78,.08); }
.vip-faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; cursor: pointer; gap: 1rem; }
.vip-faq-q-text { font-family: var(--vip-fb); font-size: .85rem; font-weight: 600; color: var(--vip-navy); line-height: 1.4; }
.vip-faq-icon { font-size: 1.2rem; color: var(--vip-orange); flex-shrink: 0; transition: transform var(--vip-tr); }
.vip-faq-item.open .vip-faq-icon { transform: rotate(45deg); }
.vip-faq-a { font-size: .8rem; color: #555; line-height: 1.75; padding-bottom: 1.1rem; display: none; }
.vip-faq-item.open .vip-faq-a { display: block; }

/* ============================================================
   LEAD FORM
   ============================================================ */
.vip-lead-gate {
  background: var(--vip-cream);
  border: 1px solid #e0ddd8;
  border-radius: 12px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  margin-top: 1.5rem;
}
.vip-lead-gate h3 { font-family: var(--vip-fd); font-size: 1.35rem; font-weight: 700; color: var(--vip-navy); margin-bottom: .4rem; }
.vip-lead-gate p { font-size: .76rem; color: var(--vip-gray); margin-bottom: 1.2rem; line-height: 1.6; }
.vip-form-field {
  width: 100%;
  background: var(--vip-white);
  border: 1px solid rgba(26,31,78,.15);
  border-radius: var(--vip-r);
  color: var(--vip-navy);
  font-family: var(--vip-fb);
  font-size: .8rem;
  padding: .8rem 1rem;
  margin-bottom: .65rem;
  outline: none;
  transition: border-color var(--vip-tr);
}
.vip-form-field:focus { border-color: var(--vip-orange); }
.vip-form-field::placeholder { color: var(--vip-gray); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.vip-final-cta { padding: 4rem 1.4rem; background: var(--vip-cream); text-align: center; }
.vip-final-cta h2 { font-family: var(--vip-fd); font-size: 2.3rem; font-weight: 700; color: var(--vip-navy); line-height: 1.2; margin-bottom: .9rem; }
.vip-final-cta h2 em { font-style: italic; color: var(--vip-orange); }
.vip-urgency { font-weight: 700; color: var(--vip-navy); }

/* ============================================================
   FOOTER
   ============================================================ */
.vip-footer { background: var(--vip-dark); color: var(--vip-white); padding: 3rem 1.4rem 2rem; text-align: center; }
.vip-footer-logo-name { font-family: var(--vip-fb); font-size: 1.1rem; font-weight: 800; color: var(--vip-orange); letter-spacing: 2px; text-transform: uppercase; }
.vip-nap a { color: var(--vip-orange); font-size: .8rem; }
.vip-footer-nav a { font-size: .7rem; color: rgba(255,255,255,.35); transition: color var(--vip-tr); }
.vip-footer-nav a:hover { color: var(--vip-orange); }

/* ============================================================
   CONCIERGE CHAT WIDGET
   ============================================================ */
.vip-conc-btn {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--vip-orange);
  color: var(--vip-white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,131,58,.5);
  cursor: pointer;
  z-index: 9999;
  border: none;
  transition: transform var(--vip-tr);
}
.vip-conc-btn:hover { transform: scale(1.08); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.vip-reveal { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  .vip-h1 { font-size: 3.2rem; }
  .vip-steps { flex-direction: row; }
  .vip-stats { display: flex; }
  .vip-stat { flex: 1; padding: 2rem; border-bottom: none; border-right: 1px solid #e8e4e0; }
  .vip-stat:last-child { border-right: none; }
}
