/* ============================================================
   TWINKLE BROS LIGHTING — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Dancing+Script:wght@600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8CC6A;
  --gold-dark:   #9A7830;
  --dark:        #0d0b08;
  --dark-2:      #191510;
  --dark-3:      #231f17;
  --dark-card:   #1e1b14;
  --light:       #F9F6EF;
  --light-2:     #F2EDE2;
  --white:       #FFFFFF;
  --text-dark:   #1a1710;
  --text-muted:  #7a6d5a;
  --nav-h:       80px;
  --ease:        all 0.3s ease;
  --shadow:      0 4px 30px rgba(0,0,0,0.15);
  --shadow-gold: 0 6px 24px rgba(201,168,76,0.35);
  --radius:      6px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.85; }

.script {
  font-family: 'Dancing Script', cursive;
  color: var(--gold);
  display: block;
}
.section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}

/* ===== LAYOUT ===== */
.container  { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-center { text-align: center; }

.section-dark { background: var(--dark-2); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-light { background: var(--light); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--ease);
  cursor: pointer;
  border: none;
}
.btn-gold    { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.btn-white   { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 3rem; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled,
.navbar.solid {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}
.navbar-logo img { height: 58px; width: auto; transition: opacity 0.3s; }
.navbar-logo img:hover { opacity: 0.85; }

.nav-menu { display: flex; align-items: center; }
.nav-item  { position: relative; }
.nav-link  {
  display: block; padding: 0.6rem 0.9rem;
  color: var(--white); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.02em; white-space: nowrap;
  transition: color 0.25s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.has-dropdown > .nav-link::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.7; }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  border-radius: var(--radius); padding: 0.6rem 1.4rem;
  margin-left: 0.6rem; font-weight: 700;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--dark-3);
  border-top: 2px solid var(--gold);
  min-width: 230px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.28s, transform 0.28s, visibility 0.28s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item a {
  display: block; padding: 0.8rem 1.3rem;
  color: rgba(255,255,255,0.8); font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s;
}
.dropdown-item:last-child a { border-bottom: none; }
.dropdown-item a:hover { color: var(--gold); padding-left: 1.7rem; background: rgba(201,168,76,0.07); }

/* Mobile */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--dark); flex-direction: column; align-items: flex-start;
    padding: 1.5rem 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.32s ease;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-item { width: 100%; }
  .nav-link { padding: 0.95rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 1.05rem; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,0.04); border-top: none;
    border-left: 2px solid var(--gold); margin-left: 1rem; box-shadow: none;
    display: none;
  }
  .has-dropdown.m-open .dropdown { display: block; }
  .nav-cta { margin-left: 0; margin-top: 1.2rem; display: inline-flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(13,11,8,0.88) 0%, rgba(13,11,8,0.6) 55%, rgba(13,11,8,0.35) 100%);
}
#snow-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  padding-top: var(--nav-h);
}
.hero-content h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 560px; margin-bottom: 2.2rem; }
.hero-script { font-family: 'Dancing Script', cursive; font-size: 1.7rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-trust span {
  color: rgba(255,255,255,0.8); font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-trust i { color: var(--gold); }

/* Page Hero (inner pages) */
.page-hero {
  position: relative; padding: 9rem 0 5rem;
  background: var(--dark-2); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover; background-position: center; opacity: 0.2;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.page-hero h1 { color: var(--white); }
.breadcrumb { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 0.8rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--dark); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== SERVICES OVERVIEW ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }
.sc-img { height: 220px; overflow: hidden; position: relative; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .sc-img img { transform: scale(1.06); }
.sc-body { padding: 1.6rem; }
.sc-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.sc-body p  { font-size: 0.88rem; margin-bottom: 1.2rem; }
.sc-link {
  color: var(--gold); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s;
}
.sc-link:hover { gap: 0.8rem; }

/* ===== SERVICE PLACEHOLDER (AI-style) ===== */
.svc-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.7rem; position: relative; overflow: hidden;
}
.svc-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.15);
  background-image: radial-gradient(circle at 30% 70%, rgba(201,168,76,0.15) 0%, transparent 60%);
}
.svc-placeholder-icon { font-size: 3.2rem; z-index: 1; }
.svc-placeholder-label {
  color: rgba(255,255,255,0.75); font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase; z-index: 1;
}
/* Gradient themes */
.sp-trees    { background: linear-gradient(140deg,#071a0f,#0f3820,#183d20); }
.sp-roofline { background: linear-gradient(140deg,#080814,#10103a,#1a0e55); }
.sp-walkway  { background: linear-gradient(140deg,#1a0f06,#3d1a06,#6b2a00); }
.sp-perm     { background: linear-gradient(140deg,#030e1a,#082b4a,#0f4570); }
.sp-landscape{ background: linear-gradient(140deg,#071209,#0f2e12,#183518); }
.sp-concrete { background: linear-gradient(140deg,#1a1408,#3d2e10,#5c4018); }

/* ===== WHY US ===== */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.feat-item { text-align: center; }
.feat-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(201,168,76,0.1); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; font-size: 1.8rem; color: var(--gold);
  transition: background 0.3s, color 0.3s;
}
.feat-item:hover .feat-icon { background: var(--gold); color: var(--dark); }
.feat-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

/* ===== PROCESS ===== */
.process-track { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.process-track::before {
  content: ''; position: absolute; top: 28px;
  left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 2px; background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
}
.proc-step { text-align: center; position: relative; }
.proc-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--dark-2); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Playfair Display', serif; font-size: 1.35rem;
  color: var(--gold); font-weight: 700; position: relative; z-index: 1;
}
.proc-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.t-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: relative; transition: transform 0.3s;
}
.t-card:hover { transform: translateY(-4px); }
.t-card::before {
  content: '"'; position: absolute; top: 0.8rem; right: 1.5rem;
  font-family: 'Playfair Display', serif; font-size: 6rem;
  color: var(--gold); opacity: 0.12; line-height: 1;
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.t-text { font-size: 0.92rem; font-style: italic; color: var(--text-muted); margin-bottom: 1.3rem; line-height: 1.7; }
.t-author strong { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--dark); }
.t-author span   { font-size: 0.78rem; color: var(--text-muted); }
.google-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.8rem; }
.google-badge i { color: #EA4335; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.7rem; }
.gallery-item { overflow: hidden; border-radius: var(--radius); cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  transition: background 0.3s; display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(201,168,76,0.18); }
.gallery-overlay i { color: var(--white); font-size: 2rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay i { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--white); font-size: 2.2rem;
  cursor: pointer; line-height: 1; transition: color 0.2s;
}
.lb-close:hover { color: var(--gold); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--dark-2); padding: 7rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.18) 0%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.9rem; }
.cta-banner p  { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 2.5rem; }

/* ===== COVERAGE ===== */
.coverage-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 2rem; }
.coverage-tag {
  background: var(--white); border: 1px solid rgba(201,168,76,0.35);
  color: var(--text-dark); padding: 0.35rem 0.9rem;
  border-radius: 100px; font-size: 0.82rem; font-weight: 500;
}

/* ===== FAQ ===== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item  { border-bottom: 1px solid rgba(0,0,0,0.09); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; cursor: pointer;
  font-family: 'Playfair Display', serif; font-size: 1.08rem; color: var(--dark);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--dark); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 0 1.5rem; }

/* ===== FORMS ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.fg { display: flex; flex-direction: column; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); margin-bottom: 0.4rem; }
.fg input, .fg select, .fg textarea {
  padding: 0.85rem 1rem; border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius); font-family: 'Poppins', sans-serif; font-size: 0.93rem;
  color: var(--dark); background: var(--white); outline: none; transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; text-align: center; }
.form-success { text-align: center; padding: 3rem 0; }
.form-success h3 { color: var(--gold); margin-bottom: 0.8rem; }

/* ===== ABOUT ===== */
.about-split  { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-w  { position: relative; }
.about-img-w img { border-radius: var(--radius); width: 100%; height: 520px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--dark); padding: 1.5rem;
  border-radius: var(--radius); text-align: center;
}
.about-badge strong { display: block; font-size: 2.5rem; font-family: 'Playfair Display', serif; line-height: 1; }
.about-badge span   { font-size: 0.75rem; font-weight: 600; }

/* ===== SERVICE DETAIL PAGE ===== */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.svc-features { margin: 1.5rem 0; }
.svc-features li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 0.93rem;
}
.svc-features li:last-child { border-bottom: none; }
.svc-features i { color: var(--gold); margin-top: 0.25rem; flex-shrink: 0; }
.svc-img-hero {
  width: 100%; height: 420px; border-radius: var(--radius);
  overflow: hidden; position: sticky; top: calc(var(--nav-h) + 2rem);
}
.svc-img-hero img, .svc-img-hero .svc-placeholder { width: 100%; height: 100%; object-fit: cover; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand img { height: 52px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer h4 {
  color: var(--gold); font-family: 'Poppins', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.88rem; margin-bottom: 0.8rem; }
.footer-contact i { color: var(--gold); margin-top: 0.25rem; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.social-links { display: flex; gap: 0.7rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: all 0.2s;
}
.social-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ===== SCROLL ANIMATIONS ===== */
[data-ani] {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-ani].visible { opacity: 1; transform: none; }
[data-ani="left"]  { transform: translateX(-40px); }
[data-ani="left"].visible { transform: none; }
[data-ani="right"] { transform: translateX(40px); }
[data-ani="right"].visible { transform: none; }
[data-ani="scale"] { transform: scale(0.9); }
[data-ani="scale"].visible { transform: none; }

[data-stagger] > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-stagger].visible > * { opacity: 1; transform: none; }
[data-stagger].visible > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].visible > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].visible > *:nth-child(3) { transition-delay: 0.2s; }
[data-stagger].visible > *:nth-child(4) { transition-delay: 0.3s; }
[data-stagger].visible > *:nth-child(5) { transition-delay: 0.4s; }
[data-stagger].visible > *:nth-child(6) { transition-delay: 0.5s; }

/* Twinkling lights decoration */
@keyframes twinkle {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.8); }
}
.twinkle { animation: twinkle 2.2s ease-in-out infinite; }
.twinkle:nth-child(2n)   { animation-delay: 0.4s; }
.twinkle:nth-child(3n)   { animation-delay: 0.8s; }
.twinkle:nth-child(4n)   { animation-delay: 1.2s; }

.lights-string {
  display: flex; justify-content: center; gap: 2.2rem; margin: 2.5rem 0;
  flex-wrap: wrap;
}
.light-bulb {
  width: 12px; height: 18px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
}
.light-bulb::after {
  content: ''; position: absolute; top: -4px; left: 4px;
  width: 4px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.6);
}
.lb-gold   { background: var(--gold); box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(201,168,76,0.4); }
.lb-red    { background: #e63946; box-shadow: 0 0 10px #e63946, 0 0 20px rgba(230,57,70,0.4); }
.lb-green  { background: #2dc653; box-shadow: 0 0 10px #2dc653, 0 0 20px rgba(45,198,83,0.4); }
.lb-white  { background: #f0f0ff; box-shadow: 0 0 10px #d0d0ff, 0 0 20px rgba(200,200,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .features-grid, .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .process-track { grid-template-columns: repeat(2,1fr); }
  .process-track::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split, .svc-detail { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { bottom: 1rem; right: 1rem; }
  .svc-img-hero { position: static; height: 360px; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .process-track { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
