/* BuyADog – Modern Luxury Dark (Black + Gold accent, very readable) */
:root{
  --bg: #0b0f14;
  --panel: #101826;
  --panel2: #0f1a28;
  --border: rgba(255,255,255,.12);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.62);

  --gold: #d6b24c;
  --gold2:#b38a22;

  --shadow: 0 14px 40px rgba(0,0,0,.45);
}

html, body{
  background:
    radial-gradient(900px 520px at 18% -5%, rgba(214,178,76,.18), transparent 60%),
    radial-gradient(800px 480px at 85% 0%, rgba(214,178,76,.10), transparent 55%),
    var(--bg) !important;
  color: var(--text) !important;
}

h1,h2,h3,h4,h5,h6{ color: var(--text) !important; }
.text-muted{ color: var(--muted) !important; }
hr{ border-color: var(--border) !important; opacity: 1; }
.border{ border-color: var(--border) !important; }

/* Navbar */
.navbar{
  background: rgba(11,15,20,.70) !important;
  border-bottom: 1px solid var(--border) !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.navbar .navbar-brand{
  color: var(--text) !important;
  font-weight: 900;
  letter-spacing: .3px;
}
.navbar .nav-link{
  color: var(--muted) !important;
  font-weight: 700;
}
.navbar .nav-link:hover{ color: var(--text) !important; }

/* Container width (professional layout) */
.container{ max-width: 1180px; }

/* Cards */
.card, .hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)) !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  box-shadow: var(--shadow);
}
.hero-card{ position: relative; overflow: hidden; }
.hero-card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(650px 240px at 20% 25%, rgba(214,178,76,.18), transparent 60%);
  pointer-events:none;
}

/* Buttons */
.btn{ border-radius: 14px !important; font-weight: 800 !important; }
.btn-primary{
  background: linear-gradient(180deg, var(--gold), var(--gold2)) !important;
  border: 0 !important;
  color: #0b0f14 !important;
  box-shadow: 0 10px 25px rgba(214,178,76,.18);
}
.btn-primary:hover{ filter: brightness(1.03); transform: translateY(-1px); }
.btn-outline-primary{
  border: 1px solid rgba(214,178,76,.55) !important;
  color: var(--gold) !important;
}
.btn-outline-primary:hover{
  background: rgba(214,178,76,.10) !important;
  border-color: rgba(214,178,76,.75) !important;
}
.btn-outline-secondary{
  border-color: var(--border) !important;
  color: var(--text) !important;
}
.btn-outline-secondary:hover{ background: rgba(255,255,255,.07) !important; }

/* Forms (fix filters visibility + input contrast) */
.form-control, .form-select{
  background: rgba(15,26,40,.92) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: var(--text) !important;
  border-radius: 14px !important;
}
.form-control::placeholder{ color: rgba(255,255,255,.35) !important; }
.form-control:focus, .form-select:focus{
  border-color: rgba(214,178,76,.70) !important;
  box-shadow: 0 0 0 .2rem rgba(214,178,76,.15) !important;
}

/* Sticky filter sidebar (desktop) */
.filters-card{ position: sticky; top: 90px; }

/* Dog cards */
.dog-card{
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.dog-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}
.dog-card .card-img-top{
  height: 190px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  border-bottom: 1px solid var(--border);
}
.dog-card .card-body{ padding: 16px 16px 18px; }

/* Make prices POP everywhere */
.fw-bold, .h3, .h4{
  letter-spacing: .2px;
}
.price-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214,178,76,.12);
  border: 1px solid rgba(214,178,76,.25);
  color: var(--gold);
  font-weight: 900;
}
.price-pill small{ color: rgba(255,255,255,.55); font-weight: 800; }

/* Badges */
.badge{
  border-radius: 999px !important;
  padding: 7px 10px !important;
  font-weight: 900 !important;
}
.badge.text-bg-success,
.badge.text-bg-warning{
  background: rgba(214,178,76,.18) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(214,178,76,.26);
}
.badge.text-bg-primary{
  background: rgba(255,255,255,.10) !important;
  color: rgba(255,255,255,.86) !important;
  border: 1px solid rgba(255,255,255,.12);
}
.badge.text-bg-secondary{
  background: rgba(255,255,255,.10) !important;
  color: rgba(255,255,255,.85) !important;
  border: 1px solid rgba(255,255,255,.12);
}

/* Chips */
a.badge.rounded-pill.text-bg-light{
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.86) !important;
}
a.badge.rounded-pill.text-bg-light:hover{
  background: rgba(214,178,76,.10) !important;
  border-color: rgba(214,178,76,.24) !important;
  color: var(--gold) !important;
}

/* Tables */
.table{ color: var(--text) !important; }
.table td, .table th{ border-color: var(--border) !important; }
.table-striped > tbody > tr:nth-of-type(odd) > *{ background-color: rgba(255,255,255,.03) !important; }

/* Pagination */
.page-link{
  background: rgba(15,26,40,.92) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.85) !important;
}
.page-item.active .page-link{
  background: rgba(214,178,76,.14) !important;
  border-color: rgba(214,178,76,.25) !important;
  color: var(--gold) !important;
}

/* Footer */
footer{
  border-top: 1px solid var(--border);
  background: rgba(11,15,20,.55);
}
a{ color: rgba(214,178,76,.95); }
a:hover{ color: var(--gold); }

/* Utility: make $ price areas readable */
code{ color: rgba(255,255,255,.88) !important; }

/* HERO SLIDER */
.hero-slider{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
}
.hero-slide-img{
  height: 260px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}
@media (min-width: 768px){
  .hero-slide-img{ height: 340px; }
}
.hero-fade:after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(600px 300px at 20% 20%, rgba(214,178,76,.16), transparent 60%),
              linear-gradient(180deg, rgba(11,15,20,.15), rgba(11,15,20,.55));
  pointer-events:none;
}
.hero-dots{
  display:flex; gap:8px; justify-content:center; align-items:center;
}
.hero-dot{
  width:8px; height:8px; border-radius:99px;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-dot.active{
  width:22px;
  background: rgba(214,178,76,.70);
  border-color: rgba(214,178,76,.35);
}

/* CTA */
.cta-card{
  position: relative;
  overflow: hidden;
}
.cta-card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(700px 260px at 20% 10%, rgba(214,178,76,.22), transparent 60%);
  pointer-events:none;
}
.cta-title{
  font-weight: 950;
  letter-spacing: .2px;
}
.cta-sub{
  color: rgba(255,255,255,.68) !important;
}

/* FAQ */
.accordion-item{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 16px !important;
  overflow: hidden;
}
.accordion-button{
  background: transparent !important;
  color: rgba(255,255,255,.90) !important;
  font-weight: 800 !important;
}
.accordion-button:not(.collapsed){
  color: rgba(214,178,76,.95) !important;
}
.accordion-button:focus{
  box-shadow: 0 0 0 .2rem rgba(214,178,76,.15) !important;
}
.accordion-body{
  color: rgba(255,255,255,.74) !important;
}

/* ===== READABILITY FIX (Hero + CTA) ===== */

/* If any section still has bg-white from old code, force it back to dark */
.bg-white,
.card.bg-white,
.hero-card.bg-white,
.cta-card.bg-white{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)) !important;
  background-color: rgba(16,24,38,.92) !important; /* dark panel */
  /* color: var(--text) !important; */
}

/* Make hero + CTA text always readable */
.hero-card h1,
.hero-card h2,
.cta-card h2,
.cta-card h3{
  color: rgba(255,255,255,.96) !important;
  text-shadow: 0 10px 26px rgba(0,0,0,.60);
}

.hero-card p,
.cta-card p{
  color: rgba(255,255,255,.72) !important;
  text-shadow: 0 8px 20px rgba(0,0,0,.55);
}

/* Badges inside hero: make them more visible */
.hero-card .badge.text-bg-secondary{
  background: rgba(0,0,0,.28) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.88) !important;
}

/* Slider controls: make arrows visible */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
  opacity: .95;
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover{
  opacity: 1;
}

/* ================================
   FINAL READABILITY PATCH (MUST BE LAST)
   Fix: hero + CTA + FAQ text too light
================================== */

/* Make ALL main cards properly dark (your current card bg is too bright) */
.card,
.hero-card,
.cta-card{
  background: rgba(12, 18, 28, .94) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.92) !important;
}

/* Stronger shadow so it feels premium */
.card, .hero-card, .cta-card{
  box-shadow: 0 18px 55px rgba(0,0,0,.50) !important;
}

/* Make text readable even if some Bootstrap classes mess it */
.card *{
  color: inherit;
}
.card .text-muted,
.hero-card .text-muted,
.cta-card .text-muted{
  color: rgba(255,255,255,.70) !important;
}

/* HERO + CTA overlay (keeps premium glow but makes text readable) */
.hero-card:after,
.cta-card:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(12,18,28,.88) 0%, rgba(12,18,28,.55) 55%, rgba(12,18,28,.22) 100%);
}

/* Ensure hero/cta content stays above overlay */
.hero-card > * ,
.cta-card > *{
  position: relative;
  z-index: 2;
}

/* Headings: readable and bold */
.hero-card h1,
.cta-card h2,
.cta-card h3{
  color: rgba(255,255,255,.98) !important;
  text-shadow: 0 10px 26px rgba(0,0,0,.65);
}

/* Paragraphs: readable */
.hero-card p,
.cta-card p{
  color: rgba(255,255,255,.78) !important;
  text-shadow: 0 8px 22px rgba(0,0,0,.55);
}

/* Hero badges: readable (not washed out) */
.hero-card .badge{
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.88) !important;
}

/* Slider arrows visible */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.65));
  opacity: 1;
}

/* FAQ CARD + ACCORDION (your FAQ looks white/washout now) */
.accordion-item{
  background: rgba(15, 24, 38, .96) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}
.accordion-button{
  background: rgba(15, 24, 38, .96) !important;
  color: rgba(255,255,255,.92) !important;
}
.accordion-button::after{
  filter: invert(1) opacity(.85);
}
.accordion-button:not(.collapsed){
  color: rgba(214,178,76,.95) !important;
  background: rgba(15, 24, 38, 1) !important;
}
.accordion-body{
  background: rgba(12, 18, 28, .92) !important;
  color: rgba(255,255,255,.78) !important;
}

/* If any section still has bg-white, force dark */
.bg-white,
.card.bg-white,
.hero-card.bg-white,
.cta-card.bg-white{
  background: rgba(12, 18, 28, .94) !important;
  color: rgba(255,255,255,.92) !important;
}



/* HERO: tighter, cleaner, more premium */
.hero-card{
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}
.hero-card h1{
  font-size: clamp(2.1rem, 3.5vw, 3.1rem);
  line-height: 1.05;
}
.hero-card p{
  font-size: 1.05rem;
  max-width: 52ch;
}

/* Slider: hide default big arrows look, use clean round buttons */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next{
  width: 12%;
}
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
#heroCarousel .carousel-control-prev-icon:hover,
#heroCarousel .carousel-control-next-icon:hover{
  background-color: rgba(0,0,0,.48);
  border-color: rgba(214,178,76,.28);
}

/* Slider dots: move up slightly + nicer */
.hero-dots{ margin-bottom: 4px; }
.hero-dot{ height: 9px; width: 9px; }
.hero-dot.active{ width: 26px; }

/* CTA: make it look like a premium banner */
.cta-card{
  border: 1px solid rgba(214,178,76,.18) !important;
}
.cta-card:before{
  background: radial-gradient(700px 280px at 15% 10%, rgba(214,178,76,.22), transparent 60%) !important;
}
.cta-card .btn-outline-primary{
  border-color: rgba(214,178,76,.65) !important;
}

/* FAQ: add spacing + subtle divider */
#faq .accordion-item{
  margin-bottom: 12px;
}
#faq .accordion-button{
  padding: 18px 18px;
}
#faq .accordion-body{
  padding: 16px 18px 18px;
  line-height: 1.55;
}

/* ================================
   TESTIMONIALS SLIDER
================================== */
.testi-card{
  margin-top: 30px;
  background: rgba(15,24,38,.96) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 18px !important;
}
.testi-quote{
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255,255,255,.80) !important;
}
.testi-name{
  font-weight: 900;
  letter-spacing: .2px;
}
.testi-role{
  color: rgba(255,255,255,.62) !important;
  font-size: .92rem;
}
.testi-avatar{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(214,178,76,.14);
  border: 1px solid rgba(214,178,76,.24);
  color: rgba(214,178,76,.95);
  font-weight: 900;
}
#testiCarousel .carousel-indicators [data-bs-target]{
  width: 9px; height: 9px; border-radius: 999px;
  background-color: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.10);
}
#testiCarousel .carousel-indicators .active{
  width: 26px;
  background-color: rgba(214,178,76,.75);
  border-color: rgba(214,178,76,.28);
}
#testiCarousel .carousel-control-prev-icon,
#testiCarousel .carousel-control-next-icon{
  width: 44px; height: 44px;
  border-radius: 999px;
  background-color: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
#testiCarousel .carousel-control-prev-icon:hover,
#testiCarousel .carousel-control-next-icon:hover{
  background-color: rgba(0,0,0,.48);
  border-color: rgba(214,178,76,.28);
}

/* ================================
   TRUST BADGES
================================== */
.trust-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px){
  .trust-grid{ grid-template-columns: repeat(3, 1fr); }
}
.trust-item{
  background: rgba(15,24,38,.96);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.trust-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}
.trust-icon{
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(214,178,76,.14);
  border: 1px solid rgba(214,178,76,.24);
  color: rgba(214,178,76,.95);
  font-weight: 900;
  flex: 0 0 auto;
}
.trust-title{
  font-weight: 900;
  letter-spacing: .2px;
}
.trust-sub{
  color: rgba(255,255,255,.68) !important;
  font-size: .95rem;
  line-height: 1.45;
}

footer{
  background: rgba(11,15,20,.70) !important;
}
footer a{
  color: rgba(255,255,255,.80) !important;
}
footer a:hover{
  color: rgba(214,178,76,.95) !important;
}
footer .fw-semibold{
  color: rgba(255,255,255,.92) !important;
}
/* Premium auth card */
.auth-card{
  border: 1px solid rgba(214,178,76,.18) !important;
}
.auth-card{
  border: 1px solid rgba(214,178,76,.18) !important;
}
.auth-card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(650px 240px at 20% 25%, rgba(214,178,76,.18), transparent 60%);
  pointer-events:none;
}

/* Password strength bar colors */
.progress-bar.pass-weak{
  background: rgba(220,53,69,.85) !important; /* red */
}
.progress-bar.pass-good{
  background: rgba(214,178,76,.85) !important; /* gold */
}
.progress-bar.pass-strong{
  background: rgba(25,135,84,.85) !important; /* green */
}

/* Make input-group button match theme */
.input-group .btn-outline-secondary{
  border-color: rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.88) !important;
}
.input-group .btn-outline-secondary:hover{
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(214,178,76,.22) !important;
  color: rgba(214,178,76,.95) !important;
}

.brand-logo{
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.45));
}

.brand-text{
  font-weight: 900;
  letter-spacing: .3px;
  color: rgba(255,255,255,.92);
}

@media (max-width: 576px){
  .brand-logo{ height: 30px; }
  .brand-text{ font-size: 0.98rem; }
}

.navbar-brand{
  padding: 0 !important;
}



 
.brand-logo{
  /* height: 42px;        adjust if needed */
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.45));
  transition: transform .2s ease;
} 

.brand-logo:hover{
  transform: scale(1.04);
}

.navbar-brand{
  position: relative;
}

.navbar-brand::after{
  content:"";
  position:absolute;
  inset:-6px -10px;
  background: radial-gradient(circle, rgba(214,178,76,.25), transparent 70%);
  filter: blur(10px);
  z-index:-1;
  opacity:.5;
}

.footer-logo{
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
  transition: transform .18s ease, filter .18s ease;
}

.footer-logo:hover{
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));
}

@media (max-width: 576px){
  .footer-logo{ height: 40px; }
}

/* ===== Premium Footer ===== */
.footer-premium{
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(11,15,20,.60);
}

.footer-logo{
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.50));
}

.footer-strip{
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
}
.footer-strip:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 220px at 20% 10%, rgba(214,178,76,.18), transparent 60%);
  pointer-events:none;
}
.footer-dot{
  width:10px;height:10px;border-radius:999px;
  background: rgba(214,178,76,.90);
  box-shadow: 0 0 0 6px rgba(214,178,76,.14);
}

.trust-row{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 992px){
  .trust-row{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 576px){
  .trust-row{ grid-template-columns: 1fr; }
}

.trust-mini{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 14px 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.trust-mini-ic{
  width:40px;height:40px;border-radius: 14px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(214,178,76,.12);
  border: 1px solid rgba(214,178,76,.20);
}
.trust-mini-title{
  font-weight: 900;
  color: rgba(255,255,255,.92);
}
.trust-mini-sub{
  color: rgba(255,255,255,.60);
  font-size: .85rem;
}

.footer-card{
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
}

.footer-newsletter{
  display:flex;
  gap: 10px;
}
.footer-newsletter .form-control{
  flex: 1;
}
@media (max-width: 576px){
  .footer-newsletter{ flex-direction: column; }
}

.footer-social .social-btn{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
  text-decoration:none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.footer-social .social-btn:hover{
  transform: translateY(-2px);
  background: rgba(214,178,76,.10);
  border-color: rgba(214,178,76,.22);
  color: rgba(214,178,76,.95);
}



