:root {
  --primary: #4B2D7F;
  --primary-dark: #351f5a;
  --accent: #D4AF37;
  --accent-dark: #b8931d;
  --text: #1f2430;
  --muted: #667085;
  --bg: #ffffff;
  --section-alt: #f8f9fa;
  --section-tint: #f9f7fb;
  --white: #ffffff;
  --border: rgba(75, 45, 127, 0.12);
  --shadow: 0 14px 35px rgba(40, 25, 79, 0.12);
  --radius: 20px;
  --radius-sm: 14px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, .brand-font {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-padding {
  padding: 96px 0;
}

.bg-soft {
  background: var(--section-alt);
}

.text-gold {
  color: var(--accent);
}

.btn-brand,
.btn-outline-brand,
.btn-gold {
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-brand {
  background: linear-gradient(135deg, var(--primary) 0%, #6a42aa 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 22px rgba(75, 45, 127, 0.28);
}

.btn-brand:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #e5c65c 0%, var(--accent) 100%);
  color: #2f2506;
  border: none;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.28);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #eacb66 0%, var(--accent-dark) 100%);
  color: #2f2506;
  transform: translateY(-2px);
}

.btn-outline-brand {
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}

.btn-outline-brand:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.top-offer-bar {
  background: linear-gradient(90deg, var(--accent) 0%, #f2d26b 100%);
  color: #241b04;
  font-weight: 700;
  font-size: 0.95rem;
}

.top-offer-bar a {
  color: #241b04;
  font-weight: 800;
}

.navbar {
  transition: var(--transition);
  background: rgba(75, 45, 127, 0.96);
}

.navbar.scrolled {
  box-shadow: 0 12px 28px rgba(23, 14, 42, 0.22);
}

.navbar-brand img {
  height: 58px;
  width: auto;
}

.nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 600;
  margin: 0 0.2rem;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
}

.navbar .phone-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #351f5a 0%, #4B2D7F 58%, #6a42aa 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.14), transparent 34%), radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 30%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 140px;
  max-width: 30vw;
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

.hero-card,
.info-card,
.service-card,
.testimonial-card,
.material-card,
.contact-card,
.badge-card,
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.hero-stat small,
.hero .lead {
  color: rgba(255,255,255,0.88);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.06;
}

.section-title {
  max-width: 760px;
}

.section-title .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.service-card {
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}

.service-card:hover,
.material-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(48, 28, 86, 0.18);
}

.service-card img,
.gallery-item img,
.material-card img,
.marketing-preview img {
  width: 100%;
  object-fit: cover;
}

.service-card img {
  height: 230px;
}

.service-icon,
.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(75,45,127,0.12), rgba(212,175,55,0.2));
  color: var(--primary);
  font-size: 1.5rem;
}

.service-benefits li,
.check-list li {
  margin-bottom: 0.55rem;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li::before {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  color: var(--accent);
  margin-right: 0.7rem;
}

.offer-panel {
  background: linear-gradient(135deg, var(--primary) 0%, #6842a7 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 20px 35px rgba(54, 32, 94, 0.25);
}

.offer-panel .offer-price {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.testimonial-card {
  padding: 2rem;
  height: 100%;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.15rem;
}

.cta-band {
  background: linear-gradient(135deg, #261546 0%, #4B2D7F 50%, #6f49aa 100%);
  color: var(--white);
  border-radius: 32px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 68%);
}

.footer {
  background: #1c1032;
  color: rgba(255,255,255,0.82);
}

.footer a {
  color: rgba(255,255,255,0.88);
}

.footer a:hover {
  color: #fff;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
}

.page-hero {
  padding: 150px 0 80px;
  color: var(--white);
  background: linear-gradient(135deg, #351f5a 0%, #4B2D7F 60%, #6a42aa 100%);
}

.service-detail {
  scroll-margin-top: 110px;
}

.service-detail img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-item img {
  height: 300px;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 7, 22, 0.02) 0%, rgba(12,7,22,0.68) 100%);
  display: flex;
  align-items: end;
  padding: 1.25rem;
  color: var(--white);
}

.material-card img,
.marketing-preview img {
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

.badge-card {
  text-align: center;
  padding: 1.4rem;
  height: 100%;
}

.badge-mark {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  background: linear-gradient(135deg, rgba(75,45,127,0.1), rgba(212,175,55,0.24));
  color: var(--primary);
}

.contact-card {
  padding: 2rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-map iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-control,
.form-select {
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border: 1px solid #d5d0e2;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(75,45,127,0.45);
  box-shadow: 0 0 0 0.25rem rgba(75,45,127,0.12);
}

.review-card-preview {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offer-popup .modal-content {
  border: none;
  border-radius: 28px;
  overflow: hidden;
}

.offer-popup .modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, #6d48ac 100%);
  color: #fff;
  border: none;
}

.offer-popup .modal-body {
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1035;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #f1d068 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2a1d03;
  box-shadow: 0 14px 28px rgba(35, 23, 63, 0.22);
  font-size: 1.5rem;
}

.lightbox-modal img {
  width: 100%;
  border-radius: 18px;
}

.small-meta {
  color: var(--muted);
  font-size: 0.95rem;
}


.review-cta-section {
  padding: 0 0 56px;
  background: var(--white);
}

.review-cta-card {
  background: var(--section-alt);
  border: 1px solid rgba(75,45,127,0.12);
  border-radius: 28px;
  padding: 2.25rem;
  box-shadow: 0 20px 40px rgba(44, 24, 82, 0.08);
}

.review-cta-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.review-cta-copy {
  color: var(--muted);
  max-width: 560px;
}

.review-stars {
  color: var(--accent);
  display: inline-flex;
  gap: 0.35rem;
  font-size: 1.05rem;
}

.review-qr-panel {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(75,45,127,0.1);
  border-radius: 24px;
  padding: 1.15rem;
  text-align: center;
  box-shadow: 0 16px 32px rgba(44, 24, 82, 0.08);
}

.review-qr-panel img {
  width: min(100%, 250px);
  margin: 0 auto 1rem;
  border-radius: 18px;
}

.review-qr-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: 800;
}

.review-qr-link:hover {
  color: var(--primary-dark);
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .navbar-brand img {
    height: 48px;
  }
}

@media (max-width: 767.98px) {
  .hero-logo {
    width: 112px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .cta-band,
  .offer-panel,
  .contact-card,
  .testimonial-card,
  .review-cta-card {
    padding: 1.5rem;
  }

  .review-cta-section {
    padding-bottom: 44px;
  }

  .review-cta-card {
    text-align: center;
  }

  .review-cta-copy {
    max-width: none;
  }

  .review-qr-panel img {
    width: min(100%, 210px);
  }

  .gallery-item img,
  .material-card img {
    height: 240px;
  }

  .floating-call {
    width: 56px;
    height: 56px;
  }
}
