/* =========================================
   J&J ARTSCAPE LLC — MAIN STYLESHEET
   Natural & Photo-First | Light Theme
   ========================================= */

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

:root {
  --bg:           #f7f9f5;
  --surface:      #eef2ea;
  --card:         #ffffff;
  --card-hover:   #f5f8f2;
  --border:       #d8e4d0;
  --green:        #2d6a4f;
  --green-dark:   #1b4332;
  --green-mid:    #40916c;
  --green-light:  #52b788;
  --green-pale:   #d8f3dc;
  --green-glow:   rgba(45,106,79,0.08);
  --gold:         #c8860a;
  --text:         #1a2e1a;
  --text-muted:   #4a6741;
  --text-dim:     #8aaa80;
  --white:        #ffffff;
  --shadow-sm:    0 1px 4px rgba(27,67,50,0.07);
  --shadow:       0 4px 20px rgba(27,67,50,0.10);
  --shadow-lg:    0 12px 48px rgba(27,67,50,0.14);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', var(--font);
  --max-w:        1200px;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--text-muted); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  border: 1px solid var(--border);
  background: var(--green-pale);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title span { color: var(--green-mid); }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,67,50,0.3);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: transparent;
}
.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,67,50,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 6px 0;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  overflow: visible;
}

.nav.scrolled {
  padding: 4px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 40px;
}
.nav-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

.nav-logo-text span {
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--green);
  text-shadow: none;
}
/* Once scrolled — switch links back to dark */
.nav.scrolled .nav-links a {
  color: var(--text-muted);
  text-shadow: none;
}
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
  color: var(--white);
  background: var(--green);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.nav-phone:hover { color: var(--white); }
.nav.scrolled .nav-phone { color: var(--text-muted); text-shadow: none; }
.nav.scrolled .nav-phone:hover { color: var(--green); }

.nav-lighting-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0096c7;
  background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(0,119,182,0.08));
  border: 1px solid rgba(0,180,216,0.3);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-lighting-link:hover {
  background: linear-gradient(135deg, rgba(0,180,216,0.2), rgba(0,119,182,0.15));
  border-color: rgba(0,180,216,0.5);
  color: #00b4d8;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- HERO (Photo-First) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Fallback gradient when no photo */
.hero-bg-photo-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1b4332 0%, #2d6a4f 40%, #40916c 100%);
}

/* Layered overlays for text readability */
.hero-overlay-1 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10,25,15,0.80) 0%,
    rgba(10,25,15,0.55) 55%,
    rgba(10,25,15,0.20) 100%
  );
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10,25,15,0.60) 0%,
    transparent 50%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #74c69d;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span {
  color: #74c69d;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* Hero two-column split */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 100px 0 72px;
}

/* Hero form card */
.hero-form-wrap {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  position: relative;
  z-index: 2;
}

.hero-form-header {
  background: var(--green-dark);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-form-header strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}
.hero-form-header span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* --- TRUST BAR --- */
.trust-bar {
  padding: 28px 0;
  background: var(--green-dark);
  border-top: none;
  border-bottom: none;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.trust-item-icon {
  font-size: 1.2rem;
}
.trust-item-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}
.trust-item-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

/* Dividers between trust items */
.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* --- SERVICES --- */
.services { background: var(--bg); }

.services-intro {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card-img {
  width: calc(100% + 72px);
  margin: -36px -36px 24px -36px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--green-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green);
  border-color: var(--green);
}

.service-card h3 { color: var(--text); margin-bottom: 10px; }
.service-card p  { font-size: 0.92rem; margin-bottom: 20px; }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 24px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--green-dark); }

/* --- WHY CHOOSE US --- */
.why { background: var(--surface); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content .section-label { margin-bottom: 16px; }
.why-content h2 { margin-bottom: 16px; }
.why-content > p { margin-bottom: 36px; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
}
.why-item-text p { font-size: 0.87rem; margin: 0; }

.why-visual { position: relative; }
.why-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.why-image-main img { width: 100%; height: 100%; object-fit: cover; }
.why-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--surface) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  min-height: 440px;
}
.why-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
}
.why-badge-float strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #74c69d;
  font-family: var(--font-display);
  line-height: 1;
}
.why-badge-float span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* --- TESTIMONIALS --- */
.testimonials { background: var(--bg); }

.testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; display: block; margin-bottom: 8px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  border-color: var(--green-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.testimonial-stars { display: flex; align-items: center; color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.testimonial-author-info strong { display: block; font-size: 0.88rem; color: var(--text); font-weight: 600; }
.testimonial-author-info span  { font-size: 0.75rem; color: var(--text-dim); }

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 18px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}
.google-badge-text strong { display: block; font-size: 0.92rem; color: var(--text); }
.google-badge-text span   { font-size: 0.78rem; color: var(--text-dim); }

/* Google Reviews widget wrapper */
.google-reviews-widget { }

/* --- GALLERY PREVIEW --- */
.gallery-preview { background: var(--surface); }

.gallery-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--border);
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,30,15,0.75) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--green-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 2rem;
}
.gallery-placeholder span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* --- CTA SECTION --- */
.cta-section { background: var(--green-dark); padding: 100px 0; }

.cta-inner {
  text-align: center;
  position: relative;
}
.cta-inner .section-label {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: #74c69d;
  margin-bottom: 20px;
}
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 40px; font-size: 1.05rem; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- FOOTER --- */
.footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.footer-logo-text strong { font-family: var(--font-display); font-size: 0.95rem; color: var(--white); }
.footer-logo-text span   { display: block; font-size: 0.6rem; color: #74c69d; text-transform: uppercase; letter-spacing: 0.1em; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover { background: var(--green-mid); border-color: var(--green-mid); color: var(--white); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: #74c69d; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-item a:hover { color: #74c69d; }
.footer-contact-item p { margin: 0; color: rgba(255,255,255,0.6); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom a { color: #74c69d; }

/* --- PAGE HERO --- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .section-label { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: #74c69d; margin-bottom: 20px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { max-width: 560px; margin: 0 auto; font-size: 1.05rem; color: rgba(255,255,255,0.7); }

/* --- SERVICES PAGE --- */
.services-full { background: var(--bg); }

.service-full-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-full-card:nth-child(even) { direction: rtl; }
.service-full-card:nth-child(even) > * { direction: ltr; }
.service-full-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green-light); }

.service-full-img { aspect-ratio: 4/3; overflow: hidden; background: var(--green-pale); }
.service-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-full-card:hover .service-full-img img { transform: scale(1.04); }
.service-full-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--surface) 100%);
  min-height: 300px;
}

.service-full-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-full-content .service-icon { margin-bottom: 20px; }
.service-full-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 14px; }
.service-full-content > p { margin-bottom: 24px; }
.service-full-content .service-features { margin-bottom: 32px; }
.service-full-content .service-feature { font-size: 0.92rem; }

/* --- GALLERY PAGE --- */
.gallery-full { background: var(--bg); }

.gallery-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.gallery-masonry { columns: 3; column-gap: 16px; }
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--green-pale);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-masonry-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,30,15,0.82) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-masonry-item:hover .gallery-masonry-overlay { opacity: 1; }
.gallery-masonry-overlay span  { font-size: 0.75rem; font-weight: 600; color: #74c69d; text-transform: uppercase; letter-spacing: 0.08em; }
.gallery-masonry-overlay strong{ font-size: 0.9rem; color: var(--white); }
.gallery-ph {
  width: 100%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-dim);
}

/* --- CONTACT PAGE --- */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 { font-size: 1.4rem; margin-bottom: 12px; }
.contact-info > p { margin-bottom: 32px; font-size: 0.95rem; }

.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 46px;
  height: 46px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-info strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); font-weight: 700; margin-bottom: 3px; }
.contact-item-info a, .contact-item-info p { font-size: 0.93rem; color: var(--text-muted); margin: 0; transition: var(--transition); }
.contact-item-info a:hover { color: var(--green); }

.service-area-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.service-area-box h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 14px; }
.service-area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag { padding: 4px 12px; background: var(--green-pale); border: 1px solid var(--border); border-radius: 100px; font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* --- QUOTE FORM --- */
.quote-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.quote-form-wrap h3 { font-size: 1.5rem; margin-bottom: 8px; }
.quote-form-wrap > p { margin-bottom: 28px; font-size: 0.92rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 16px; /* 16px minimum prevents iOS auto-zoom */
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.12);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; text-align: center; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-disclaimer { font-size: 0.76rem; color: var(--text-dim); text-align: center; margin-top: 10px; }

/* --- ANIMATIONS --- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- JOBBER QUOTE MODAL --- */
.jobber-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.jobber-modal.open { display: flex; }

.jobber-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,30,15,0.75);
  backdrop-filter: blur(6px);
}

.jobber-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.jobber-modal-header {
  background: var(--green-dark);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.jobber-modal-header-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.jobber-modal-header-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.jobber-modal-close {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: inherit;
  transition: var(--transition);
}
.jobber-modal-close:hover { background: rgba(255,255,255,0.25); }

.jobber-modal-iframe {
  width: 100%;
  flex: 1;
  border: none;
  display: block;
  min-height: 580px;
}

@media (max-width: 600px) {
  .jobber-modal { padding: 0; align-items: flex-end; }
  .jobber-modal-box { border-radius: var(--radius-lg) var(--radius-lg) 0 0; max-height: 92vh; }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,67,50,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.7);
  padding: 12px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.mobile-menu .btn { margin-top: 16px; }
.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

/* --- PROCESS STEPS (services page) --- */
.process-step-num {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .why-badge-float { left: 0; bottom: -16px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  /* Tighter container on mobile — more usable width */
  .container { padding: 0 12px; }

  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }

  .hero-split { grid-template-columns: 1fr; padding: 80px 0 48px; }
  .hero-form-wrap { max-width: 100%; }
  .hero-stats { gap: 20px; }

  /* Home page service grid — single column, tighter gap */
  .services-grid {
    grid-template-columns: 1fr !important; /* override inline repeat(3,1fr) */
    gap: 12px;
  }

  /* Compact horizontal card: thumbnail left, content right */
  .service-card:not(.service-card-cta) {
    display: grid;
    grid-template-columns: 130px 1fr;
    grid-template-rows: auto auto auto auto; /* icon · title · p · link */
    padding: 0;
    border-radius: 10px;
    transform: none !important; /* no hover-lift on touch */
    min-height: 0;
  }

  /* Green accent bar on hover — hide on mobile (looks odd on side layout) */
  .service-card:not(.service-card-cta)::after { display: none; }

  /* Image: left column, spans all rows */
  .service-card:not(.service-card-cta) .service-card-img {
    grid-column: 1;
    grid-row: 1 / -1;
    width: 100%;
    height: 100%;
    min-height: 155px;
    margin: 0;          /* reset negative-margin bleed */
    border-radius: 10px 0 0 10px;
    border-right: 1px solid var(--border);
  }

  /* Right column elements — assign each to its own row */
  .service-card:not(.service-card-cta) .service-icon {
    grid-column: 2;
    grid-row: 1;
    width: 34px;
    height: 34px;
    margin: 14px 14px 6px;
    flex-shrink: 0;
  }
  .service-card:not(.service-card-cta) .service-icon svg {
    width: 17px;
    height: 17px;
  }
  .service-card:not(.service-card-cta) h3 {
    grid-column: 2;
    grid-row: 2;
    padding: 0 14px;
    font-size: 1rem;
    margin-bottom: 4px;
    line-height: 1.25;
  }
  .service-card:not(.service-card-cta) p {
    grid-column: 2;
    grid-row: 3;
    padding: 0 14px;
    font-size: 0.82rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
  }
  .service-card:not(.service-card-cta) .service-features { display: none; }
  .service-card:not(.service-card-cta) .service-link {
    grid-column: 2;
    grid-row: 4;
    padding: 0 14px 14px;
    font-size: 0.82rem;
    align-self: end;
  }

  /* CTA card — keep centered, just reduce padding */
  .service-card-cta { padding: 28px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid-preview { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid-preview .gallery-item:first-child { grid-row: auto; }

  /* --- SERVICE CARDS: compact side-by-side layout on mobile --- */
  .service-full-card {
    grid-template-columns: 130px 1fr;  /* thumbnail left, content right */
    grid-template-rows: auto;
    margin-bottom: 12px;
    border-radius: 10px;
    min-height: 0;
  }
  .service-full-card:nth-child(even) { direction: ltr; }

  /* Square thumbnail */
  .service-full-img {
    aspect-ratio: unset;
    height: 100%;
    min-height: 160px;
  }

  /* Compact content column */
  .service-full-content {
    padding: 16px 14px;
    justify-content: flex-start;
    gap: 0;
  }
  .service-full-content .service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }
  .service-full-content .service-icon svg {
    width: 18px;
    height: 18px;
  }
  .service-full-content h2 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    line-height: 1.25;
  }
  .service-full-content > p {
    font-size: 0.82rem;
    margin-bottom: 12px;
    line-height: 1.55;
    /* Limit description to 3 lines on mobile */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /* Hide bullet features on mobile — too much vertical space */
  .service-full-content .service-features { display: none; }

  /* Full-width CTA button */
  .service-full-content .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .gallery-preview-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .gallery-masonry { columns: 2; }

  .trust-items { gap: 20px; }
  .trust-divider { display: none; }

  /* Process steps — 2 columns on tablet */
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Services page — extra-small phones */
  .service-full-card { grid-template-columns: 110px 1fr; }
  .service-full-img { min-height: 140px; }
  .service-full-content { padding: 12px 10px; }
  .service-full-content h2 { font-size: 0.97rem; }
  .service-full-content > p { font-size: 0.8rem; margin-bottom: 10px; -webkit-line-clamp: 2; }
  .service-full-content .btn { font-size: 0.78rem; padding: 8px 10px; }

  /* Home service cards — extra-small phones */
  .service-card:not(.service-card-cta) { grid-template-columns: 110px 1fr; }
  .service-card:not(.service-card-cta) .service-card-img { min-height: 140px; }
  .service-card:not(.service-card-cta) h3 { font-size: 0.92rem; }
  .service-card:not(.service-card-cta) p { font-size: 0.79rem; -webkit-line-clamp: 2; }

  /* Process steps — stack 2-col on tiny screens */
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* =========================================
   SISTER COMPANY — J&J TOTAL LIGHTING
   ========================================= */
.lighting-section {
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
/* Celebright video/photo — subtle background texture */
.lighting-section .lighting-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.12;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}
.lighting-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.lighting-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,119,182,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.lighting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lighting-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
}

.lighting-logo {
  height: 70px;
  width: auto;
  display: block;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.2));
}
.lighting-logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #00d4ff;
  font-family: var(--font-display);
}

.lighting-left h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}
.lighting-left h2 span { color: #00d4ff; }

.lighting-left p {
  color: rgba(255,255,255,0.65);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.lighting-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.lighting-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.lighting-service-item svg { color: #00d4ff; flex-shrink: 0; }

.lighting-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,180,216,0.35);
}
.lighting-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,180,216,0.5);
  background: linear-gradient(135deg, #00d4ff, #0096c7);
}

.lighting-right { position: relative; }

.lighting-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lighting-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}

.lighting-card-icon {
  width: 80px;
  height: 80px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.lighting-card h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.lighting-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 28px;
}

.lighting-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 0;
  margin-bottom: 28px;
}
.lighting-stat {
  flex: 1;
  text-align: center;
}
.lighting-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #00d4ff;
  font-family: var(--font-display);
}
.lighting-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lighting-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}

.lighting-card-link {
  display: block;
  text-align: center;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  color: #00d4ff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 20px;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.lighting-card-link:hover {
  background: rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .lighting-inner { grid-template-columns: 1fr; gap: 40px; }
  .lighting-right { order: -1; }
  .lighting-card { padding: 28px 24px; }
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  padding: 96px 0;
  background: var(--bg);
}

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open {
  border-color: var(--green-light);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--green); }
.faq-item.open .faq-question { color: var(--green-dark); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), color 0.2s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* =========================================
   AI CHAT BOT WIDGET
   ========================================= */
.jj-chat-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-dark);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(27,67,50,0.40);
  z-index: 1500;
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.jj-chat-btn:hover {
  background: var(--green);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(27,67,50,0.50);
}
.jj-chat-btn .chat-icon,
.jj-chat-btn .chat-close-icon { position: absolute; transition: opacity 0.2s ease, transform 0.2s ease; }
.jj-chat-btn .chat-close-icon { opacity: 0; transform: rotate(-90deg); }
.jj-chat-btn.open .chat-icon { opacity: 0; transform: rotate(90deg); }
.jj-chat-btn.open .chat-close-icon { opacity: 1; transform: rotate(0); }

.jj-chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid white;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease;
}
.jj-chat-btn.open .jj-chat-badge { transform: scale(0); }

.jj-chat-window {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 360px;
  max-height: 560px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 1499;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4,0,0.2,1);
  transform-origin: bottom right;
}
.jj-chat-window.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.jj-chat-header {
  background: var(--green-dark);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.jj-chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jj-chat-header-info strong { display: block; font-size: 0.95rem; }
.jj-chat-header-info span {
  font-size: 0.75rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 5px;
}
.jj-chat-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: chatDotPulse 2s infinite;
}
@keyframes chatDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.jj-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.jj-chat-messages::-webkit-scrollbar { width: 4px; }
.jj-chat-messages::-webkit-scrollbar-track { background: transparent; }
.jj-chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.jj-msg {
  max-width: 85%;
  animation: msgSlideIn 0.2s ease;
}
@keyframes msgSlideIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.jj-msg-bubble {
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.jj-msg.bot { align-self: flex-start; }
.jj-msg.bot .jj-msg-bubble {
  background: var(--surface);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.jj-msg.user { align-self: flex-end; }
.jj-msg.user .jj-msg-bubble {
  background: var(--green-dark);
  color: white;
  border-bottom-right-radius: 4px;
}

.jj-msg-time {
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 4px;
  padding: 0 4px;
}
.jj-msg.user .jj-msg-time { text-align: right; }

.jj-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 15px;
  background: var(--surface);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.jj-typing span {
  width: 7px;
  height: 7px;
  background: var(--text-dim);
  border-radius: 50%;
  animation: typingBounce 1.2s infinite;
}
.jj-typing span:nth-child(2) { animation-delay: 0.2s; }
.jj-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

.jj-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 8px;
}
.jj-quick-btn {
  background: none;
  border: 1px solid var(--green);
  color: var(--green-dark);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.jj-quick-btn:hover {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

.jj-chat-input-row {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.jj-chat-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 16px;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}
.jj-chat-input:focus { border-color: var(--green-light); }
.jj-chat-input::placeholder { color: var(--text-dim); }

.jj-chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-dark);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
.jj-chat-send:hover { background: var(--green); transform: scale(1.05); }

@media (max-width: 480px) {
  .jj-chat-window { width: calc(100vw - 32px); right: 16px; bottom: 88px; }
  .jj-chat-btn { right: 16px; bottom: 20px; }
}
