/* Dwyer-Hamilton Paralegal Services (DHPS) - 2026 Editorial Design System + Dark Mode */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-dark: #0A0607;
  --primary-deep: #160809;
  --primary-burgundy: #7C1115;
  --primary-red: #E63946;
  --primary-gradient: linear-gradient(135deg, #7C1115 0%, #D90700 100%);
  --accent-gold: #D4AF37;
  --accent-gold-light: #FFFBF0;
  --gold-glow: rgba(212, 175, 55, 0.2);
  --bg-main: #F8FAF9;
  --bg-card: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #F8FAFC;
  --border-light: rgba(226, 232, 240, 0.8);
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-dark: rgba(10, 6, 7, 0.92);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 28px -5px rgba(124, 17, 21, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Theme Variables Override */


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 60px;
  transition: background-color 0.4s ease, color 0.4s ease;
}

a {
  color: var(--primary-burgundy);
  text-decoration: none;
  transition: var(--transition);
}



a:hover {
  color: var(--primary-red);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Theme Toggle Button */
.-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.-btn:hover {
  background: var(--accent-gold-light);
  transform: rotate(15deg) scale(1.05);
}

/* 2026 Floating Quick Conversion Widget */
.floating-cta-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  animation: floatBounce 4s infinite ease-in-out;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-cta-btn {
  background: var(--primary-gradient);
  color: white !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.floating-cta-btn:hover {
  transform: scale(1.04);
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #0A0607 0%, #1A090B 100%);
  color: var(--text-light);
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.top-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-info {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.top-info a {
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.top-info a:hover {
  color: var(--primary-red);
}

/* Glassmorphic Navigation */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.logo-link:hover {
  transform: scale(1.02);
}

.logo-img {
  max-height: 52px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  position: relative;
  letter-spacing: 0.2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2.5px;
  background: var(--primary-gradient);
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  min-width: 270px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--accent-gold-light);
  color: var(--primary-burgundy);
  padding-left: 1.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary-gradient);
  color: white !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text-dark) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  border: 2px solid var(--primary-burgundy);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--primary-burgundy);
  color: white !important;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--bg-card);
  backdrop-filter: blur(25px);
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  padding: 2rem 1.75rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 7, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
}

.mobile-overlay.open {
  display: block;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-dark);
  float: right;
  cursor: pointer;
}

/* 2026 Editorial Hero Section */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #2A090D 0%, #0A0607 75%);
  color: var(--text-light);
  padding: 6.5rem 1.5rem 7.5rem 1.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(230, 57, 70, 0.14);
  color: var(--primary-red);
  border: 1px solid rgba(230, 57, 70, 0.35);
  padding: 0.5rem 1.35rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.15);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: linear-gradient(135deg, #FF6B6B 0%, #EF4D48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94A3B8;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
  border: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  background: linear-gradient(180deg, #1A0A0C 0%, #0A0607 100%);
  height: 520px;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-stats-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  color: var(--text-dark);
  padding: 1.35rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-left: 5px solid var(--primary-burgundy);
  border: 1px solid var(--border-light);
}

.hero-stats-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-burgundy);
  line-height: 1;
}

.hero-stats-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 2026 Trust Signals Bar */
.trust-bar {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-gold-light);
  color: var(--primary-burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.trust-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.trust-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Practitioner Showcase Card */
.portrait-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-top: 3rem;
}

.portrait-showcase-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 500px;
  border: 3px solid var(--accent-gold-light);
}

.portrait-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Sections */
.section {
  padding: 6rem 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  color: var(--primary-burgundy);
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Modern Card Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2.25rem;
  max-width: 1280px;
  margin: 0 auto;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 57, 70, 0.4);
}

.card-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.3px;
}

.card-link:hover {
  color: var(--primary-red);
  gap: 0.75rem;
}

/* Feature Boxes */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.25rem;
  max-width: 1280px;
  margin: 0 auto;
}

.feature-box {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-box:hover {
  border-color: var(--primary-burgundy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, rgba(255, 242, 206, 0.3) 100%);
  color: var(--primary-burgundy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-burgundy);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-burgundy);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
  color: var(--text-muted);
  font-size: 1.025rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem 2rem;
}

/* Testimonials Dark Grid */
.testimonials-section {
  background: radial-gradient(circle at 50% 0%, #1F0D10 0%, #0A0607 100%);
  color: var(--text-light);
  padding: 6.5rem 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.25rem;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #E2E8F0;
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-light);
  font-size: 1.05rem;
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--primary-red);
  font-weight: 500;
}

/* Contact Cards Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  border-top: 5px solid var(--primary-burgundy);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-card-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-gold-light);
  color: var(--primary-burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.75rem auto;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.contact-card-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-burgundy);
}

/* Content Page Banner */
.page-banner {
  background: radial-gradient(circle at 70% 30%, #2A090D 0%, #0A0607 85%);
  color: white;
  padding: 5.5rem 1.5rem;
  text-align: center;
}

.page-banner-title {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.breadcrumb {
  font-size: 0.95rem;
  color: #94A3B8;
}

.breadcrumb a {
  color: var(--primary-red);
}

.content-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  border: 1px solid var(--border-light);
}

.content-body h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-dark);
  margin: 2rem 0 1.25rem 0;
  border-bottom: 2px solid var(--accent-gold-light);
  padding-bottom: 0.6rem;
  font-weight: 700;
}

.content-body h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--primary-burgundy);
  margin: 1.75rem 0 0.85rem 0;
  font-weight: 700;
}

.content-body p {
  margin-bottom: 1.35rem;
  color: var(--text-muted);
  font-size: 1.075rem;
  line-height: 1.8;
}

.content-body ul {
  margin: 1rem 0 1.75rem 2rem;
  color: var(--text-muted);
}

.content-body li {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: #0A0607;
  color: #94A3B8;
  padding: 4.5rem 1.5rem 2.5rem 1.5rem;
  border-top: 4px solid var(--primary-burgundy);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-col-brand p {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-serif);
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 1.35rem;
  position: relative;
  padding-bottom: 0.6rem;
  font-weight: 700;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: var(--primary-red);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #CBD5E1;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-red);
  padding-left: 0.5rem;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-stats-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 2rem;
    justify-content: center;
  }
  .portrait-showcase {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .portrait-showcase-img {
    height: 380px;
  }
  .content-container {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 4.5rem 1rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-image-card {
    height: 380px;
  }
  .section {
    padding: 4rem 1rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .floating-cta-widget {
    bottom: 12px;
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}














#back-to-top:hover svg {
  transform: translateY(-2px) !important;
}



#back-to-top:hover svg {
  transform: translateY(-2px) !important;
}









#back-to-top svg {
  width: 24px !important;
  height: 24px !important;
  stroke: #FFFFFF !important;
  fill: none !important;
  display: block !important;
  margin: 0 auto !important;
  pointer-events: none !important;
  transition: transform 0.2s ease !important;
}

#back-to-top:hover svg {
  transform: translateY(-2px) !important;
}



button#back-to-top,
#back-to-top {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: #800000 !important;
  color: #FFFFFF !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease !important;
  z-index: 999999 !important;
  outline: none !important;
  line-height: 1 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

button#back-to-top.show-btt,
#back-to-top.show-btt {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

button#back-to-top:hover,
#back-to-top:hover {
  background: #EF4D48 !important;
  color: #FFFFFF !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 25px rgba(239, 77, 72, 0.5) !important;
}

#back-to-top svg {
  width: 24px !important;
  height: 24px !important;
  stroke: #FFFFFF !important;
  fill: none !important;
  display: block !important;
  margin: 0 auto !important;
  pointer-events: none !important;
}








.site-primary-footer-wrap,
.site-primary-footer-wrap[data-section="section-primary-footer-builder"] {
  padding-top: 30px !important;
  padding-bottom: 20px !important;
}

.site-below-footer-wrap,
.site-below-footer-wrap[data-section="section-below-footer-builder"] {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  min-height: auto !important;
}

.footer-widget-area .widget,
.footer-widget-area section.widget {
  margin-bottom: 0.5rem !important;
  padding-bottom: 0 !important;
}

.footer-widget-area p,
.footer-widget-area-inner p {
  margin-bottom: 0.5rem !important;
}

@media (max-width: 768px) {
  .site-primary-footer-wrap[data-section="section-primary-footer-builder"] {
    padding-top: 25px !important;
    padding-bottom: 15px !important;
  }
}


/* Sticky Footer & Zero Bottom White Gap */
html, body {
  background-color: #2B161B !important;
  margin: 0 !important;
  padding: 0 !important;
}

#page {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  background-color: #FFFFFF !important;
}

#content {
  flex: 1 0 auto !important;
}

footer.site-footer,
.site-footer {
  margin-top: auto !important;
  background-color: #2B161B !important;
  width: 100% !important;
}

.site-below-footer-wrap,
.site-below-footer-wrap[data-section="section-below-footer-builder"] {
  background-color: #2B161B !important;
}




.site-primary-footer-wrap,
.site-primary-footer-wrap[data-section="section-primary-footer-builder"] {
  background-color: #221216 !important;
  padding-top: 55px !important;
  padding-bottom: 45px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.site-below-footer-wrap,
.site-below-footer-wrap[data-section="section-below-footer-builder"] {
  background-color: #221216 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 22px !important;
  padding-bottom: 22px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  min-height: auto !important;
}

.site-footer .widget-title,
.site-footer h4,
.site-footer h5 {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  margin-bottom: 1.25rem !important;
}

.site-footer p,
.site-footer a,
.site-footer span,
.site-footer div {
  color: #D1D5DB !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.site-footer a:hover {
  color: #FFFFFF !important;
  text-decoration: underline !important;
}



@media (max-width: 768px) {
  .site-primary-footer-wrap,
  .site-primary-footer-wrap[data-section="section-primary-footer-builder"] {
    padding-top: 40px !important;
    padding-bottom: 30px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .site-below-footer-wrap,
  .site-below-footer-wrap[data-section="section-below-footer-builder"] {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}




.site-primary-footer-wrap,
.site-primary-footer-wrap[data-section="section-primary-footer-builder"] {
  background-color: #221216 !important;
  padding-top: 55px !important;
  padding-bottom: 45px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.site-below-footer-wrap,
.site-below-footer-wrap[data-section="section-below-footer-builder"] {
  background-color: #221216 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 22px !important;
  padding-bottom: 22px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  min-height: auto !important;
}

.site-footer .widget-title,
.site-footer h4,
.site-footer h5 {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  margin-bottom: 1.25rem !important;
}

.site-footer p,
.site-footer span,
.site-footer div,
.site-footer li,
.site-footer .textwidget,
.footer-widget-area p,
.footer-widget-area span,
.footer-widget-area div {
  color: #FFFFFF !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.site-footer a {
  color: #FFFFFF !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.site-footer a:hover {
  color: #EF4D48 !important;
  text-decoration: underline !important;
}



@media (max-width: 768px) {
  .site-primary-footer-wrap,
  .site-primary-footer-wrap[data-section="section-primary-footer-builder"] {
    padding-top: 40px !important;
    padding-bottom: 30px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .site-below-footer-wrap,
  .site-below-footer-wrap[data-section="section-below-footer-builder"] {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}


/* Pure White Footer & No Underline Red Hover */
.site-footer,
footer.site-footer {
  background-color: #221216 !important;
  color: #FFFFFF !important;
}

.site-primary-footer-wrap,
.site-primary-footer-wrap[data-section="section-primary-footer-builder"] {
  background-color: #221216 !important;
  padding-top: 55px !important;
  padding-bottom: 45px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.site-below-footer-wrap,
.site-below-footer-wrap[data-section="section-below-footer-builder"] {
  background-color: #221216 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 22px !important;
  padding-bottom: 22px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  min-height: auto !important;
}

.site-footer .widget-title,
.site-footer h4,
.site-footer h5 {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  margin-bottom: 1.25rem !important;
}

.site-footer p,
.site-footer span,
.site-footer div,
.site-footer li,
.site-footer .textwidget,
.footer-widget-area p,
.footer-widget-area span,
.footer-widget-area div {
  color: #FFFFFF !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.site-footer a {
  color: #FFFFFF !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.site-footer a:hover {
  color: #EF4D48 !important;
  text-decoration: none !important;
}



/* Copyright Text Color #7A7A7A */



/* Comprehensive Mobile Responsiveness Design System */
html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100% !important;
}

#page {
  overflow-x: hidden !important;
  width: 100% !important;
}

img, video, iframe, embed, object {
  max-width: 100% !important;
  height: auto !important;
}

/* Mobile Media Embed Responsiveness */
.bwg_container, .bwg-container, iframe[src*="youtube"] {
  max-width: 100% !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  /* Elementor Grid Stacking on Mobile */
  .elementor-section .elementor-container {
    flex-direction: column !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .elementor-column {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
  }

  /* Header & Navigation Spacing */
  .site-header .main-header-bar {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .main-header-bar .ast-container {
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }

  /* Typography Fluid Scaling */
  h1, .entry-title, .elementor-heading-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
    line-height: 1.25 !important;
  }

  h2 {
    font-size: clamp(1.5rem, 4vw, 2rem) !important;
  }

  h3 {
    font-size: clamp(1.25rem, 3.5vw, 1.6rem) !important;
  }

  p, body, li {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  /* Footer Grid Stacking */
  .site-primary-footer-wrap .ast-builder-grid-row {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .site-below-footer-wrap .ast-builder-grid-row {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
  }

  /* Touch Target & Floating Elements */
  #back-to-top {
    bottom: 20px !important;
    right: 20px !important;
    width: 48px !important;
    height: 48px !important;
  }
}


/* WP Photo Gallery Responsive Scaling (Preserving Original Design) */
#bwg_embed_frame_16x9_3,
.bwg_slideshow_image_container_3 iframe,
.bwg_container iframe {
  max-width: 100% !important;
  aspect-ratio: 16 / 9 !important;
}

@media (max-width: 800px) {
  #bwg_embed_frame_16x9_3,
  .bwg_slideshow_image_container_3 iframe,
  .bwg_container iframe {
    width: 100% !important;
    height: auto !important;
  }
}






/* Preserve White Text Strictly Inside Footer */
footer.site-footer,
.site-footer,
.site-primary-footer-wrap,
.site-below-footer-wrap {
  background-color: #221216 !important;
}

footer.site-footer p,
footer.site-footer span,
footer.site-footer div,
footer.site-footer li,
footer.site-footer .widget-title,
footer.site-footer h4,
footer.site-footer h5 {
  color: #FFFFFF !important;
}

footer.site-footer a {
  color: #FFFFFF !important;
}

footer.site-footer a:hover {
  color: #EF4D48 !important;
  text-decoration: none !important;
}




/* Red Navbar & Dropdown Links on Subpages (Excluding Homepage) */
body.subpage .main-header-bar a,
body.subpage .main-navigation a,
body.subpage .main-header-menu a,
body.subpage .ast-builder-menu a,
body.subpage .menu-link,
body.subpage .sub-menu a,
body.subpage .children a,
body:not(.home) .main-header-bar a,
body:not(.home) .main-navigation a,
body:not(.home) .main-header-menu a,
body:not(.home) .ast-builder-menu a,
body:not(.home) .menu-link,
body:not(.home) .sub-menu a,
body:not(.home) .children a {
  color: #EF4D48 !important;
}

body.subpage .main-navigation a:hover,
body.subpage .main-header-menu a:hover,
body.subpage .menu-link:hover,
body.subpage .sub-menu a:hover,
body:not(.home) .main-navigation a:hover,
body:not(.home) .main-header-menu a:hover,
body:not(.home) .menu-link:hover,
body:not(.home) .sub-menu a:hover {
  color: #800000 !important;
}


/* Astra Boxed Card Container Layout & Light Background Matching Reference Image */
body.ast-separate-container,
.ast-separate-container {
  background-color: #F7F5F6 !important;
}

.ast-separate-container #content.site-content,
.ast-separate-container .site-content {
  background-color: #F7F5F6 !important;
  padding-top: 50px !important;
  padding-bottom: 60px !important;
  min-height: calc(100vh - 350px) !important;
}

.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-separate-container #primary .ast-article-single {
  background-color: #FFFFFF !important;
  max-width: 1050px !important;
  margin: 0 auto !important;
  padding: 50px 60px !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06) !important;
  border-radius: 4px !important;
}

.ast-separate-container h1.entry-title,
.ast-separate-container h1 {
  font-family: 'Times New Roman', Georgia, serif !important;
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  color: #2B161B !important;
  margin-top: 10px !important;
  margin-bottom: 30px !important;
}

@media (max-width: 768px) {
  .ast-separate-container .site-content {
    padding-top: 25px !important;
    padding-bottom: 30px !important;
  }
  .ast-separate-container .ast-article-single,
  .ast-separate-container .ast-article-post {
    padding: 25px 20px !important;
    margin: 0 10px !important;
  }
}


/* Sub-Footer Copyright & Powered By Text Color #7A7A7A */
.ast-footer-copyright,
.site-below-footer-wrap,
.site-below-footer-wrap p,
.site-below-footer-wrap span,
.site-below-footer-wrap div,
.site-below-footer-wrap a,
.site-footer-below-section-1,
.site-footer-below-section-1 p,
.site-footer-below-section-2,
.site-footer-below-section-2 p {
  color: #7A7A7A !important;
  font-size: 0.95rem !important;
}


/* All Footer Links (Including Services Column) - Pure White Default, Red Hover */
footer.site-footer a,
.site-footer a,
.footer-widget-area a,
.site-primary-footer-wrap a,
.site-footer .widget_nav_menu a,
.site-footer .widget_pages a,
.site-footer ul li a {
  color: #FFFFFF !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

footer.site-footer a:hover,
.site-footer a:hover,
.footer-widget-area a:hover,
.site-primary-footer-wrap a:hover,
.site-footer .widget_nav_menu a:hover,
.site-footer .widget_pages a:hover,
.site-footer ul li a:hover {
  color: #EF4D48 !important;
  text-decoration: none !important;
}


/* Ultra-Specific Sub-Footer Copyright & Powered By Text Color #7A7A7A */
footer.site-footer .site-below-footer-wrap,
footer.site-footer .site-below-footer-wrap *,
footer.site-footer .ast-footer-copyright,
footer.site-footer .ast-footer-copyright p,
footer.site-footer .ast-footer-copyright span,
footer.site-footer .site-footer-below-section-1 p,
footer.site-footer .site-footer-below-section-2 p,
.site-below-footer-wrap,
.site-below-footer-wrap p,
.site-below-footer-wrap span,
.site-below-footer-wrap div,
.site-below-footer-wrap a,
.ast-footer-copyright,
.ast-footer-copyright p,
.site-footer-below-section-1,
.site-footer-below-section-1 p,
.site-footer-below-section-2,
.site-footer-below-section-2 p {
  color: #7A7A7A !important;
  font-size: 0.95rem !important;
}




  body.subpage .ast-mobile-header-drawer a:hover,
  body.subpage .main-navigation a:hover,
  body.subpage .ast-builder-menu-mobile a:hover,
  body.subpage .main-header-menu a:hover,
  body:not(.home) .ast-mobile-header-drawer a:hover,
  body:not(.home) .main-navigation a:hover {
    color: #800000 !important;
  }

  /* Mobile Drawer Menu Container Background */
  .ast-mobile-header-drawer,
  .ast-mobile-header-drawer .ast-mobile-header-drawer-content,
  .ast-header-break-point .main-header-menu,
  .ast-header-break-point .main-navigation {
    background-color: #FFFFFF !important;
  }

  /* Ensure Body Content Text on Mobile is Crisp Black (#222222) */
  

  /* Mobile Sub-Footer Copyright Color #7A7A7A */
  .ast-footer-copyright p,
  .site-below-footer-wrap p,
  .site-footer-below-section-1 p,
  .site-footer-below-section-2 p {
    color: #7A7A7A !important;
  }
}


/* 1:1 Mobile Parity - Same Colors & Styling as Desktop */
@media (max-width: 921px) {
  /* Subpage Mobile Navigation Links - Primary Red #EF4D48 */
  body.subpage .ast-mobile-header-drawer a,
  body.subpage .main-navigation a,
  body.subpage .ast-builder-menu-mobile a,
  body.subpage .main-header-menu a,
  body.subpage .ast-header-break-point a,
  body:not(.home) .ast-mobile-header-drawer a,
  body:not(.home) .main-navigation a,
  body:not(.home) .ast-builder-menu-mobile a,
  body:not(.home) .main-header-menu a,
  body:not(.home) .ast-header-break-point a {
    color: #EF4D48 !important;
  }

  body.subpage .ast-mobile-header-drawer a:hover,
  body.subpage .main-navigation a:hover,
  body:not(.home) .ast-mobile-header-drawer a:hover {
    color: #800000 !important;
  }

  /* Sub-Footer Copyright & Powered By - Exact #7A7A7A Gray */
  .ast-footer-copyright,
  .ast-footer-copyright p,
  .ast-footer-copyright span,
  .site-below-footer-wrap p,
  .site-footer-below-section-1 p,
  .site-footer-below-section-2 p {
    color: #7A7A7A !important;
  }

  /* Footer Links - Pure White Default, Red Hover */
  footer.site-footer a,
  .site-footer a,
  .footer-widget-area a,
  .site-footer ul li a {
    color: #FFFFFF !important;
  }

  footer.site-footer a:hover,
  .site-footer a:hover,
  .footer-widget-area a:hover,
  .site-footer ul li a:hover {
    color: #EF4D48 !important;
  }
}


/* Ensure Back to Top Button is 100% Visible & Touchable on Mobile Viewports */
@media (max-width: 921px) {
  button#back-to-top,
  #back-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background-color: #800000 !important;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
    box-shadow: 0 6px 22px rgba(0,0,0,0.45) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999999 !important;
    outline: none !important;
    line-height: 1 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }

  button#back-to-top svg,
  #back-to-top svg {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
    margin: 0 auto !important;
    stroke: #FFFFFF !important;
  }
}


/* Back to Top Floating Button Styles */
button#back-to-top,
#back-to-top {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  border-radius: 50% !important;
  background-color: #800000 !important;
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(20px) !important;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease !important;
  z-index: 9999999 !important;
  outline: none !important;
  line-height: 1 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

button#back-to-top:hover,
#back-to-top:hover {
  background-color: #EF4D48 !important;
  transform: translateY(-4px) !important;
}

button#back-to-top.show-btt,
#back-to-top.show-btt {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

@media (max-width: 768px) {
  button#back-to-top,
  #back-to-top {
    bottom: 20px !important;
    right: 20px !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }
}


/* Dedicated Mobile Viewport Back to Top Styling */
@media (max-width: 921px) {
  button#back-to-top,
  #back-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    border-radius: 50% !important;
    background-color: #800000 !important;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5) !important;
    z-index: 99999999 !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  button#back-to-top.show-btt,
  #back-to-top.show-btt {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}
