/* ═══════════════════════════════════════════════
   VS Painting Contractor PROFESSIONAL SERVICES
   Shared Stylesheet — style.css
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@300;400;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

:root {
  --navy:        #1B2A4A;
  --navy-light:  #243560;
  --navy-dark:   #0F1A2E;
  --orange:      #E07B2A;
  --orange-light:#F0943D;
  --white:       #FFFFFF;
  --offwhite:    #F8F6F2;
  --gray:        #6B7280;
  --light-gray:  #F3F4F6;
  --r1: #FF3B3B;
  --r2: #FF7A00;
  --r3: #FFD600;
  --r4: #00C853;
  --r5: #2196F3;
  --r6: #9C27B0;
  --r7: #E91E8C;
}

/* ─── RESET ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Nunito', sans-serif;
  background:var(--white);
  color:var(--navy);
  overflow-x:hidden;
}
a { text-decoration:none; }
img { max-width:100%; }

/* ─── CUSTOM CURSOR ─── */
.cursor {
  width:18px; height:18px;
  border:2px solid var(--orange);
  border-radius:50%;
  position:fixed; pointer-events:none;
  z-index:99999; transform:translate(-50%,-50%);
  transition:transform .15s ease, background .2s;
  mix-blend-mode:difference;
}
.cursor-dot {
  width:6px; height:6px;
  background:var(--orange);
  border-radius:50%;
  position:fixed; pointer-events:none;
  z-index:99999; transform:translate(-50%,-50%);
}
@media (hover:none) { .cursor, .cursor-dot { display:none; } }

/* ─── LOADER ─── */
#loader {
  position:fixed; inset:0;
  background:var(--navy);
  z-index:9999;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:24px;
  transition:opacity .6s, visibility .6s;
}
#loader.hidden { opacity:0; visibility:hidden; }
.loader-brand {
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(2.5rem,6vw,4.5rem);
  color:white;
  letter-spacing:8px;
  animation:pulse 1s ease-in-out infinite alternate;
}
.loader-brand span { color:var(--orange); }
@keyframes pulse { from{opacity:.3} to{opacity:1} }
.drips { display:flex; gap:8px; }
.drip {
  width:14px; height:50px;
  border-radius:0 0 50% 50%;
  animation:drip 1s ease-in-out infinite alternate;
}
.drip:nth-child(1){background:var(--r1);animation-delay:0s}
.drip:nth-child(2){background:var(--r2);animation-delay:.1s}
.drip:nth-child(3){background:var(--r3);animation-delay:.2s}
.drip:nth-child(4){background:var(--r4);animation-delay:.3s}
.drip:nth-child(5){background:var(--r5);animation-delay:.4s}
.drip:nth-child(6){background:var(--r6);animation-delay:.5s}
.drip:nth-child(7){background:var(--r7);animation-delay:.6s}
@keyframes drip { from{height:20px} to{height:70px} }

/* ─── NAVBAR ─── */
nav {
  position:fixed; top:0; width:100%; z-index:1000;
  background:rgba(255, 255, 255, 0.97);
  backdrop-filter:blur(14px);
  border-bottom:3px solid var(--orange);
  padding:0 6%;
  display:flex; align-items:center; justify-content:space-between;
  height:90px;
  transition:all .3s;
}
nav.scrolled { box-shadow:0 4px 30px rgba(0,0,0,.35); }
.logo-nav { display:flex; align-items:center; }
.logo-nav img {  height: 85px; object-fit:contain; }
.logo-nav .logo-text {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.6rem; color:rgb(10, 10, 10); letter-spacing:3px;
  display:none;
}
.logo-nav .logo-text span { color:var(--orange); }
.nav-links { display:flex; gap:28px; list-style:none; align-items:center; }
.nav-links a {
  color:rgb(29 43 73);
  font-weight:800; font-size:.875rem;
  letter-spacing:1.2px; text-transform:uppercase;
  position:relative; padding-bottom:4px;
  transition:color .3s;
}
@media (max-width:500px) {
  .nav-links a {
    color:white;
  }
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px; background:var(--orange);
  transition:width .3s;
}
.nav-links a:hover { color:var(--orange); }
.nav-links a:hover::after { width:100%; }
.nav-links a.active { color:var(--orange); }
.nav-links a.active::after { width:100%; }
.nav-cta {
  background:var(--orange) !important;
  color:white !important;
  padding:10px 24px !important;
  border-radius:5px !important;
  transition:background .3s, transform .2s !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--orange-light) !important; transform:translateY(-2px) !important; }
.hamburger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; border:none; background:none; padding:5px;
}
.hamburger span { width:28px; height:3px; background:#283049; border-radius:2px; transition:all .3s; display:block; }
.hamburger.open span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

/* ─── RAINBOW BAR ─── */
.rainbow-bar {
  height:5px;
  background:linear-gradient(90deg,#FF3B3B,#FF7A00,#FFD600,#00C853,#2196F3,#9C27B0,#E91E8C,#FF3B3B);
  background-size:300%;
  animation:rainbowShift 4s linear infinite;
}
@keyframes rainbowShift { 0%{background-position:0%} 100%{background-position:300%} }

/* ─── COMMON SECTION ─── */
.section { padding:100px 8%; }
.section-tag {
  display:inline-block;
  font-size:.78rem; font-weight:800;
  letter-spacing:3px; text-transform:uppercase;
  color:var(--orange); margin-bottom:12px;
}
.section-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,4vw,3rem);
  font-weight:900; color:var(--navy);
  line-height:1.15; margin-bottom:16px;
}
.section-title.light { color:white; }
.section-sub {
  color:var(--gray); font-size:1rem;
  line-height:1.75; max-width:580px;
  margin-bottom:56px;
}
.section-sub.center { margin-left:auto; margin-right:auto; text-align:center; }
.section-sub.light { color:rgba(255,255,255,.65); }

/* ─── BUTTONS ─── */
.btn-primary {
  background:var(--orange);
  color:white; padding:15px 38px;
  border:none; border-radius:5px;
  font-family:'Nunito',sans-serif;
  font-weight:800; font-size:.95rem;
  letter-spacing:1px; cursor:pointer;
  display:inline-block;
  transition:all .3s; position:relative; overflow:hidden;
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,.18);
  transform:translateX(-100%); transition:transform .3s;
}
.btn-primary:hover::before { transform:translateX(0); }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 14px 35px rgba(224,123,42,.45); }
.btn-outline {
  background:transparent; color:white;
  padding:15px 38px;
  border:2px solid rgba(255,255,255,.4);
  border-radius:5px;
  font-family:'Nunito',sans-serif;
  font-weight:800; font-size:.95rem;
  cursor:pointer; display:inline-block;
  transition:all .3s;
}
.btn-outline:hover { border-color:var(--orange); color:var(--orange); transform:translateY(-3px); }
.btn-navy {
  background:var(--navy); color:white;
  padding:15px 38px; border:none; border-radius:5px;
  font-family:'Nunito',sans-serif;
  font-weight:800; font-size:.95rem;
  letter-spacing:1px; cursor:pointer;
  display:inline-block; transition:all .3s;
}
.btn-navy:hover { background:var(--orange); transform:translateY(-3px); box-shadow:0 14px 35px rgba(224,123,42,.4); }

/* ─── WHY STRIP ─── */
.why-strip {
  background:var(--navy);
  padding:70px 8%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}
.why-item { text-align:center; color:white; }
.why-icon {
  width:68px; height:68px;
  background:var(--orange);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px; font-size:1.8rem;
  transition:transform .3s;
}
.why-item:hover .why-icon { transform:scale(1.1) rotate(-8deg); }
.why-item h3 { font-weight:800; font-size:1.05rem; margin-bottom:8px; }
.why-item p { color:rgba(255,255,255,.6); font-size:.88rem; line-height:1.65; }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
}
.service-card {
  background:var(--offwhite);
  border-radius:14px; padding:36px 32px;
  position:relative; overflow:hidden;
  cursor:pointer;
  transition:all .4s cubic-bezier(.25,.8,.25,1);
  border:2px solid transparent;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:4px;
  background:linear-gradient(90deg,var(--orange),var(--r5));
  transform:scaleX(0); transition:transform .4s;
  transform-origin:left;
}
.service-card:hover { transform:translateY(-8px); border-color:var(--orange); background:white; box-shadow:0 20px 60px rgba(27,42,74,.12); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon { font-size:3rem; margin-bottom:20px; display:block; transition:transform .3s; }
.service-card:hover .service-icon { transform:scale(1.15) rotate(-5deg); }
.service-card h3 { font-family:'Playfair Display',serif; font-size:1.35rem; font-weight:700; margin-bottom:12px; color:var(--navy); }
.service-card p { color:var(--gray); line-height:1.7; font-size:.93rem; }
.service-card .learn-more {
  display:inline-flex; align-items:center; gap:6px;
  color:var(--orange); font-weight:700; margin-top:20px;
  font-size:.9rem; transition:gap .3s;
}
.service-card:hover .learn-more { gap:12px; }

/* ─── CTA BAND ─── */
.cta-band {
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 100%);
  padding:90px 8%; text-align:center;
  position:relative; overflow:hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at center,rgba(224,123,42,.18) 0%,transparent 70%);
}
.cta-band h2 {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2.5rem,5vw,4.5rem);
  color:white; letter-spacing:3px;
  margin-bottom:16px; position:relative;
}
.cta-band p { color:rgba(255,255,255,.7); font-size:1.05rem; margin-bottom:36px; position:relative; }

/* ─── TESTIMONIALS MARQUEE ─── */
.testimonials { background:var(--light-gray); padding:90px 0; overflow:hidden; }
.testi-header { text-align:center; padding:0 8%; margin-bottom:52px; }
.testi-track {
  display:flex; gap:28px;
  animation:marquee 28s linear infinite;
  width:max-content;
}
.testi-track:hover { animation-play-state:paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.testi-card {
  background:white; border-radius:14px;
  padding:32px 28px; width:340px; flex-shrink:0;
  box-shadow:0 4px 24px rgba(0,0,0,.07);
  border-left:4px solid var(--orange);
}
.stars { color:#FFD600; font-size:1.05rem; margin-bottom:14px; letter-spacing:2px; }
.testi-card p { color:var(--gray); font-size:.93rem; line-height:1.7; margin-bottom:20px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:13px; }
.testi-avatar {
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:1rem; color:white; flex-shrink:0;
}
.testi-name { font-weight:800; color:var(--navy); font-size:.9rem; }
.testi-role { color:var(--gray); font-size:.78rem; }

/* ─── FOOTER ─── */
footer { background:var(--navy-dark); padding:70px 8% 30px; color:rgba(255,255,255,.7); }
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:52px; margin-bottom:52px;
}
.footer-brand-name { font-family:'Bebas Neue',sans-serif; font-size:2rem; color:white; letter-spacing:4px; margin-bottom:14px; }
.footer-brand-name span { color:var(--orange); }
.footer-brand p { font-size:.9rem; line-height:1.75; margin-bottom:24px; }
.footer-socials { display:flex; gap:10px; }
.social-btn {
  width:42px; height:42px; border-radius:8px;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  font-size:1.15rem; transition:all .3s; cursor:pointer;
}
.social-btn:hover { background:var(--orange); transform:translateY(-3px); }
.footer-col h4 {
  color:white; font-weight:800; font-size:.85rem;
  letter-spacing:1.5px; text-transform:uppercase; margin-bottom:22px;
  position:relative; padding-bottom:10px;
}
.footer-col h4::after { content:''; position:absolute; bottom:0; left:0; width:30px; height:2px; background:var(--orange); }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:11px; }
.footer-col ul li a { color:rgba(255,255,255,.6); font-size:.9rem; transition:color .3s; display:flex; align-items:center; gap:6px; }
.footer-col ul li a:hover { color:var(--orange); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.1); padding-top:28px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px; font-size:.84rem;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity:0; transform:translateY(40px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-50px); transition:opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(50px); transition:opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.reveal-scale { opacity:0; transform:scale(.9); transition:opacity .7s ease, transform .7s ease; }
.reveal-scale.visible { opacity:1; transform:scale(1); }

/* ─── PAGE HERO BANNER (inner pages) ─── */
.page-hero {
  background:var(--navy);
  min-height:320px;
  display:flex; align-items:center;
  padding:120px 8% 70px;
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 80% at 80% 50%,rgba(224,123,42,.14) 0%,transparent 70%);
}
.page-hero-content { position:relative; z-index:1; }
.page-hero .breadcrumb {
  display:flex; align-items:center; gap:10px;
  color:rgba(255,255,255,.5); font-size:.85rem;
  margin-bottom:18px;
}
.page-hero .breadcrumb a { color:rgba(255,255,255,.5); transition:color .3s; }
.page-hero .breadcrumb a:hover { color:var(--orange); }
.page-hero .breadcrumb span { color:var(--orange); }
.page-hero h1 {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(3rem,7vw,6rem);
  color:white; letter-spacing:4px; line-height:1;
}
.page-hero h1 em { color:var(--orange); font-style:normal; }
.page-hero p { color:rgba(255,255,255,.65); font-size:1.05rem; margin-top:16px; max-width:500px; }
.hero-deco-circle {
  position:absolute; right:8%; top:50%;
  transform:translateY(-50%);
  width:280px; height:280px; border-radius:50%;
  border:2px solid rgba(224,123,42,.2);
  animation:rotateSlow 20s linear infinite;
}
.hero-deco-circle::after {
  content:''; position:absolute; inset:20px; border-radius:50%;
  border:2px dashed rgba(224,123,42,.15);
  animation:rotateSlow 10s linear infinite reverse;
}
@keyframes rotateSlow { 0%{transform:translateY(-50%) rotate(0)} 100%{transform:translateY(-50%) rotate(360deg)} }
.hero-icon-big { position:absolute; right:9%; top:50%; transform:translateY(-50%); font-size:clamp(6rem,12vw,10rem); opacity:.25; animation:float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(-50%) translateY(0)} 50%{transform:translateY(-50%) translateY(-20px)} }

/* ─── MOBILE ─── */
@media (max-width:900px) {
  .nav-links {
    display:none; flex-direction:column;
    position:absolute; top:72px; left:0; right:0;
    background:var(--navy); padding:20px 6%;
    border-top:1px solid rgba(255,255,255,.1); gap:10px;
  }
  .nav-links.open { display:flex; }
  .hamburger { display:flex; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .section { padding:72px 6%; }
}
@media (max-width:600px) {
  .section { padding:60px 5%; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .hero-deco-circle, .hero-icon-big { display:none; }
}


