/* =============================================
   REVISIONS UNLIMITED — Custom Styles
   ============================================= */

:root {
  --primary:       #1a3a6b;
  --primary-dark:  #0f2347;
  --primary-light: #2a5298;
  --accent:        #f97316;
  --accent-dark:   #ea580c;
  --accent-light:  #fb923c;
  --dark:          #0f172a;
  --gray-dark:     #334155;
  --gray:          #64748b;
  --gray-light:    #cbd5e1;
  --light:         #f8fafc;
  --white:         #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ---- UTILITY ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

.text-accent  { color: var(--accent); }
.text-primary { color: var(--primary); }
.bg-primary   { background: var(--primary); }
.bg-dark      { background: var(--dark); }
.bg-accent    { background: var(--accent); }
.bg-light     { background: var(--light); }

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 2.25rem; border-radius: 7px; font-weight: 800;
  font-size: 1rem; text-decoration: none; border: none; cursor: pointer;
  transition: all .25s ease; letter-spacing: .03em;
}
.btn-primary  { background: var(--accent); color: #fff; box-shadow: 0 4px 20px rgba(249,115,22,.35); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(249,115,22,.5); }
.btn-outline  { background: rgba(255,255,255,.08); color: #fff; border: 2px solid rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-3px); }
.btn-primary-dark { background: var(--primary); color: #fff; }
.btn-primary-dark:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,58,107,.4); }

.section-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800;
  line-height: 1.2; color: var(--primary-dark);
}
.section-title span { color: var(--accent); }
.section-desc { color: var(--gray); font-size: 1.05rem; line-height: 1.7; max-width: 600px; }

/* ---- NAV ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .3s ease;
  padding: 1.25rem 0;
}
#navbar.scrolled {
  background: var(--primary-dark);
  padding: .75rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo img {
  height: 72px; width: auto;
  filter: brightness(1.15) drop-shadow(0 0 12px rgba(56,189,248,.6));
  transition: filter .3s, transform .2s;
}
.nav-logo:hover img { transform: scale(1.04); filter: brightness(1.25) drop-shadow(0 0 18px rgba(56,189,248,.85)); }
#navbar.scrolled .nav-logo img {
  height: 62px;
  filter: brightness(1.15) drop-shadow(0 0 10px rgba(56,189,248,.55));
}
footer .nav-logo img {
  height: 52px;
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(56,189,248,.4));
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .name { font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: .02em; }
.nav-logo-text .tagline { font-size: .65rem; font-weight: 500; color: rgba(255,255,255,.65); letter-spacing: .1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.85); text-decoration: none; font-size: .9rem; font-weight: 600;
  padding: .5rem .9rem; border-radius: 5px; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-cta { background: var(--accent) !important; color: #fff !important; border-radius: 5px; padding: .5rem 1.2rem !important; }
.nav-cta:hover { background: var(--accent-dark) !important; transform: none; }
.nav-phone { color: rgba(255,255,255,.9); font-weight: 700; font-size: .9rem; display: flex; align-items: center; gap: .4rem; }
.nav-phone i { color: var(--accent); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: .25rem;
}
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--primary-dark); flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; text-decoration: none; font-size: 1.5rem; font-weight: 700; }
.mobile-menu .mob-cta { background: var(--accent); padding: .75rem 2.5rem; border-radius: 6px; }

/* ---- HERO ---- */
#hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: #050c23;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/web/bobcat/IMG_4933.jpg');
  background-size: cover; background-position: center 40%;
  transform: scale(1.05); transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,12,35,.78) 0%,
    rgba(5,12,35,.65) 60%,
    rgba(5,12,35,.82) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; padding: 8rem 0 4rem; max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(249,115,22,.18); border: 1px solid rgba(249,115,22,.45);
  color: #fb923c; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .4rem 1.1rem; border-radius: 50px;
  margin-bottom: 1.75rem; backdrop-filter: blur(6px);
}
.hero-badge i { font-size: .7rem; }
.hero-headline {
  font-size: clamp(3.4rem, 8vw, 6.5rem); font-weight: 900;
  line-height: 1.05; color: #fff; margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
  letter-spacing: -.02em;
}
.hero-headline span { color: var(--accent); display: block; }
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(255,255,255,.82); line-height: 1.72;
  margin-bottom: 2.75rem; max-width: 540px;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.trust-item { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 600; }
.trust-item i { color: var(--accent); font-size: .9rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-dot {
  width: 26px; height: 40px; border: 2px solid rgba(255,255,255,.3); border-radius: 13px;
  position: relative;
}
.scroll-dot::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--accent); border-radius: 2px;
  animation: scrollDot 2s ease infinite;
}
@keyframes scrollDot { 0%,100% { top: 5px; opacity: 1; } 50% { top: 20px; opacity: .3; } }

/* ---- QUICK CONTACT BAR ---- */
.quick-bar {
  background: var(--accent); color: #fff; padding: .9rem 0;
}
.quick-bar-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; }
.quick-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; font-weight: 700; color: #fff; text-decoration: none;
  transition: opacity .2s;
}
.quick-item:hover { opacity: .8; }
.quick-item i { font-size: 1rem; }
.quick-divider { width: 1px; height: 20px; background: rgba(255,255,255,.35); }

/* ---- SERVICES SECTION ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: all .3s ease;
  border: 1px solid #f1f5f9;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,58,107,.12); }
.service-card-img { height: 200px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-img .card-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700;
  padding: .25rem .75rem; border-radius: 50px; letter-spacing: .08em; text-transform: uppercase;
}
.service-card-body { padding: 1.5rem; }
.service-card-icon {
  width: 50px; height: 50px; background: rgba(249,115,22,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.3rem; margin-bottom: 1rem;
}
.service-card-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .5rem; }
.service-card-body p { color: var(--gray); font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; }
.service-card-link {
  color: var(--accent); font-size: .88rem; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: .4rem;
  transition: gap .2s;
}
.service-card-link:hover { gap: .7rem; }

/* ---- ABOUT SECTION ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 480px; object-fit: cover; border-radius: 12px; }
.about-badge-box {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--accent); color: #fff; border-radius: 12px;
  padding: 1.5rem 2rem; text-align: center; box-shadow: 0 8px 24px rgba(249,115,22,.35);
}
.about-badge-box .num { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-badge-box .lbl { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.about-tag-row { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.5rem 0; }
.about-tag {
  background: rgba(26,58,107,.07); color: var(--primary); border-radius: 50px;
  font-size: .8rem; font-weight: 700; padding: .35rem 1rem; letter-spacing: .04em;
}
.warranty-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.warranty-card {
  background: var(--light); border-radius: 10px; padding: 1.2rem;
  border-left: 3px solid var(--accent);
}
.warranty-card .w-num { font-size: 1.6rem; font-weight: 900; color: var(--accent); line-height: 1; }
.warranty-card .w-lbl { font-size: .8rem; color: var(--gray-dark); font-weight: 600; margin-top: .2rem; }

/* ---- STATS ---- */
.stats-section { background: var(--primary-dark); color: #fff; padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item .num { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; color: var(--accent); line-height: 1; }
.stat-item .suf { font-size: 1.5rem; }
.stat-item .lbl { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: .5rem; }

/* ---- WHY CHOOSE US ---- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.why-card {
  background: #fff; border-radius: 12px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid #f1f5f9;
  transition: all .3s; text-align: center;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,58,107,.1); border-color: rgba(249,115,22,.2); }
.why-icon {
  width: 68px; height: 68px; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .5rem; }
.why-card p { color: var(--gray); font-size: .88rem; line-height: 1.65; }

/* ---- PROCESS ---- */
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 0; margin-top: 3rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 35px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; padding: 0 1rem; }
.step-num {
  width: 70px; height: 70px; margin: 0 auto 1rem;
  background: var(--accent); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(249,115,22,.3);
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .5rem; }
.step p { color: var(--gray); font-size: .85rem; line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: #fff; border-radius: 12px; padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.06); position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-size: 5rem; color: rgba(249,115,22,.12);
  position: absolute; top: .5rem; left: 1.25rem; line-height: 1;
  font-family: Georgia, serif; font-weight: 900;
}
.stars { color: #fbbf24; font-size: .95rem; margin-bottom: 1rem; }
.testimonial-card p { color: var(--gray-dark); font-size: .92rem; line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; font-weight: 700;
}
.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--primary-dark); }
.reviewer-loc { font-size: .78rem; color: var(--gray); }

/* ---- GALLERY ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: .75rem; margin-top: 2rem; }
.gallery-item { overflow: hidden; border-radius: 10px; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(8) { grid-column: span 4; grid-row: span 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(10,20,50,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; color: #fff; font-size: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, rgba(249,115,22,.3) 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner-inner { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---- CONTACT SECTION ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; }
.contact-info-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(249,115,22,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
}
.contact-info-item h4 { font-size: .85rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.contact-info-item a, .contact-info-item p { color: var(--primary-dark); font-size: 1rem; font-weight: 600; text-decoration: none; }
.contact-info-item a:hover { color: var(--accent); }
.map-embed { margin-top: 2rem; border-radius: 12px; overflow: hidden; height: 220px; background: #e2e8f0; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ---- FORM ---- */
.form-card { background: #fff; border-radius: 16px; padding: 2.5rem; box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem; border: 2px solid #e2e8f0;
  border-radius: 8px; font-size: .95rem; font-family: inherit; color: var(--dark);
  background: #fff; transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; background: var(--accent); color: #fff; border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .25s; font-family: inherit; }
.form-submit:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.35); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success i { font-size: 3rem; color: #22c55e; margin-bottom: 1rem; display: block; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .5rem; }
.form-success p { color: var(--gray); }

/* ---- FOOTER ---- */
footer {
  background: var(--dark); color: rgba(255,255,255,.7); padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand .desc { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: .6rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; text-decoration: none; transition: all .2s;
}
.social-btn:hover { background: var(--accent); color: #fff; }
.footer-heading { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: .75rem; margin-bottom: 1rem; }
.footer-contact-item i { color: var(--accent); margin-top: .15rem; font-size: .9rem; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); margin-top: 3rem;
  padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }

/* ---- FLOATING ACTION BUTTONS ---- */
.fab-group {
  position: fixed; bottom: 2rem; right: 1.5rem; z-index: 900;
  display: flex; flex-direction: column; gap: .75rem; align-items: flex-end;
}
.fab-toggle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(249,115,22,.5); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.fab-toggle:hover { background: var(--accent-dark); transform: scale(1.08); }
.fab-actions { display: flex; flex-direction: column; gap: .6rem; align-items: flex-end; }
.fab-btn {
  display: flex; align-items: center; gap: .6rem;
  background: var(--primary-dark); color: #fff; border-radius: 50px;
  padding: .6rem 1.1rem .6rem .7rem; text-decoration: none; font-size: .82rem; font-weight: 700;
  box-shadow: 0 3px 12px rgba(0,0,0,.25); transition: all .2s;
  transform: translateX(80px); opacity: 0; pointer-events: none;
}
.fab-actions.open .fab-btn { transform: translateX(0); opacity: 1; pointer-events: all; }
.fab-actions.open .fab-btn:nth-child(1) { transition-delay: .05s; }
.fab-actions.open .fab-btn:nth-child(2) { transition-delay: .1s; }
.fab-actions.open .fab-btn:nth-child(3) { transition-delay: .15s; }
.fab-btn i { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; }
.fab-btn:hover { background: var(--primary); transform: translateX(-3px); }
.fab-btn span { white-space: nowrap; }

/* ---- PAGE HEROES (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 8rem 0 4rem; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .18;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: .6rem; }

/* ---- APPLICATION FORM ---- */
.app-form-section { padding: 5rem 0; background: var(--light); }
.app-form-card { background: #fff; border-radius: 16px; padding: 3rem; box-shadow: 0 8px 32px rgba(0,0,0,.07); max-width: 820px; margin: 0 auto; }
.app-form-card h2 { font-size: 1.75rem; font-weight: 800; color: var(--primary-dark); margin-bottom: .5rem; }
.app-form-card .lead { color: var(--gray); margin-bottom: 2rem; font-size: .95rem; }
.upload-area {
  border: 2px dashed #cbd5e1; border-radius: 8px; padding: 2rem;
  text-align: center; cursor: pointer; transition: border-color .2s;
}
.upload-area:hover { border-color: var(--accent); }
.upload-area i { font-size: 2rem; color: var(--gray-light); margin-bottom: .5rem; display: block; }
.upload-area p { color: var(--gray); font-size: .88rem; }
.upload-area span { color: var(--accent); font-weight: 600; }
.service-check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: .75rem; margin-top: .5rem; }
.service-check { display: flex; align-items: center; gap: .6rem; font-size: .88rem; cursor: pointer; }
.service-check input { accent-color: var(--accent); width: 15px; height: 15px; }

/* ---- GALLERY PAGE ---- */
.gallery-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1rem; }
.gallery-full-item { aspect-ratio: 4/3; overflow: hidden; border-radius: 10px; position: relative; cursor: pointer; }
.gallery-full-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-full-item .g-overlay {
  position: absolute; inset: 0; background: rgba(10,20,50,.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; color: #fff;
}
.gallery-full-item:hover .g-overlay { opacity: 1; }
.g-overlay i { font-size: 1.5rem; margin-bottom: .4rem; }
.g-overlay span { font-size: .8rem; font-weight: 600; }

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1);
  border: none; color: #fff; font-size: 1.2rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--accent); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1);
  border: none; color: #fff; font-size: 1rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: background .2s;
}
.lightbox-nav:hover { background: var(--accent); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ---- AOS ANIMATIONS ---- */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(-24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(24px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(.92); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps::before { display: none; }
  .process-steps { gap: 1.5rem; }
  .about-badge-box { right: 0; bottom: -1rem; }
  .warranty-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .fab-group { bottom: 1.25rem; right: 1rem; }
}

/* ---- SCROLL TO TOP BUTTON ---- */
.scroll-top {
  position: fixed; bottom: 2rem; left: 1.5rem; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,58,107,.35); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: all .3s ease;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--accent); box-shadow: 0 6px 20px rgba(249,115,22,.4); transform: translateY(-3px); }

/* ---- HOMEPAGE FAQ SECTION ---- */
.faq-accordion { max-width: 800px; margin: 2.5rem auto 0; }
.faq-accordion-item {
  background: #fff; border-radius: 12px; margin-bottom: .75rem;
  border: 1px solid #f1f5f9; box-shadow: 0 2px 8px rgba(0,0,0,.03);
  overflow: hidden; transition: box-shadow .3s;
}
.faq-accordion-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.faq-accordion-btn {
  width: 100%; padding: 1.25rem 1.5rem; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; font-family: inherit; text-align: left;
}
.faq-accordion-btn h4 {
  font-size: .95rem; font-weight: 700; color: var(--primary-dark);
  display: flex; align-items: center; gap: .6rem;
}
.faq-accordion-btn h4 i { color: var(--accent); flex-shrink: 0; }
.faq-accordion-btn .faq-chevron {
  color: var(--gray-light); font-size: .75rem; transition: transform .3s;
  flex-shrink: 0;
}
.faq-accordion-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-accordion-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.5rem;
}
.faq-accordion-item.open .faq-accordion-answer {
  max-height: 300px; padding: 0 1.5rem 1.25rem;
}
.faq-accordion-answer p { color: var(--gray); font-size: .9rem; line-height: 1.7; }

/* ---- URGENCY / SEASONAL BANNER ---- */
.seasonal-banner {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff; padding: .65rem 0; text-align: center;
  font-size: .85rem; font-weight: 600; letter-spacing: .02em;
  position: relative; overflow: hidden;
}
.seasonal-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 50%, rgba(249,115,22,.08) 50%, rgba(249,115,22,.08) 100%);
  background-size: 20px 100%;
}
.seasonal-banner .container { position: relative; z-index: 1; }
.seasonal-banner i { color: var(--accent); margin-right: .35rem; }
.seasonal-banner a { color: var(--accent); font-weight: 800; text-decoration: none; margin-left: .5rem; }
.seasonal-banner a:hover { text-decoration: underline; }

/* ---- RESPONSE TIME BADGE ---- */
.response-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(34,197,94,.1); color: #16a34a; font-size: .82rem; font-weight: 700;
  padding: .4rem 1rem; border-radius: 50px; border: 1px solid rgba(34,197,94,.2);
}
.response-badge i { font-size: .7rem; }
.response-badge .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ---- ENHANCED SERVICE AREA BADGES ---- */
.service-area-strip {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  margin-top: 1.5rem;
}
.area-badge {
  background: rgba(26,58,107,.06); color: var(--primary-dark);
  padding: .3rem .85rem; border-radius: 50px; font-size: .78rem; font-weight: 600;
  border: 1px solid rgba(26,58,107,.1);
}

/* ---- GOOGLE REVIEWS LINK ---- */
.review-cta {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.5rem; padding: .6rem 1.25rem; border-radius: 8px;
  background: rgba(26,58,107,.06); border: 1px solid rgba(26,58,107,.1);
  text-decoration: none; color: var(--primary-dark); font-size: .85rem; font-weight: 700;
  transition: all .2s;
}
.review-cta:hover { background: rgba(249,115,22,.08); border-color: rgba(249,115,22,.2); color: var(--accent); }
.review-cta i { color: #fbbf24; }

/* ---- APPLICATION FORM ENHANCEMENTS ---- */
.form-step-label {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1rem; padding-bottom: .5rem;
  border-bottom: 2px solid #f1f5f9;
}
.form-step-label i { color: var(--accent); font-size: .9rem; }
.form-group .required { color: var(--accent); }
.form-group .optional { color: var(--gray-light); font-size: .8rem; font-weight: 500; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-pref-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem;
  margin-top: .5rem;
}
.contact-pref-option input { position: absolute; opacity: 0; pointer-events: none; }
.contact-pref-option { cursor: pointer; }
.pref-card {
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  padding: 1rem .75rem; border-radius: 10px; border: 2px solid #e2e8f0;
  background: #fff; transition: all .2s; text-align: center;
}
.pref-card i { font-size: 1.1rem; color: var(--gray-light); transition: color .2s; }
.pref-card strong { font-size: .85rem; color: var(--primary-dark); }
.pref-card small { font-size: .72rem; color: var(--gray); }
.contact-pref-option input:checked + .pref-card {
  border-color: var(--accent); background: rgba(249,115,22,.04);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.contact-pref-option input:checked + .pref-card i { color: var(--accent); }
.pref-card:hover { border-color: var(--accent-light); }
.form-submit {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
@media (max-width: 480px) {
  .contact-pref-grid { grid-template-columns: 1fr 1fr; }
}
