/*
 * Dash Cam Pros Professional Website Styles
 *
 * This stylesheet defines the dark, modern aesthetic used throughout the
 * Dash Cam Pros site. A palette of deep grays and bold red accents taken
 * from the supplied logo provides a professional look while ensuring
 * excellent contrast and readability. Utility classes such as .container
 * help constrain content widths and maintain consistent spacing on
 * desktop and mobile. Media queries collapse the navigation and other
 * elements into simplified layouts on smaller screens.
 */

:root {
  --primary: #e50914;
  --primary-light: #ff4d5a;
  --secondary: #1f1f1f;
  --background: #141414;
  --card-bg: #1e1e1e;
  --text-primary: #f5f5f5;
  --text-secondary: #cccccc;
}

/* Reset and base typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--background);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header and navigation */
.header {
  background-color: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--background);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  height: 36px;
}
.brand span {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}
.nav {
  display: flex;
  align-items: center;
}
.nav .menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav .menu li a {
  color: var(--text-primary);
  font-weight: 500;
}
.nav .menu li a:hover {
  color: var(--primary);
}
.phone-link {
  background-color: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.phone-link:hover {
  background-color: var(--primary-light);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, var(--secondary), var(--background));
  padding: 6rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}
.hero-actions .btn {
  margin: 0 0.5rem;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
.btn-primary {
  background-color: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--primary-light);
}
.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Features section */
.features {
  padding: 4rem 0;
  background-color: var(--background);
}
.features h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.feature-card {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 320px;
}
.feature-card i {
  color: var(--primary);
  margin-bottom: 1rem;
}
.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Packages preview */
.packages-preview {
  padding: 4rem 0;
  background-color: var(--secondary);
}
.packages-preview h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.package-card {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
}
.package-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.package-card p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.package-card .price {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
}

/* About section */
.about {
  padding: 4rem 0;
  background-color: var(--background);
}
.about h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.about p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Call to action */
.cta {
  padding: 3rem 0;
  background-color: var(--secondary);
  text-align: center;
}
.cta h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.cta .btn {
  margin: 0 0.5rem;
}

/* Footer */
footer {
  background-color: var(--secondary);
  padding: 3rem 0 1rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-col {
  flex: 1 1 200px;
}
.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--primary);
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  color: var(--text-secondary);
}
.footer-col ul li a:hover {
  color: var(--primary);
}
.footer-logo {
  height: 40px;
  margin-bottom: 0.5rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Services page */
.services-list h1 {
  text-align: center;
  margin: 2rem 0 1rem;
  font-size: 2rem;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.service-card {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  flex: 1 1 280px;
  max-width: 320px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s;
}
.service-card:hover {
  border-color: var(--primary);
}
.service-card.selected {
  border: 2px solid var(--primary);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}
.service-card .service-price {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.service-card-actions {
  display: flex;
  gap: 0.5rem;
}
.service-card .btn {
  flex: 1;
}

.cart-panel {
  margin-top: 2rem;
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  display: none;
}
.cart-panel h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.cart-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cart-panel li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.cart-panel .subtotal-line {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}
.cart-panel .cart-final-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}
.cart-panel .btn {
  margin-top: 1rem;
}

/* Booking page */
.booking-page {
  padding: 2rem 0;
}
.booking-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.booking-form {
  flex: 1 1 400px;
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
}
.booking-form h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--secondary);
  background-color: var(--background);
  color: var(--text-primary);
  font-size: 0.9rem;
}
.form-group textarea {
  resize: vertical;
}
.form-group.required label::after {
  content: ' *';
  color: var(--primary);
}
#agreementsList div {
  margin-bottom: 0.5rem;
}
.agreement-error {
  border: 1px solid var(--primary);
  padding: 0.5rem;
  border-radius: 4px;
}
.booking-summary {
  flex: 1 1 300px;
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
}
.booking-summary h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.booking-summary ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.booking-summary .subtotal-line {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.booking-summary .btn {
  margin-top: 1rem;
}
#paymentCheckoutSection {
  display: none;
  margin-top: 2rem;
}
#receiptPanel {
  display: none;
  margin-top: 2rem;
}

/* Admin login */
.admin-login-page {
  padding: 2rem 0;
  text-align: center;
}
.admin-login-page form {
  max-width: 400px;
  margin: 0 auto;
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
}
.admin-login-page label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.admin-login-page input {
  width: 100%;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--secondary);
  background-color: var(--background);
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.admin-login-page button {
  width: 100%;
}

/* Admin dashboard */
.admin-dashboard-page {
  padding: 2rem 0;
}
.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.metric-card {
  background-color: var(--card-bg);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  flex: 1 1 180px;
  min-width: 140px;
}
.metric-card h4 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.metric-card strong {
  font-size: 1.5rem;
  color: var(--primary);
}
.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}
.admin-filters input[type="text"],
.admin-filters select {
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--secondary);
  background-color: var(--background);
  color: var(--text-primary);
  font-size: 0.9rem;
}
.admin-filters .btn {
  margin-left: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.admin-table th,
.admin-table td {
  padding: 0.5rem;
  border-bottom: 1px solid var(--secondary);
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  background-color: var(--secondary);
  color: var(--text-secondary);
  font-weight: 600;
}
.admin-table tr:nth-child(even) {
  background-color: var(--background);
}
.admin-table textarea {
  width: 100%;
  min-height: 3rem;
  background-color: var(--background);
  color: var(--text-primary);
  border: 1px solid var(--secondary);
  border-radius: 4px;
  resize: vertical;
}

/* Modal styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.modal {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90%;
  overflow-y: auto;
  position: relative;
}
.modal h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}
.modal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.modal table th,
.modal table td {
  padding: 0.5rem;
  border-bottom: 1px solid var(--secondary);
}
.modal table th {
  text-align: left;
  font-weight: 600;
  color: var(--primary);
}

/* Responsive navigation */
@media (max-width: 768px) {
  .nav .menu {
    position: absolute;
    top: 64px;
    right: 0;
    background-color: var(--secondary);
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    border-radius: 0 0 0 8px;
    display: none;
  }
  .nav .menu.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav .phone-link {
    display: none;
  }
}

/* Payment options and Zelle QR */
.payment-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.payment-choice {
  background: var(--background);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  min-width: 130px;
  cursor: pointer;
}
.payment-choice input {
  margin-right: 0.35rem;
}
.zelle-panel {
  background: var(--background);
  border: 1px solid rgba(229, 9, 20, 0.45);
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
}
.zelle-panel h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.zelle-qr {
  width: 100%;
  max-width: 360px;
  display: block;
  margin: 1rem auto;
  border-radius: 10px;
  background: #fff;
}
.zelle-confirm-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.zelle-text-btn {
  width: 100%;
  text-align: center;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 600;
}
.instagram-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
@media (max-width: 768px) {
  .booking-layout {
    flex-direction: column;
  }
  .booking-form,
  .booking-summary {
    width: 100%;
  }
  .payment-choice-group {
    flex-direction: column;
  }
  .payment-choice {
    width: 100%;
  }
  #paymentCheckoutSection .btn,
  #manualPaymentBtn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }
  .zelle-qr {
    max-width: 100%;
  }
  .admin-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-filters input,
  .admin-filters select,
  .admin-filters .btn {
    width: 100% !important;
    margin-left: 0 !important;
  }
}


/* Professional branded receipt */
.deposit-receipt-btn {
  width: 100%;
  text-align: center;
  margin: 0.5rem 0 1rem;
}
.professional-receipt {
  background: #ffffff;
  color: #151515;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(229, 9, 20, 0.18);
}
.receipt-top-accent {
  height: 10px;
  background: linear-gradient(90deg, #111111, #e50914, #111111);
}
.receipt-brand-row,
.receipt-title-row,
.receipt-footer-pro {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: center;
}
.receipt-brand-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.receipt-logo-pro {
  width: 82px;
  height: 82px;
  object-fit: contain;
}
.receipt-brand-left h2 {
  margin: 0;
  color: #111111;
  font-size: 1.75rem;
}
.receipt-brand-left p,
.receipt-title-row p,
.receipt-info-card p,
.receipt-policy-box p,
.receipt-footer-pro p {
  margin: 0.25rem 0;
  color: #555555;
}
.receipt-badge {
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}
.receipt-badge.paid {
  background: #e8f8ee;
  color: #137333;
  border: 1px solid #b7e4c7;
}
.receipt-badge.pending {
  background: #fff7e6;
  color: #9a5b00;
  border: 1px solid #ffd894;
}
.receipt-title-row {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  align-items: flex-start;
}
.receipt-title-row h3 {
  color: #e50914;
  font-size: 2rem;
  margin: 0 0 0.3rem;
}
.receipt-number-box {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 1rem;
  min-width: 220px;
  display: grid;
  gap: 0.25rem;
}
.receipt-number-box small,
.receipt-info-card h4,
.receipt-line-items h4,
.receipt-policy-box h4 {
  color: #e50914;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}
.receipt-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem;
}
.receipt-info-card {
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  border-radius: 14px;
  padding: 1rem;
}
.receipt-info-card strong,
.receipt-number-box strong {
  color: #111111;
}
.receipt-line-items {
  padding: 0 1.5rem 1.5rem;
}
.receipt-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #eeeeee;
}
.receipt-line-head {
  color: #777777;
  font-weight: 800;
  font-size: 0.85rem;
}
.receipt-total-box {
  margin: 0 1.5rem 1.5rem;
  background: #111111;
  color: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
}
.receipt-total-box div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}
.receipt-total-box strong {
  color: #ffffff;
}
.receipt-total-box .receipt-balance {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 0.5rem;
  padding-top: 0.9rem;
  font-size: 1.05rem;
}
.receipt-policy-box {
  margin: 0 1.5rem 1.5rem;
  background: #fff5f5;
  border: 1px solid #ffd1d1;
  border-radius: 16px;
  padding: 1rem 1.25rem;
}
.receipt-footer-pro {
  background: #f7f7f7;
  border-top: 1px solid #eeeeee;
  align-items: flex-start;
}
.receipt-footer-pro strong {
  color: #111111;
}
.receipt-footer-right {
  text-align: right;
}
@media (max-width: 768px) {
  .receipt-brand-row,
  .receipt-title-row,
  .receipt-footer-pro {
    flex-direction: column;
    align-items: flex-start;
  }
  .receipt-section-grid {
    grid-template-columns: 1fr;
  }
  .receipt-number-box {
    width: 100%;
  }
  .receipt-footer-right {
    text-align: left;
  }
  .receipt-logo-pro {
    width: 68px;
    height: 68px;
  }
  .receipt-title-row h3 {
    font-size: 1.6rem;
  }
}
@media print {
  body {
    background: #ffffff !important;
  }
  header,
  footer,
  #paymentCheckoutSection,
  .receiptPanelActions,
  #emailReceiptBtn,
  #smsReceiptBtn,
  #printReceiptBtn {
    display: none !important;
  }
  .professional-receipt {
    box-shadow: none;
    border: 1px solid #dddddd;
  }
}


/* Final site polish */
.page-hero {
  background: radial-gradient(circle at top right, rgba(229, 9, 20, 0.25), transparent 35%),
              linear-gradient(135deg, var(--secondary), var(--background));
  text-align: center;
  padding: 4.5rem 0 3.5rem;
}
.compact-hero {
  padding: 3.5rem 0 2.5rem;
}
.eyebrow {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.narrow {
  max-width: 900px;
}
.center {
  text-align: center;
}
.service-card-with-image {
  overflow: hidden;
  padding: 0;
}
.service-card-with-image h3,
.service-card-with-image p,
.service-card-with-image .service-price,
.service-card-with-image .service-card-actions {
  margin-left: 1rem;
  margin-right: 1rem;
}
.service-card-with-image h3 {
  margin-top: 1rem;
}
.service-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  background: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.payment-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  margin: 1rem 0;
}
.payment-divider::before,
.payment-divider::after {
  content: "";
  height: 1px;
  background: rgba(255,255,255,0.12);
  flex: 1;
}
.zelle-toggle-btn {
  width: 100%;
  text-align: center;
}
.zelle-receipt-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}
.faq-item {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  font: inherit;
  font-weight: 800;
  text-align: left;
  padding: 1rem 1.25rem;
  cursor: pointer;
}
.faq-question::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-size: 1.25rem;
}
.faq-item.open .faq-question::after {
  content: "–";
}
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
}
.faq-item.open .faq-answer {
  display: block;
}
.policy-grid,
.process-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.policy-card,
.process-card,
.testimonial-card,
.contact-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.process-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.dark-split {
  background: var(--secondary);
}
.contact-card .btn {
  margin-top: 0.75rem;
  margin-right: 0.5rem;
}
.big-ig {
  font-size: 1.1rem;
  margin-top: 0.8rem;
}
.ig-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e50914, #111111);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(229, 9, 20, 0.35);
  animation: igPulse 2.2s infinite;
}
.ig-floating svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}
.ig-pop-label {
  position: absolute;
  right: 66px;
  white-space: nowrap;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  opacity: 0;
  transform: translateX(8px);
  transition: 0.2s ease;
}
.ig-floating:hover .ig-pop-label {
  opacity: 1;
  transform: translateX(0);
}
@keyframes igPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@media (max-width: 768px) {
  .service-image {
    height: 190px;
  }
  .ig-pop-label {
    display: none;
  }
  .contact-card .btn {
    width: 100%;
    margin-right: 0;
  }
}


/* Top navigation menu update: keep options inside one clean menu */
.header .container {
  position: relative;
}
.nav {
  gap: 0.75rem;
}
.menu-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-primary);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
}
.menu-toggle:hover {
  background: rgba(229, 9, 20, 0.18);
  border-color: rgba(229, 9, 20, 0.7);
}
.nav .menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(300px, calc(100vw - 2rem));
  background: rgba(20,20,20,0.98);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 0.6rem;
  display: none !important;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
}
.nav .menu.open {
  display: flex !important;
}
.nav .menu li {
  width: 100%;
}
.nav .menu li a {
  display: block;
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  color: var(--text-primary);
}
.nav .menu li a:hover {
  text-decoration: none;
  background: rgba(229, 9, 20, 0.14);
  color: #fff;
}
@media (max-width: 768px) {
  .header .container {
    gap: 0.75rem;
  }
  .brand span {
    font-size: 0.95rem;
  }
  .brand img {
    height: 32px;
  }
  .phone-link {
    padding: 0.5rem 0.7rem;
    font-size: 0.84rem;
  }
  .menu-toggle span {
    display: none;
  }
  .nav .menu {
    right: 0;
    top: calc(100% + 10px);
  }
}
