/* ==========================================
   ZIEGLER LOCKS - MAIN STYLESHEET
   Pure CSS3 - No Framework Dependencies
   ========================================== */

/* CSS Custom Properties (Variables) */
:root {
  /* Brand Colors */
  --brand-red: #D80000;
  --brand-dark-red: #990000;
  --brand-black: #0a0a0a;
  --brand-dark-grey: #1a1a1a;
  --brand-light-grey: #e5e5e5;

  /* Zinc Scale (for dark theme) */
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #a1a1aa; /* Lightened for WCAG AA compliance on dark bg */
  --zinc-600: #81818a; /* Lightened for WCAG AA compliance */
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --container-max-width: 1280px;
  --container-padding: 1rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Brand Colors Utility */
  --text-brand-red: var(--brand-red);
}

.text-brand-red {
  color: var(--brand-red);
}

.hidden {
  display: none !important;
}

/* ==========================================
   MODAL / POPUP COMPONENT
   ========================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: opacity var(--transition-normal);
}

.modal-content {
  background-color: var(--zinc-900);
  border: 1px solid var(--zinc-800);
  border-radius: 1rem;
  max-width: 28rem;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: modal-slide-up 0.4s ease-out;
}

@keyframes modal-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--zinc-800);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.modal-body {
  padding: 1.5rem;
  color: var(--zinc-300);
  line-height: 1.6;
}

.modal-body p {
  margin-bottom: 1rem;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

.modal-footer {
  padding: 1rem 1.5rem;
  background-color: var(--zinc-950);
  border-top: 1px solid var(--zinc-800);
  display: flex;
  justify-content: flex-end;
}

.modal-footer .btn {
  padding: 0.75rem 2rem;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--brand-black);
  color: var(--brand-light-grey);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Focus Visibility */
:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 4px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--brand-red);
  color: white;
  padding: 1rem;
  z-index: 1000;
  transition: top 0.2s;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0 0 0.5rem 0.5rem;
}

.skip-link:focus {
  top: 0;
}

/* Selection */
::selection {
  background-color: var(--brand-red);
  color: white;
}

/* ==========================================
   LAYOUT COMPONENTS
   ========================================== */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

main {
  flex: 1;
}

/* ==========================================
   PROMOTIONAL BANNER
   ========================================== */

.promo-banner {
  background-color: var(--brand-red);
  color: white;
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 50;
}


/* ==========================================
   TOP BAR (Info Bar)
   ========================================== */

.top-bar {
  background-color: var(--brand-dark-grey);
  border-bottom: 1px solid var(--zinc-800);
  padding: 0.5rem 0;
  display: none;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--zinc-400);
}

.top-bar-left {
  display: flex;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.top-bar-item:hover {
  color: var(--brand-red);
}

.top-bar-item svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--brand-red);
}

.top-bar-right {
  display: flex;
  gap: 1rem;
}

.top-bar-right a {
  transition: color var(--transition-fast);
}

.top-bar-right a:hover {
  color: white;
}

.top-bar-right svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--zinc-800);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo svg {
    height: 3.5rem;
  }
}

/* Desktop Navigation */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--zinc-300);
  transition: color var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-red);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* CTA Button */
.btn-cta {
  display: none;
  background-color: var(--brand-red);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-normal);
  box-shadow: 0 0 15px rgba(216, 0, 0, 0.3);
  align-items: center;
  gap: 0.5rem;
}

.btn-cta:hover {
  background-color: var(--brand-dark-red);
  transform: scale(1.05);
}

.btn-cta svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .btn-cta {
    display: flex;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  color: var(--zinc-300);
  transition: color var(--transition-fast);
}

.mobile-menu-btn:hover {
  color: white;
}

.mobile-menu-btn svg {
  width: 2rem;
  height: 2rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  background-color: var(--zinc-900);
  border-bottom: 1px solid var(--zinc-800);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.mobile-menu.active {
  max-height: 24rem;
  opacity: 1;
}

.mobile-menu-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-content a {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--zinc-300);
  transition: color var(--transition-fast);
}

.mobile-menu-content a:hover,
.mobile-menu-content a.active {
  color: var(--brand-red);
}

.mobile-menu-content .btn-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
  background-color: var(--zinc-950);
  border-top: 1px solid var(--zinc-900);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h3 {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.footer-column p {
  color: var(--zinc-500);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--zinc-500);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--brand-red);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-red);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  color: var(--zinc-500);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid var(--zinc-900);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: var(--zinc-600);
  font-size: 0.75rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--zinc-600);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--brand-red);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.25) brightness(0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--brand-black), rgba(10, 10, 10, 0.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-subtitle {
  color: var(--brand-red);
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--brand-red);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(229, 229, 229, 0.8);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-normal);
  cursor: pointer;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--brand-red);
  color: white;
  box-shadow: 0 0 20px rgba(216, 0, 0, 0.4);
}

.btn-primary:hover {
  background-color: var(--brand-dark-red);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-secondary:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==========================================
   STATS BANNER
   ========================================== */

.stats-banner {
  background-color: var(--brand-dark-grey);
  border-top: 1px solid var(--zinc-800);
  border-bottom: 1px solid var(--zinc-800);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  border-top: 1px solid var(--zinc-800);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    border-top: none;
    border-left: 1px solid var(--zinc-800);
  }
}

.stat-item {
  padding: 1rem;
  border-bottom: 1px solid var(--zinc-800);
}

@media (min-width: 768px) {
  .stat-item {
    border-bottom: none;
    border-right: 1px solid var(--zinc-800);
  }
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2.5rem;
  }
}

.stat-label {
  color: var(--zinc-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

/* ==========================================
   SECTIONS
   ========================================== */

.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-divider {
  width: 5rem;
  height: 0.25rem;
  background-color: var(--brand-red);
  margin: 0 auto;
  border-radius: 0.125rem;
}

.section-subtitle {
  margin-top: 1rem;
  color: var(--zinc-500);
}

/* ==========================================
   FEATURE CARDS
   ========================================== */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: rgba(24, 24, 27, 0.5);
  border: 1px solid var(--zinc-800);
  padding: 2rem;
  border-radius: 0.5rem;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: rgba(216, 0, 0, 0.5);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--zinc-950);
  border: 1px solid var(--zinc-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  border-color: var(--brand-red);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
  transition: color var(--transition-normal);
}

.feature-card:hover .feature-icon svg {
  color: var(--brand-red);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--zinc-400);
  line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
  padding: 5rem 0;
  background-color: var(--zinc-900);
  position: relative;
  overflow: hidden;
}

.cta-bg-blur {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(216, 0, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  margin-top: -5rem;
  margin-right: -5rem;
}

.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .cta-text h2 {
    font-size: 1.875rem;
  }
}

.cta-text p {
  color: var(--zinc-400);
  font-size: 1.125rem;
}

/* ==========================================
   TABLES (Services Page)
   ========================================== */

.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .services-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.service-section {
  margin-bottom: 3rem;
}

.service-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--zinc-800);
  padding-bottom: 1rem;
}

.service-header svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-red);
  margin-right: 0.75rem;
}

.table-container {
  background-color: var(--zinc-900);
  border: 1px solid var(--zinc-800);
  border-radius: 0.5rem;
  overflow: hidden;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px;
}

tbody tr {
  border-bottom: 1px solid var(--zinc-800);
  transition: background-color var(--transition-fast);
}

tbody tr:hover {
  background-color: rgba(39, 39, 42, 0.5);
}

tbody tr:last-child {
  border-bottom: none;
}

td {
  padding: 0.75rem 1rem;
  color: var(--zinc-300);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  td {
    padding: 1rem;
    font-size: 1rem;
  }
}

td:last-child {
  text-align: right;
  color: var(--brand-red);
  font-weight: 700;
  white-space: nowrap;
}

.table-note {
  font-size: 0.75rem;
  color: var(--zinc-500);
  display: block;
  margin-top: 0.25rem;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
  }
}

.sidebar-card {
  background-color: var(--zinc-900);
  border: 1px solid var(--zinc-800);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.sidebar-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-red);
  margin-right: 0.5rem;
}

.alert-box {
  background-color: rgba(127, 29, 29, 0.2);
  border: 1px solid rgba(127, 29, 29, 0.5);
  padding: 1rem;
  border-radius: 0.375rem;
  margin-top: 1.5rem;
}

.alert-box h3 {
  color: var(--brand-red);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.alert-box h3 svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.alert-box p {
  color: var(--zinc-300);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.alert-box p:last-child {
  color: var(--zinc-400);
  font-size: 0.75rem;
  margin-bottom: 0;
}

/* Payment badges */
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  background-color: var(--zinc-800);
  border: 1px solid var(--zinc-700);
  color: white;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-white {
  background-color: white;
  color: black;
  font-weight: 700;
}

.badge-green {
  background-color: #dcfce7;
  color: #166534;
  font-weight: 700;
}

/* ==========================================
   SERVICE AREA PAGE
   ========================================== */

.map-container {
  background-color: var(--zinc-900);
  border: 1px solid var(--zinc-800);
  padding: 0.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: 4rem;
}

.map-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--zinc-800);
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.5rem;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .cities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.city-card {
  background-color: var(--zinc-900);
  border: 1px solid var(--zinc-800);
  padding: 0.75rem;
  border-radius: 0.375rem;
  text-align: center;
  color: var(--zinc-300);
  transition: all var(--transition-fast);
  font-size: 0.875rem;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.city-card:hover {
  color: white;
  border-color: var(--brand-red);
  transform: translateY(-2px);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.contact-card {
  max-width: 28rem;
  width: 100%;
  background-color: var(--zinc-900);
  border: 1px solid var(--zinc-800);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: rgba(216, 0, 0, 0.2);
  border-radius: 50%;
  filter: blur(60px);
  margin-top: -4rem;
  margin-right: -4rem;
}

.contact-card-content {
  position: relative;
  z-index: 10;
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--zinc-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--brand-red);
}

.contact-card h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--zinc-400);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-card .btn {
  width: 100%;
}

.contact-card .btn svg {
  transition: transform var(--transition-normal);
}

.contact-card .btn:hover svg {
  transform: translateX(0.25rem);
}

/* ==========================================
   COOKIE BANNER
   ========================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(9, 9, 11, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--zinc-800);
  padding: 1.5rem;
  z-index: 50;
  box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-text h3 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-red);
}

.cookie-text p {
  color: var(--zinc-400);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 48rem;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-actions button {
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.cookie-decline {
  border: 1px solid var(--zinc-700);
  color: var(--zinc-300);
}

.cookie-decline:hover {
  background-color: var(--zinc-800);
  color: white;
}

.cookie-accept {
  background-color: var(--brand-red);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cookie-accept:hover {
  background-color: var(--brand-dark-red);
}

.cookie-reopen-btn {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 40;
  padding: 0.75rem;
  background-color: rgba(24, 24, 27, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--zinc-800);
  border-radius: 50%;
  color: var(--zinc-400);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cookie-reopen-btn.hidden {
  display: none;
}

.cookie-reopen-btn:hover {
  color: white;
  border-color: var(--brand-red);
}

.cookie-reopen-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform var(--transition-normal);
}

.cookie-reopen-btn:hover svg {
  transform: rotate(12deg);
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.max-w-5xl {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.space-y-3>*+* {
  margin-top: 0.75rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {

  .promo-banner,
  .top-bar,
  header,
  footer,
  .mobile-menu,
  .cookie-banner,
  .cookie-reopen-btn {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }
}