/* Paradise Bulldogs LLC - Premium Website Styles */
:root{
  --bg:#0b0f14;
  --panel:#101823;
  --panel2:#0f1620;
  --text:#eef2ff;
  --muted:#b7c2d6;
  --accent:#d6b25e;
  --border:rgba(255,255,255,0.08);
}

*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar{
  background:#070a0f;
  border-bottom:1px solid var(--border);
  font-size: 14px;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
}
.topbar-left, .topbar-right{
  display:flex;
  gap:10px;
  align-items:center;
  color: var(--muted);
}
.dot{opacity:.4;}
.topbar-link{
  color: var(--text);
  text-decoration:none;
}
.topbar-link:hover{color:var(--accent);}

.header{
  position: sticky;
  top: 0;
  background: rgba(11,15,20,0.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  z-index: 10;
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 0;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{
  width:44px;height:44px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: var(--panel);
  border:1px solid var(--border);
  color: var(--accent);
  font-weight: 800;
}
.brand-text h1{
  font-size: 16px;
  letter-spacing: .3px;
}
.brand-text p{
  font-size: 13px;
  color: var(--muted);
}

.nav{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  color: var(--muted);
  text-decoration:none;
  font-size: 14px;
}
.nav a:hover{color: var(--text);}
.nav-cta{
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius: 10px;
  color: var(--text) !important;
}
.nav-cta:hover{
  border-color: rgba(214,178,94,0.6);
  color: var(--accent) !important;
}

.hero{
  padding: 54px 0;
  background: linear-gradient(180deg, rgba(214,178,94,0.10), transparent 60%);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items:center;
}
.tag{
  display:inline-block;
  background: rgba(214,178,94,0.14);
  border:1px solid rgba(214,178,94,0.25);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 12px;
}
.hero h2{
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.subtitle{
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}

.hero-buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 18px;
}

.btn{
  display:inline-block;
  text-decoration:none;
  padding: 12px 16px;
  border-radius: 12px;
  border:1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
}
.btn.primary{
  background: var(--accent);
  color:#1b1205;
  border-color: rgba(214,178,94,0.6);
}
.btn.primary:hover{filter:brightness(1.05);}
.btn.outline{
  color: var(--text);
  background: transparent;
}
.btn.outline:hover{border-color: rgba(214,178,94,0.6); color: var(--accent);}
.btn.ghost{
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.btn.ghost:hover{border-color: rgba(214,178,94,0.6);}

.btn.small{
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
}

.trustbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 8px;
}
.trust-item{
  color: var(--muted);
  border:1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  background: rgba(255,255,255,0.02);
}

.image-card{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: 18px;
  overflow:hidden;
}
.image-placeholder{
  height: 280px;
  display:grid;
  place-items:center;
  text-align:center;
  padding: 18px;
  background: linear-gradient(135deg, rgba(214,178,94,0.14), rgba(255,255,255,0.02));
}
.image-placeholder p{font-weight:800;}
.image-placeholder small{color: var(--muted);}
.image-caption{
  padding: 14px 16px;
  display:flex;
  flex-direction:column;
  gap: 2px;
}
.image-caption span{color:var(--muted); font-size: 13px;}

.section{
  padding: 56px 0;
}
.section.alt{
  background: var(--panel2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-header{
  margin-bottom: 18px;
}
.section-header h3{
  font-size: 28px;
  margin-bottom: 6px;
}
.section-header p{color: var(--muted);}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: 16px;
  overflow:hidden;
}
.card-image{
  height: 140px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}
.card-body{
  padding: 14px 14px 16px;
}
.card-body h4{margin-bottom: 6px;}
.card-body p{color: var(--muted); font-size: 14px;}
.card-actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

.notice{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border:1px solid rgba(214,178,94,0.25);
  background: rgba(214,178,94,0.10);
  color: var(--text);
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.panel{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}
.panel ul{
  margin-left: 18px;
  color: var(--muted);
}
.muted{color: var(--muted);}

.features{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}
.feature p{color: var(--muted); font-size: 14px;}

.callout{
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border:1px solid rgba(214,178,94,0.25);
  background: rgba(214,178,94,0.10);
}
.callout-actions{margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap;}

.steps{
  display:grid;
  gap: 12px;
}
.step{
  display:flex;
  gap: 12px;
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}
.step-number{
  width:36px;height:36px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(214,178,94,0.14);
  border:1px solid rgba(214,178,94,0.25);
  color: var(--accent);
  font-weight: 800;
}

.review .stars{color: var(--accent); font-weight: 800; margin-bottom: 6px;}
.reviewer{color: var(--muted); font-size: 13px;}

.faq details{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq summary{
  cursor:pointer;
  font-weight: 800;
}
.faq p{color: var(--muted); margin-top: 8px;}

.contact-box{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}
.contact-actions{margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap;}

.footer{
  padding: 26px 0;
  border-top:1px solid var(--border);
  background:#070a0f;
}
.footer-inner{
  text-align:center;
}
.small{font-size: 12px;}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr; }
  .cards{grid-template-columns:1fr;}
  .features{grid-template-columns:1fr;}
  .grid-2{grid-template-columns:1fr;}
  .contact-box{grid-template-columns:1fr;}
  .hero h2{font-size: 36px;}
}
