/* -------------------------------------------------------------
   BD SHARPENING LANDING PAGE STYLESHEET
   ------------------------------------------------------------- */

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #002D62;      /* Deep Navy Blue from Flyer */
  --color-primary-light: #0d4b8f;/* Lighter Navy Blue */
  --color-dark-bg: #010c1a;      /* Very Dark Navy/Black */
  --color-white: #ffffff;
  --color-text-muted: #cbd5e1;
  --color-accent: #00e5ff;       /* Metallic Cyan for subtle highlights */
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --card-border: 1px solid rgba(255, 255, 255, 0.12);
  --card-bg-glass: rgba(0, 20, 45, 0.75);
}

body {
  font-family: var(--font-body);
  color: var(--color-white);
  background-color: var(--color-dark-bg);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* -------------------------------------------------------------
   Background Video & Overlays
   ------------------------------------------------------------- */
.video-background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background-color: var(--color-dark-bg);
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.45; /* Let the video play but keep it subtle */
  filter: contrast(110%) brightness(90%);
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Dark navy blue gradient overlay to ensure text contrast */
  background: linear-gradient(135deg, 
    rgba(1, 12, 26, 0.92) 0%, 
    rgba(0, 20, 45, 0.85) 60%, 
    rgba(0, 45, 98, 0.75) 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: -1;
}

/* -------------------------------------------------------------
   Page Wrapper
   ------------------------------------------------------------- */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* -------------------------------------------------------------
   Main Header
   ------------------------------------------------------------- */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.header-logo {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) brightness(1.1);
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.02);
}

.header-cta-container {
  display: flex;
}

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #0d5fb7 0%, var(--color-primary) 100%);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 36px;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 45, 98, 0.5);
  border-radius: 50px;
}

.btn-primary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.02);
  border-color: var(--color-white);
}

.icon-phone, .btn-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.btn-primary .btn-icon {
  width: 24px;
  height: 24px;
}

/* -------------------------------------------------------------
   Hero Intro Section
   ------------------------------------------------------------- */
.hero-section {
  text-align: center;
  padding: 60px 0 40px 0;
}

.hero-tagline {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.tagline-highlight {
  display: block;
  color: var(--color-white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.tagline-sub {
  display: block;
  background: linear-gradient(to right, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.subtitle-features {
  display: block;
  font-weight: 800;
  color: var(--color-white);
  font-size: 1.35rem;
  margin-top: 10px;
  letter-spacing: 2px;
  position: relative;
}

.subtitle-features::before, .subtitle-features::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 2px;
  background-color: var(--color-white);
  margin: 0 15px;
  opacity: 0.8;
}

/* -------------------------------------------------------------
   Information Cards Grid
   ------------------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 80px;
}

.info-card {
  background: var(--card-bg-glass);
  border: var(--card-border);
  border-radius: 18px;
  padding: 35px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  position: relative;
}

.info-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.25);
}

.info-card:hover::after {
  transform: translateX(100%);
}

.card-title {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
  border-left: 4px solid var(--color-white);
  padding-left: 15px;
  letter-spacing: 0.5px;
}

/* -------------------------------------------------------------
   Schedule Module
   ------------------------------------------------------------- */
.schedule-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.schedule-item {
  display: flex;
  align-items: center;
  background: rgba(0, 45, 98, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.schedule-item:hover {
  background: rgba(0, 45, 98, 0.85);
  transform: scale(1.01);
}

.schedule-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.card-icon {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.schedule-text h3 {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.schedule-text .date {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
}

.schedule-text .time {
  font-size: 1rem;
  color: var(--color-white);
  opacity: 0.9;
}

/* -------------------------------------------------------------
   Pricing Module
   ------------------------------------------------------------- */
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border-left: 4px solid var(--color-primary);
  font-family: var(--font-headings);
}

.pricing-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pricing-label {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.pricing-divider {
  flex-grow: 1;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.15);
  margin: 0 15px;
}

.pricing-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-row.additional {
  border-left-color: var(--color-primary-light);
  background: rgba(0, 45, 98, 0.2);
}

/* -------------------------------------------------------------
   Booking Module
   ------------------------------------------------------------- */
.booking-card {
  grid-column: span 2;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 20, 45, 0.85) 0%, rgba(0, 45, 98, 0.75) 100%);
  padding: 45px 35px;
  border-color: rgba(255, 255, 255, 0.2);
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.5px;
}

.badge-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.availability-alert {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-phone-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-hint {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.75;
}

/* Pulsing Button Animation */
.pulse-btn {
  animation: buttonPulse 2.5s infinite;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 95, 183, 0.7), 0 8px 24px rgba(0, 45, 98, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(13, 95, 183, 0), 0 8px 24px rgba(0, 45, 98, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 95, 183, 0), 0 8px 24px rgba(0, 45, 98, 0.5);
  }
}

/* -------------------------------------------------------------
   Payment Methods Module
   ------------------------------------------------------------- */
.payment-card {
  grid-column: span 2;
  text-align: center;
  padding: 30px;
}

.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
}

.payment-icon {
  font-size: 1.8rem;
}

.payment-svg-icon {
  width: 32px;
  height: 32px;
  color: var(--color-white);
  opacity: 0.95;
}

.venmo-badge {
  background-color: var(--color-white);
  color: #008CFF; /* Venmo Blue */
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* -------------------------------------------------------------
   Bottom Footer
   ------------------------------------------------------------- */
.main-footer {
  margin-top: auto;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline-container {
  background-color: var(--color-primary);
  border-radius: 8px;
  padding: 18px 20px;
  text-align: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.footer-tagline .star {
  color: var(--color-white);
  font-size: 1rem;
}

.footer-community {
  text-align: center;
  margin-bottom: 25px;
}

.community-banner {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  background-color: rgba(0, 45, 98, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-location {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.footer-credits {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  opacity: 0.8;
}

/* -------------------------------------------------------------
   Responsive Media Queries
   ------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-tagline {
    font-size: 2.5rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr; /* Stacks all columns on tablets */
    gap: 20px;
  }
  
  .booking-card, .payment-card {
    grid-column: span 1;
  }
  
  .payment-methods {
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .main-header {
    padding: 15px 0;
  }
  
  .header-logo {
    height: 40px;
  }
  
  .call-header-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .icon-phone {
    margin-right: 5px;
  }
  
  .hero-section {
    padding: 40px 0 25px 0;
  }
  
  .hero-tagline {
    font-size: 1.85rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .subtitle-features {
    font-size: 1.05rem;
    letter-spacing: 1px;
  }
  
  .subtitle-features::before, .subtitle-features::after {
    width: 20px;
    margin: 0 8px;
  }
  
  .info-card {
    padding: 25px 20px;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .schedule-item {
    padding: 15px;
  }
  
  .schedule-icon-wrapper {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  
  .schedule-text .date {
    font-size: 1.1rem;
  }
  
  .schedule-text .time {
    font-size: 0.9rem;
  }
  
  .pricing-row {
    padding: 10px 12px;
  }
  
  .pricing-label {
    font-size: 0.95rem;
  }
  
  .pricing-price {
    font-size: 1.25rem;
  }
  
  .booking-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
  
  .availability-alert {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .btn-primary {
    padding: 14px 28px;
    font-size: 1.15rem;
    width: 100%; /* Make button wide on mobile */
  }
  
  .btn-primary .btn-icon {
    width: 20px;
    height: 20px;
  }
  
  .payment-methods {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-left: 20px;
  }
  
  .footer-tagline {
    font-size: 0.85rem;
    gap: 8px;
  }
  
  .footer-tagline .star {
    font-size: 0.75rem;
  }
  
  .community-banner {
    font-size: 0.8rem;
  }
}
