.elementor-11477 .elementor-element.elementor-element-318e633{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-3261ff8 *//* ===============================================
   SERVICE PAGES - COMPLETE STYLES
   WORKS FOR ALL SERVICE PAGES
   =============================================== */

/* ===============================
   CSS VARIABLES
   =============================== */
:root {
  --brand: #9e3cd1;
  --brand-600: #842bb8;
  --brand-light: #b46be6;
  --gold: #c7a95e;
  --gold-2: #d4af37;
  --ink: #111;
  --muted: #6d617f;
  --bg-main: #fff;
  --bg-soft: #fbf6ff;
  --bg-card: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(94, 45, 145, 0.08);
  --shadow-xl: 0 30px 60px rgba(94, 45, 145, 0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================
   GLOBAL RESET
   =============================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-main);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===============================
   ACCENT TEXT
   =============================== */
.accent {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-light) 50%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradientShift 4s ease infinite;
}

/* ===============================
   SECTION HEADERS
   =============================== */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.section-eyebrow,
.service-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

.section-header h2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===============================
   BUTTONS
   =============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover:before {
  width: 300px;
  height: 300px;
}

.btn i,
.btn span {
  position: relative;
  z-index: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(158, 60, 209, 0.15);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand) 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(158, 60, 209, 0.2);
}

.btn--secondary {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.btn--secondary:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  padding: 11px 24px;
}

.btn--outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(158, 60, 209, 0.15);
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ===============================
   HERO SECTION
   =============================== */
.service-hero {
  position: relative;
  background: linear-gradient(180deg, #fbf6ff 0%, #fff 100%);
  padding: 140px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(158, 60, 209, 0.15) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
  animation: pulse 8s ease-in-out infinite;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.service-hero h1 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.service-hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 40px;
}

.service-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.trust-badge i {
  color: var(--gold-2);
  font-size: 1.2rem;
}

/* ===============================
   WHAT'S INCLUDED SECTION
   =============================== */
.service-includes {
  padding: 120px 0;
  background: var(--bg-main);
}

.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  transition: all 0.35s var(--ease);
  border: 1px solid rgba(158, 60, 209, 0.06);
}

.includes-list li:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(158, 60, 209, 0.15);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(158, 60, 209, 0.1), rgba(212, 175, 55, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper i {
  color: var(--brand);
  font-size: 1.3rem;
}

.includes-list .content h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 700;
}

.includes-list .content p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===============================
   BENEFITS SECTION
   =============================== */
.service-benefits {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(158, 60, 209, 0.06), rgba(212, 175, 55, 0.06));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff, var(--bg-soft));
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(158, 60, 209, 0.08);
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(158, 60, 209, 0.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.benefit-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 700;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===============================
   PROCESS SECTION
   =============================== */
.service-process {
  padding: 120px 0;
  background: var(--bg-main);
}

.process-steps {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-steps li {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(158, 60, 209, 0.2);
}

.step-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-soft), #ffffff);
  box-shadow: var(--shadow-md);
  transition: all 0.35s var(--ease);
  border: 1px solid rgba(158, 60, 209, 0.08);
}

.process-steps li:hover .step-content {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(158, 60, 209, 0.15);
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(158, 60, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon i {
  color: var(--brand);
  font-size: 1.2rem;
}

.step-text h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 700;
}

.step-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===============================
   BEFORE & AFTER / GALLERY
   =============================== */
.before-after {
  padding: 120px 0;
  background: var(--bg-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===============================
   INSTALLATION TYPES / OPTIONS
   =============================== */
.installation-types {
  padding: 120px 0;
  background: var(--bg-main);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.type-card {
  padding: 36px 32px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(158, 60, 209, 0.08);
  transition: all 0.35s var(--ease);
}

.type-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(158, 60, 209, 0.15);
}

.type-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(158, 60, 209, 0.2);
}

.type-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.type-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 700;
}

.type-card > p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.type-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.type-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
}

.type-card li i {
  color: var(--gold-2);
  font-size: 0.85rem;
}

/* ===============================
   PRICING SECTION
   =============================== */
.service-pricing {
  padding: 120px 0;
  background: var(--bg-soft);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.price-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(158, 60, 209, 0.08);
  transition: all 0.35s var(--ease);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(158, 60, 209, 0.15);
}

.price-card.featured {
  border-color: var(--brand);
  box-shadow: 0 20px 50px rgba(158, 60, 209, 0.15);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 32px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(158, 60, 209, 0.3);
}

.price-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(158, 60, 209, 0.1);
}

.price-header h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 700;
}

.price {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}

.price-features i {
  color: var(--gold-2);
  font-size: 1rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-note i {
  color: var(--gold-2);
}

/* ===============================
   FAQ SECTION
   =============================== */
.service-faq {
  padding: 120px 0;
  background: var(--bg-main);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.35s var(--ease);
  overflow: hidden;
  border: 1px solid rgba(158, 60, 209, 0.06);
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(158, 60, 209, 0.12);
}

.faq-item[open] {
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.faq-item summary {
  padding: 26px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  transition: all 0.3s var(--ease);
}

.faq-item summary:hover {
  color: var(--brand);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: var(--brand);
  transition: transform 0.3s var(--ease);
  font-size: 0.9rem;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 30px 30px;
}

.faq-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ===============================
   FINAL CTA SECTION
   =============================== */
.service-final-cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(158, 60, 209, 0.14), rgba(212, 175, 55, 0.22));
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.25) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
  animation: pulse 8s ease-in-out infinite;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.service-final-cta h2 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 600;
}

.service-final-cta p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.trust-item i {
  color: var(--gold-2);
  font-size: 1.2rem;
}

/* ===============================
   ANIMATIONS
   =============================== */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 1024px) {
  .includes-list,
  .benefits-grid,
  .types-grid,
  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 100px 0 80px;
  }

  .service-hero h1 {
    font-size: 2.4rem;
  }

  .service-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: 16px;
  }

  .service-includes,
  .service-benefits,
  .service-process,
  .before-after,
  .installation-types,
  .service-pricing,
  .service-faq,
  .service-final-cta {
    padding: 80px 0;
  }

  .includes-list,
  .benefits-grid,
  .gallery-grid,
  .types-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-steps li {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    position: absolute;
    top: 28px;
    left: 0;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .step-content {
    width: 100%;
    margin-left: 60px;
  }

  .faq-item summary {
    padding: 20px 22px;
    font-size: 0.98rem;
  }

  .faq-content {
    padding: 0 22px 24px;
  }

  .cta-trust {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 2rem;
  }

  .includes-list li,
  .step-content {
    padding: 24px 20px;
  }

  .benefit-card {
padding: 32px 24px;
}
.type-card {
padding: 28px 24px;
}
.price-card {
padding: 32px 24px;
}
.gallery-item {
height: 260px;
}
}
/* ===============================
ACCESSIBILITY
=============================== */
.btn:focus,
.faq-item summary:focus {
outline: 3px solid rgba(158, 60, 209, 0.3);
outline-offset: 4px;
}
/* ===============================
REDUCED MOTION
=============================== */
@media (prefers-reduced-motion: reduce) {

{
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}</parameter>
Claude is AI and can make mistakes. Please double-check responses./* End custom CSS */