/* Wolvy Courier — public website (inspired by wolvy.pk) */

.public-site {
    --wolvy-navy: #00276a;
    --wolvy-navy-deep: #001845;
    --wolvy-navy-mid: #0a3d8f;
    --wolvy-red: #e31837;
    --wolvy-red-hover: #c4122e;
    --wolvy-gold: #ffc107;
    --wolvy-gold-hover: #e6ac00;
    --wolvy-gold-dark: #c99000;
    --wolvy-teal: #16a085;
    --wolvy-surface: #ffffff;
    --wolvy-muted: #f0f4fa;
    --wolvy-muted-2: #e8eef8;
    --wolvy-border: #d5deed;
    --wolvy-text: #0f172a;
    --wolvy-text-muted: #5a6a85;
    --wolvy-text-on-dark: #ffffff;
    --wolvy-gradient-hero: linear-gradient(135deg, #001845 0%, #00276a 35%, #0a3d8f 70%, #1a2744 100%);
    --wolvy-gradient-accent: linear-gradient(90deg, #e31837 0%, #ffc107 100%);
    --wolvy-shadow: 0 12px 40px rgba(0, 39, 106, 0.15);
    --wolvy-shadow-lg: 0 24px 60px rgba(0, 24, 69, 0.28);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--wolvy-muted);
    font-family: var(--font-sans);
}

.public-site .public-container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

/* ── Header ── */
.public-site .public-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--wolvy-navy);
    border-bottom: 3px solid var(--wolvy-gold);
    box-shadow: 0 4px 24px rgba(0, 39, 106, 0.35);
}

.public-site .public-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
    flex-wrap: wrap;
    padding: 0.4rem 0;
}

.public-site .public-brand img {
    height: 54px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.public-site .public-header-tools {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1;
}

.public-site .public-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.public-site .public-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.public-site .public-nav a:hover {
    color: var(--wolvy-gold);
}

.public-site .public-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Buttons */
.public-site .btn-wolvy-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.public-site .btn-wolvy-outline:hover {
    border-color: var(--wolvy-gold);
    color: var(--wolvy-gold);
    background: rgba(255, 193, 7, 0.08);
}

.public-site .btn-wolvy-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 8px;
    background: var(--wolvy-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(227, 24, 55, 0.35);
}

.public-site .btn-wolvy-primary:hover {
    background: var(--wolvy-red-hover);
    color: #fff;
    transform: translateY(-1px);
}

.public-site .btn-wolvy-primary-lg {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    background: var(--wolvy-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(227, 24, 55, 0.35);
    transition: background 0.2s, transform 0.15s;
}

.public-site .btn-wolvy-primary-lg:hover {
    background: var(--wolvy-red-hover);
    color: #fff;
    transform: translateY(-2px);
}

.public-site .btn-wolvy-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    border: none;
    border-radius: 10px;
    background: var(--wolvy-gold);
    color: var(--wolvy-navy-deep);
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.public-site .btn-wolvy-gold:hover {
    background: var(--wolvy-gold-hover);
    color: var(--wolvy-navy-deep);
    transform: translateY(-2px);
}

.public-site .btn-wolvy-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.4rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
}

.public-site .btn-wolvy-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.public-site .btn-wolvy-outline-light {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.4rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.public-site .btn-wolvy-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Header tracking */
.public-site .tracking-search-form {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.public-site .tracking-search-input {
    width: min(220px, 36vw);
    min-width: 110px;
    height: 40px;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.88rem;
}

.public-site .tracking-search-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.public-site .tracking-search-input:focus {
    outline: none;
    border-color: var(--wolvy-gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
}

.public-site .tracking-search-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: var(--wolvy-gold);
    color: var(--wolvy-navy-deep);
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    font-weight: 700;
    transition: background 0.2s;
}

.public-site .tracking-search-btn:hover {
    background: var(--wolvy-gold-hover);
}

/* ── Hero Slider ── */
.wolvy-hero-slider {
    position: relative;
    overflow: hidden;
}

.wolvy-slider {
    position: relative;
    min-height: 520px;
}

.wolvy-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s;
    z-index: 1;
}

.wolvy-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.wolvy-slide-bg {
    position: absolute;
    inset: 0;
    background: var(--wolvy-gradient-hero);
}

.wolvy-slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(255, 193, 7, 0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 10% 80%, rgba(227, 24, 55, 0.15) 0%, transparent 50%);
}

.wolvy-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 24, 69, 0.85) 0%, rgba(0, 39, 106, 0.55) 55%, rgba(0, 39, 106, 0.25) 100%);
}

.slide-bg-store::after {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.slide-bg-delivery {
    background: linear-gradient(135deg, #001845 0%, #00276a 40%, #0d4a6e 100%);
}

.slide-bg-track {
    background: linear-gradient(135deg, #001845 0%, #1a2744 50%, #00276a 100%);
}

.wolvy-slide-content {
    position: relative;
    z-index: 3;
    padding: 4rem 0 5rem;
    max-width: 640px;
    color: #fff;
}

.wolvy-kicker {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.45);
    color: var(--wolvy-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.wolvy-slide-content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.wolvy-slide-content p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.75rem;
    max-width: 540px;
}

.wolvy-slide-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.wolvy-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(0, 39, 106, 0.6);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    transition: all 0.2s;
    backdrop-filter: blur(6px);
}

.wolvy-slider-arrow:hover {
    background: var(--wolvy-gold);
    border-color: var(--wolvy-gold);
    color: var(--wolvy-navy-deep);
}

.wolvy-slider-prev { left: 1.25rem; }
.wolvy-slider-next { right: 1.25rem; }

.wolvy-slider-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.wolvy-slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s;
}

.wolvy-slider-dots button.is-active,
.wolvy-slider-dots button:hover {
    background: var(--wolvy-gold);
    border-color: var(--wolvy-gold);
    transform: scale(1.15);
}

/* Tracking card */
.wolvy-tracking-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: var(--wolvy-shadow-lg);
    max-width: 520px;
}

.wolvy-tracking-card--slide {
    background: rgba(255, 255, 255, 0.97);
}

.wolvy-tracking-card label {
    display: block;
    font-weight: 700;
    color: var(--wolvy-text);
    margin-bottom: 0.65rem;
}

.hero-tracking-form {
    display: flex;
    gap: 0.5rem;
}

.hero-tracking-input {
    flex: 1;
    height: 52px;
    padding: 0 1rem;
    border: 2px solid var(--wolvy-border);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--wolvy-text);
    min-width: 0;
}

.hero-tracking-input:focus {
    outline: none;
    border-color: var(--wolvy-navy);
    box-shadow: 0 0 0 3px rgba(0, 39, 106, 0.15);
}

.hero-tracking-btn {
    height: 52px;
    padding: 0 1.75rem;
    border: none;
    border-radius: 10px;
    background: var(--wolvy-red);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    box-shadow: 0 4px 14px rgba(227, 24, 55, 0.35);
}

.hero-tracking-btn:hover {
    background: var(--wolvy-red-hover);
}

/* Quick track bar */
.wolvy-quick-track {
    background: var(--wolvy-gradient-accent);
    padding: 1.1rem 0;
    box-shadow: 0 4px 20px rgba(227, 24, 55, 0.25);
}

.wolvy-quick-track-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.wolvy-quick-track-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wolvy-navy-deep);
    font-weight: 800;
    font-size: 1rem;
    white-space: nowrap;
}

.wolvy-quick-track-label .bi {
    font-size: 1.25rem;
}

.wolvy-quick-track .hero-tracking-form {
    flex: 1;
    min-width: 220px;
}

.wolvy-quick-track .hero-tracking-input {
    background: #fff;
    border-color: transparent;
}

.wolvy-quick-track .hero-tracking-btn {
    background: var(--wolvy-navy);
    box-shadow: none;
}

.wolvy-quick-track .hero-tracking-btn:hover {
    background: var(--wolvy-navy-deep);
}

.wolvy-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wolvy-navy-deep);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    transition: background 0.2s;
}

.wolvy-phone-cta:hover {
    background: rgba(255, 255, 255, 0.55);
    color: var(--wolvy-navy-deep);
}

/* Section kickers */
.wolvy-section-kicker {
    display: inline-block;
    color: var(--wolvy-red);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.65rem;
}

.wolvy-section-kicker.light {
    color: var(--wolvy-gold);
}

.wolvy-section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.wolvy-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--wolvy-text);
    margin: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
}

.wolvy-section-head.light h2 {
    color: #fff;
}

/* About split */
.wolvy-about-split {
    padding: 4.5rem 0;
    background: var(--wolvy-surface);
}

.wolvy-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.wolvy-about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.wolvy-about-card {
    background: var(--wolvy-muted);
    border: 1px solid var(--wolvy-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.wolvy-about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wolvy-shadow);
}

.wolvy-about-card.accent {
    background: var(--wolvy-navy);
    border-color: var(--wolvy-navy);
    color: #fff;
    margin-top: 2rem;
}

.wolvy-about-card .bi {
    font-size: 2.5rem;
    color: var(--wolvy-red);
    margin-bottom: 0.75rem;
}

.wolvy-about-card.accent .bi {
    color: var(--wolvy-gold);
}

.wolvy-about-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.wolvy-about-card p {
    margin: 0;
    font-size: 0.88rem;
    opacity: 0.8;
}

.wolvy-about-copy h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--wolvy-navy);
    margin: 0 0 1rem;
    line-height: 1.25;
}

.wolvy-about-copy p {
    color: var(--wolvy-text-muted);
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

.wolvy-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.wolvy-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    color: var(--wolvy-text);
    font-weight: 500;
}

.wolvy-check-list .bi {
    color: var(--wolvy-teal);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Stats */
.wolvy-stats {
    padding: 4rem 0;
    background: var(--wolvy-navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.wolvy-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 193, 7, 0.1) 0%, transparent 60%);
}

.wolvy-stats-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.wolvy-stats-header h2 {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    margin: 0;
}

.wolvy-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
}

.wolvy-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s, background 0.25s;
}

.wolvy-stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.wolvy-stat-card.highlight {
    background: linear-gradient(135deg, rgba(227, 24, 55, 0.25), rgba(255, 193, 7, 0.2));
    border-color: rgba(255, 193, 7, 0.4);
}

.wolvy-stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--wolvy-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.wolvy-stat-card.highlight .wolvy-stat-number {
    font-size: 1.75rem;
}

.wolvy-stat-label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.wolvy-stat-card small {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    opacity: 0.75;
}

/* Services */
.wolvy-services-pro {
    padding: 4.5rem 0;
    background: var(--wolvy-muted);
}

.wolvy-service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.wolvy-service-card {
    background: #fff;
    border: 1px solid var(--wolvy-border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.wolvy-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wolvy-shadow);
    border-color: var(--wolvy-navy-mid);
}

.wolvy-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--wolvy-navy) 0%, var(--wolvy-navy-mid) 100%);
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
}

.wolvy-service-icon .bi {
    font-size: 1.5rem;
    color: var(--wolvy-gold);
}

.wolvy-service-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--wolvy-navy);
    margin: 0 0 0.65rem;
}

.wolvy-service-card p {
    color: var(--wolvy-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.wolvy-service-card a {
    color: var(--wolvy-red);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
}

.wolvy-service-card a:hover {
    gap: 0.6rem;
    color: var(--wolvy-red-hover);
}

/* Why choose */
.wolvy-why {
    padding: 4.5rem 0;
    background: var(--wolvy-gradient-hero);
    position: relative;
}

.wolvy-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
}

.wolvy-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.wolvy-why-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    color: #fff;
    backdrop-filter: blur(8px);
    transition: transform 0.25s, background 0.25s;
}

.wolvy-why-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.11);
}

.wolvy-why-card .bi {
    font-size: 2rem;
    color: var(--wolvy-gold);
    margin-bottom: 1rem;
}

.wolvy-why-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.65rem;
}

.wolvy-why-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.wolvy-testimonials {
    padding: 4.5rem 0;
    background: var(--wolvy-surface);
}

.wolvy-testimonial-slider {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.wolvy-testimonial-track {
    position: relative;
    min-height: 200px;
}

.wolvy-testimonial {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 2.5rem 2rem;
    background: var(--wolvy-muted);
    border: 1px solid var(--wolvy-border);
    border-left: 5px solid var(--wolvy-red);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    text-align: center;
}

.wolvy-testimonial.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.wolvy-testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--wolvy-text);
    font-style: italic;
    margin: 0 0 1.5rem;
}

.wolvy-testimonial footer strong {
    display: block;
    font-size: 1rem;
    color: var(--wolvy-navy);
    font-weight: 800;
}

.wolvy-testimonial footer span {
    font-size: 0.88rem;
    color: var(--wolvy-text-muted);
}

.wolvy-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.wolvy-testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--wolvy-border);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.wolvy-testimonial-dots button.is-active,
.wolvy-testimonial-dots button:hover {
    background: var(--wolvy-red);
    transform: scale(1.2);
}

/* CTA band */
.wolvy-cta-band {
    padding: 3.5rem 0;
    background: var(--wolvy-gradient-accent);
}

.wolvy-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.wolvy-cta-inner h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 900;
    color: var(--wolvy-navy-deep);
    margin: 0 0 0.5rem;
}

.wolvy-cta-inner p {
    margin: 0;
    color: rgba(0, 24, 69, 0.8);
    font-weight: 500;
}

.wolvy-cta-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

/* Footer */
.public-site .public-footer {
    background: var(--wolvy-navy-deep);
    color: rgba(255, 255, 255, 0.75);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
    border-top: 3px solid var(--wolvy-gold);
}

.wolvy-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.wolvy-footer-brand img {
    height: 50px;
    margin-bottom: 0.85rem;
}

.wolvy-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 1rem;
    max-width: 280px;
}

.wolvy-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.88rem;
}

.wolvy-footer-contact a {
    color: var(--wolvy-gold);
    text-decoration: none;
    font-weight: 600;
}

.wolvy-footer-contact a:hover {
    text-decoration: underline;
}

.wolvy-footer-col h4 {
    color: var(--wolvy-gold);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
    font-weight: 800;
}

.wolvy-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wolvy-footer-col li {
    margin-bottom: 0.5rem;
}

.wolvy-footer-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.wolvy-footer-col a:hover {
    color: var(--wolvy-gold);
}

.wolvy-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.85rem;
}

/* Auth pages */
.public-site .public-auth-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0;
    background: var(--wolvy-gradient-hero);
}

.public-site .public-auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--wolvy-surface);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--wolvy-shadow-lg);
    border-top: 4px solid var(--wolvy-gold);
}

.public-site .public-auth-card.wide {
    max-width: 640px;
}

.public-site .public-auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.public-site .public-auth-header img {
    height: 58px;
    margin-bottom: 1rem;
}

.public-site .public-auth-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    color: var(--wolvy-navy);
}

.public-site .public-auth-header p {
    margin: 0;
    color: var(--wolvy-text-muted);
    font-size: 0.92rem;
}

.public-site .public-auth-footer {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--wolvy-text-muted);
}

.public-site .public-auth-footer a {
    color: var(--wolvy-red);
    font-weight: 700;
    text-decoration: none;
}

.public-site .public-auth-footer a:hover {
    text-decoration: underline;
}

.public-site .btn-primary {
    background: var(--wolvy-red) !important;
    border-color: var(--wolvy-red) !important;
    font-weight: 700;
}

.public-site .btn-primary:hover {
    background: var(--wolvy-red-hover) !important;
    border-color: var(--wolvy-red-hover) !important;
}

/* Track page */
.wolvy-track-hero {
    background: var(--wolvy-gradient-hero);
    padding: 2.75rem 0;
    color: #fff;
    text-align: center;
    border-bottom: 3px solid var(--wolvy-gold);
}

.wolvy-track-hero h1 {
    font-size: 1.85rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.wolvy-track-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.public-site .tracking-page-public {
    padding: 2rem 0 3rem;
    background: var(--wolvy-muted);
}

.public-site .tracking-page-public .tracking-inline-search {
    margin-bottom: 1.5rem;
}

.public-site .tracking-page-public .tracking-inline-search .tracking-search-form {
    max-width: 560px;
    margin: 0 auto;
}

.public-site .tracking-page-public .tracking-inline-search .tracking-search-input {
    flex: 1;
    width: auto;
    height: 48px;
    font-size: 1rem;
    background: #fff;
    border: 2px solid var(--wolvy-border);
    color: var(--wolvy-text);
}

.public-site .tracking-page-public .tracking-inline-search .tracking-search-input:focus {
    border-color: var(--wolvy-navy);
    box-shadow: 0 0 0 3px rgba(0, 39, 106, 0.15);
}

.public-site .tracking-page-public .tracking-inline-search .tracking-search-btn {
    width: 48px;
    height: 48px;
    background: var(--wolvy-red);
    border: none;
    color: #fff;
}

.public-site .tracking-page-public .tracking-inline-search .tracking-search-btn:hover {
    background: var(--wolvy-red-hover);
}

.public-site .tracking-page-public .tracking-details-card,
.public-site .tracking-page-public .tracking-state-card,
.public-site .tracking-page-public .tracking-timeline-card {
    background: #fff;
    border: 1px solid var(--wolvy-border);
    border-radius: 14px;
}

/* Mobile nav */
.wolvy-nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    padding: 0.4rem 0.65rem;
    cursor: pointer;
    font-size: 1.35rem;
}

/* Responsive */
@media (max-width: 992px) {
    .wolvy-about-grid {
        grid-template-columns: 1fr;
    }

    .wolvy-about-visual {
        order: 2;
    }

    .wolvy-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wolvy-service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .wolvy-why-grid {
        grid-template-columns: 1fr;
    }

    .wolvy-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wolvy-nav-toggle {
        display: block;
    }

    .public-site .public-header-tools {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0.75rem;
    }

    .public-site .public-header-tools.is-open {
        display: flex;
    }

    .public-site .public-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .public-site .public-nav-actions {
        width: 100%;
        flex-direction: column;
    }

    .public-site .tracking-search-form {
        width: 100%;
    }

    .public-site .tracking-search-input {
        flex: 1;
        width: auto;
    }

    .wolvy-slider {
        min-height: 480px;
    }

    .wolvy-slide-content {
        padding: 3rem 0 4.5rem;
    }

    .wolvy-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .wolvy-slider-prev { left: 0.5rem; }
    .wolvy-slider-next { right: 0.5rem; }

    .hero-tracking-form {
        flex-direction: column;
    }

    .wolvy-quick-track-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .wolvy-stats-grid,
    .wolvy-service-cards {
        grid-template-columns: 1fr;
    }

    .wolvy-about-visual {
        grid-template-columns: 1fr;
    }

    .wolvy-about-card.accent {
        margin-top: 0;
    }

    .wolvy-footer-grid {
        grid-template-columns: 1fr;
    }

    .wolvy-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .wolvy-cta-actions {
        justify-content: center;
    }
}
