/* Badge & Hose — Landing Page Styles */

/* ============================================
   Logo in header
   ============================================ */
.site-logo-img {
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/assets/images/hero-police.jpg') center center / cover no-repeat;
    color: var(--bh-white);
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 26, 46, 0.88) 0%,
        rgba(26, 39, 68, 0.82) 50%,
        rgba(15, 26, 46, 0.92) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    margin-bottom: var(--space-lg);
}

.hero-logo {
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(200, 153, 46, 0.3);
    animation: logoReveal 0.8s ease-out;
}

@keyframes logoReveal {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

.hero h1 {
    color: var(--bh-white);
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    animation: fadeUp 0.6s ease-out 0.2s both;
}

.hero h1 .gold {
    color: var(--bh-gold-light);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--bh-gray-200);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    animation: fadeUp 0.6s ease-out 0.35s both;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeUp 0.6s ease-out 0.5s both;
}

.hero-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.hero-cta-note {
    font-size: 0.8rem;
    color: var(--bh-gray-300);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-sub { font-size: 1.2rem; }
}

/* ============================================
   Credibility Bar
   ============================================ */
.cred-bar {
    background: var(--bh-navy);
    padding: var(--space-lg) 0;
    border-bottom: 3px solid var(--bh-gold);
}

.cred-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
}

.cred-item {
    text-align: center;
    flex: 1 1 120px;
    min-width: 100px;
}

.cred-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--bh-gold-light);
    line-height: 1;
}

.cred-label {
    display: block;
    font-size: 0.75rem;
    color: var(--bh-gray-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-xs);
}

.cred-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .cred-divider { display: none; }
    .cred-items { gap: var(--space-md); }
}

/* ============================================
   Section Headers (shared)
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
}

.section-sub {
    color: var(--bh-gray-500);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: var(--space-sm);
}

/* ============================================
   Constructs Section
   ============================================ */
.constructs-section {
    padding: var(--space-3xl) 0;
    background: var(--bh-off-white);
}

.construct-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 600px) {
    .construct-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .construct-grid { grid-template-columns: repeat(3, 1fr); }
    /* Last row single card centered */
    .construct-grid .construct-card:last-child:nth-child(3n+1) {
        grid-column: 2;
    }
}

.construct-card {
    background: var(--bh-white);
    border: 1px solid var(--bh-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    transition: transform 0.15s, box-shadow 0.15s;
}

.construct-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.construct-icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.construct-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.construct-card p {
    font-size: 0.9rem;
    color: var(--bh-gray-500);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.construct-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bh-gold);
    background: var(--bh-gold-muted);
    padding: 2px 10px;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

/* ============================================
   Photo Strip
   ============================================ */
.photo-break {
    overflow: hidden;
}

.photo-strip {
    display: flex;
    height: 220px;
}

.photo-strip-item {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.photo-strip-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 39, 68, 0.25);
}

@media (max-width: 600px) {
    .photo-strip { height: 150px; }
}

/* ============================================
   Why Section
   ============================================ */
.why-section {
    padding: var(--space-3xl) 0;
    background: var(--bh-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

.why-card {
    padding: var(--space-lg);
    border-left: 3px solid var(--bh-gold);
}

.why-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bh-gray-200);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--bh-gray-500);
    line-height: 1.6;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    padding: var(--space-3xl) 0;
    background: var(--bh-off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

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

.pricing-card {
    background: var(--bh-white);
    border: 1px solid var(--bh-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    text-align: center;
}

.pricing-featured {
    border-color: var(--bh-gold);
    border-width: 2px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .pricing-featured {
        transform: scale(1.05);
        z-index: 2;
    }
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bh-gold);
    color: var(--bh-navy-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: var(--space-lg);
}

.pricing-header h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bh-navy);
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--bh-gray-500);
    margin-top: var(--space-xs);
    margin-bottom: 0;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-lg);
}

.pricing-features li {
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--bh-gray-700);
    border-bottom: 1px solid var(--bh-gray-100);
    padding-left: 1.5em;
    position: relative;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--bh-success);
    font-weight: 700;
}

.pricing-note {
    font-size: 0.9rem;
}

/* ============================================
   Find Your Exam Section
   ============================================ */
.find-section {
    padding: var(--space-3xl) 0;
    background: var(--bh-white);
}

.find-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .find-content { grid-template-columns: 1fr 1fr; }
}

.find-text h2 {
    margin-bottom: var(--space-md);
}

.find-text p {
    font-size: 0.95rem;
    color: var(--bh-gray-500);
    line-height: 1.6;
}

.find-steps {
    padding-left: 1.25rem;
    margin: var(--space-lg) 0;
}

.find-steps li {
    font-size: 0.95rem;
    color: var(--bh-gray-700);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.find-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--bh-off-white);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--bh-gray-200);
}

.faq-question {
    padding: var(--space-lg) 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bh-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--bh-gray-300);
    margin-left: var(--space-md);
    flex-shrink: 0;
    transition: transform 0.2s;
}

details[open] .faq-question::after {
    content: '\2212';
}

.faq-answer {
    padding-bottom: var(--space-lg);
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--bh-gray-500);
    line-height: 1.7;
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
    padding: var(--space-3xl) 0;
    background: var(--bh-navy);
    color: var(--bh-white);
}

.final-cta-logo {
    border-radius: 50%;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.final-cta h2 {
    color: var(--bh-white);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.final-cta p {
    color: var(--bh-gray-300);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto var(--space-xl);
}

/* ============================================
   Footer (enhanced from base)
   ============================================ */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

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

.footer-brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
}

.footer-brand img {
    border-radius: 50%;
}

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bh-white);
}

.footer-brand .ampersand { color: var(--bh-gold); }

.footer-tagline {
    width: 100%;
    font-size: 0.8rem;
    color: var(--bh-gray-500);
    margin-top: 0;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links h4 {
    color: var(--bh-gray-300);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-xs);
}

.footer-links a {
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--bh-gray-500);
    margin-bottom: var(--space-xs);
}

.footer-disclaimer {
    font-size: 0.7rem !important;
    color: var(--bh-gray-500) !important;
    max-width: 600px;
    margin: var(--space-sm) auto 0;
}
