/* assets/css/premium.css — extra visual polish */

/* Typography */
h1, h2, h3,
.hero-title,
.section-header h2,
.logo span,
.location-card-body h3,
.info-card h2,
.benefit-card h3,
.step-card h3,
.contact-strip-text h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* Dot-grid section backgrounds */
.benefits-section,
.how-section {
    position: relative;
}

.benefits-section::before,
.how-section::before,
.parking-selector::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(15, 157, 110, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Section header polish */
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.section-header p.section-sub {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.tag-line {
    box-shadow: 0 2px 12px rgba(15, 157, 110, 0.12);
}

/* Trust bar */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 22px 5%;
    position: relative;
    z-index: 5;
}

.trust-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
    font-size: 0.88rem;
    font-weight: 600;
}

.trust-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    color: var(--text-main);
    font-weight: 800;
    font-size: 0.95rem;
}

/* Stagger reveal */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }

/* Location cards premium */
.location-card {
    position: relative;
    overflow: hidden;
}

.location-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.location-card.active::after {
    opacity: 1;
}

.location-card.active {
    transform: translateY(-6px) scale(1.01);
}


/* Nav pills in header */
header {
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(15, 157, 110, 0.08);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.nav-container {
    background: var(--gray-50);
    border-radius: 100px;
    padding: 4px 8px 4px 20px;
    border: 1px solid var(--gray-100);
}

.nav-links a {
    font-size: 0.88rem;
    padding: 8px 14px;
    border-radius: 100px;
}

.nav-links a:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.nav-links a::after {
    display: none;
}

/* Wave divider */
.wave-divider {
    display: block;
    width: 100%;
    height: 60px;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Selection color */
::selection {
    background: rgba(15, 157, 110, 0.2);
    color: var(--primary-dark);
}

@media (max-width: 1024px) {
    .nav-container {
        background: transparent;
        border: none;
        padding: 0;
        border-radius: 0;
    }

    .nav-links a:hover {
        background: transparent;
        box-shadow: none;
    }

    .trust-bar-inner { gap: 24px; }
}

@media (max-width: 768px) {
    .trust-bar { padding: 18px 5%; }
    .trust-item { flex: 1 1 40%; justify-content: center; }
}
