/*
Theme Name: Boot Verhuur
Theme URI: https://bootverhuur.nl
Description: Modern WordPress thema voor bootverhuur met membership systeem. Ontworpen voor gebruik met de Boot Verhuur Abonnement plugin.
Version: 1.5.0
Author: Walter van 't Zand | FRL Websites
Author URI: https://frl-websites.nl
Text Domain: boot-verhuur-theme
Requires at least: 5.8
Requires PHP: 7.4
License: GPL v2 or later
*/

/* ===== CSS VARIABLES ===== */
:root {
    --bvt-primary: #1a5276;
    --bvt-primary-light: #2980b9;
    --bvt-primary-dark: #0e2f44;
    --bvt-accent: #e67e22;
    --bvt-accent-light: #f39c12;
    --bvt-success: #27ae60;
    --bvt-white: #ffffff;
    --bvt-light: #f8f9fa;
    --bvt-gray-100: #f1f3f5;
    --bvt-gray-200: #e9ecef;
    --bvt-gray-300: #dee2e6;
    --bvt-gray-500: #adb5bd;
    --bvt-gray-700: #495057;
    --bvt-gray-900: #212529;
    --bvt-text: #2c3e50;
    --bvt-text-light: #6c757d;
    --bvt-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --bvt-shadow: 0 4px 15px rgba(0,0,0,0.08);
    --bvt-shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --bvt-radius: 12px;
    --bvt-radius-sm: 8px;
    --bvt-radius-lg: 20px;
    --bvt-transition: all 0.3s ease;
    --bvt-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --bvt-font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --bvt-container: 1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--bvt-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--bvt-text);
    background: var(--bvt-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bvt-primary-light); text-decoration: none; transition: var(--bvt-transition); }
a:hover { color: var(--bvt-accent); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bvt-font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--bvt-primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p { margin-bottom: 1rem; }

.bvt-container {
    max-width: var(--bvt-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.bvt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--bvt-font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--bvt-transition);
    text-decoration: none;
    line-height: 1.4;
}

.bvt-btn-primary {
    background: var(--bvt-accent);
    color: var(--bvt-white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}
.bvt-btn-primary:hover {
    background: var(--bvt-accent-light);
    color: var(--bvt-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.4);
}

.bvt-btn-secondary {
    background: var(--bvt-white);
    color: var(--bvt-primary);
    border: 2px solid var(--bvt-primary);
}
.bvt-btn-secondary:hover {
    background: var(--bvt-primary);
    color: var(--bvt-white);
    transform: translateY(-2px);
}

.bvt-btn-white {
    background: var(--bvt-white);
    color: var(--bvt-primary-dark);
    box-shadow: var(--bvt-shadow);
}
.bvt-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--bvt-shadow-lg);
    color: var(--bvt-primary-dark);
}

/* ===== TOP BAR ===== */
.bvt-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--bvt-primary-dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.bvt-topbar.bvt-hidden {
    transform: translateY(-100%);
}

.bvt-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    gap: 16px;
}

.bvt-topbar-left,
.bvt-topbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bvt-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    text-decoration: none;
    transition: var(--bvt-transition);
}
.bvt-topbar-item:hover { color: #fff; }
.bvt-topbar-item svg { opacity: 0.5; flex-shrink: 0; }

.bvt-topbar-left .bvt-topbar-item + .bvt-topbar-item {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.bvt-topbar-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 8px;
    padding-right: 12px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.bvt-topbar-user .bvt-user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bvt-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    line-height: 1;
}
.bvt-topbar-username {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.bvt-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.82rem;
    transition: var(--bvt-transition);
}
.bvt-topbar-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.bvt-topbar-link svg { opacity: 0.5; flex-shrink: 0; }

.bvt-topbar-logout {
    opacity: 0.5;
}
.bvt-topbar-logout:hover {
    opacity: 1;
}

.bvt-topbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 14px;
    background: var(--bvt-accent);
    color: #fff !important;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
    transition: var(--bvt-transition);
}
.bvt-topbar-cta:hover {
    background: var(--bvt-accent-light);
    color: #fff;
}

/* ===== HEADER ===== */
.bvt-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

.bvt-header.bvt-topbar-hidden {
    top: 0;
}

.bvt-header.scrolled {
    box-shadow: var(--bvt-shadow);
}

.bvt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.bvt-logo {
    font-family: var(--bvt-font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bvt-primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.bvt-logo:hover { color: var(--bvt-primary-dark); }
.bvt-logo-icon { font-size: 1.8rem; }
.bvt-logo img,
.bvt-logo .bvt-logo-img,
.bvt-logo .custom-logo {
    height: 70px !important;
    width: auto !important;
    max-height: 70px !important;
    padding: 2px 0;
    object-fit: contain;
}

/* Navigation */
.bvt-nav { display: flex; align-items: center; gap: 8px; }
.bvt-nav a {
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--bvt-text);
    transition: var(--bvt-transition);
    white-space: nowrap;
}
.bvt-nav a:hover,
.bvt-nav a.current-menu-item,
.bvt-nav a.current_page_item {
    background: var(--bvt-gray-100);
    color: var(--bvt-primary);
}
.bvt-nav .bvt-nav-cta {
    background: var(--bvt-primary);
    color: var(--bvt-white) !important;
    margin-left: 8px;
}
.bvt-nav .bvt-nav-cta:hover {
    background: var(--bvt-primary-light);
}

/* Mobile menu */
.bvt-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}
.bvt-menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--bvt-primary-dark);
    border-radius: 2px;
    transition: var(--bvt-transition);
}

/* ===== HERO ===== */
.bvt-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, var(--bvt-primary-dark) 0%, var(--bvt-primary) 50%, var(--bvt-primary-light) 100%);
    overflow: hidden;
    padding-top: 120px;
}

.bvt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,224L48,213.3C96,203,192,181,288,186.7C384,192,480,224,576,218.7C672,213,768,171,864,165.3C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom center;
    background-size: cover;
}

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

.bvt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.bvt-hero h1 {
    color: var(--bvt-white);
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    letter-spacing: -0.02em;
}

.bvt-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.bvt-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bvt-hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    opacity: 0.15;
    font-size: clamp(200px, 30vw, 500px);
    text-align: center;
    z-index: 1;
}

/* Wave divider */
.bvt-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}
.bvt-wave svg { display: block; width: 100%; height: auto; }

/* ===== SECTIONS ===== */
.bvt-section {
    padding: 100px 0;
}
.bvt-section-alt {
    background: var(--bvt-light);
}

.bvt-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.bvt-section-header p {
    color: var(--bvt-text-light);
    font-size: 1.1rem;
    margin-top: 12px;
}
.bvt-section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26, 82, 118, 0.08);
    color: var(--bvt-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

/* ===== USP BLOCKS ===== */
.bvt-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bvt-usp-card {
    background: var(--bvt-white);
    border-radius: var(--bvt-radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--bvt-shadow-sm);
    border: 1px solid var(--bvt-gray-200);
    transition: var(--bvt-transition);
}
.bvt-usp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bvt-shadow-lg);
    border-color: transparent;
}

.bvt-usp-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--bvt-primary), var(--bvt-primary-light));
    color: white;
}

.bvt-usp-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.bvt-usp-card p {
    color: var(--bvt-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== HOW IT WORKS ===== */
.bvt-steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.bvt-step-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    counter-increment: step;
}
.bvt-step-item::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bvt-accent);
    color: white;
    font-family: var(--bvt-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}
.bvt-step-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.bvt-step-item p { color: var(--bvt-text-light); font-size: 0.9rem; margin-bottom: 0; }

/* ===== PRICING / PLANS ===== */
.bvt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.bvt-pricing-card {
    background: var(--bvt-white);
    border-radius: var(--bvt-radius-lg);
    padding: 40px;
    box-shadow: var(--bvt-shadow);
    border: 2px solid transparent;
    transition: var(--bvt-transition);
    position: relative;
}
.bvt-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bvt-shadow-lg);
}
.bvt-pricing-featured {
    border-color: var(--bvt-accent);
    transform: scale(1.05);
}
.bvt-pricing-featured:hover { transform: scale(1.05) translateY(-5px); }

.bvt-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bvt-accent);
    color: white;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.bvt-pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.bvt-pricing-price {
    font-family: var(--bvt-font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--bvt-primary-dark);
    line-height: 1;
    margin-bottom: 8px;
}
.bvt-pricing-price span { font-size: 1rem; font-weight: 500; color: var(--bvt-text-light); }

.bvt-pricing-desc {
    color: var(--bvt-text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bvt-gray-200);
}

.bvt-pricing-features {
    list-style: none;
    margin-bottom: 32px;
}
.bvt-pricing-features li {
    padding: 6px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bvt-pricing-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.1);
    color: var(--bvt-success);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.bvt-pricing-card .bvt-btn { width: 100%; justify-content: center; }

/* ===== CTA BANNER ===== */
.bvt-cta {
    background: linear-gradient(135deg, var(--bvt-primary-dark), var(--bvt-primary));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bvt-cta::before {
    content: '⛵';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    opacity: 0.05;
}
.bvt-cta h2 { color: white; margin-bottom: 16px; }
.bvt-cta p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== PAGE HEADER ===== */
.bvt-page-header {
    background: linear-gradient(135deg, var(--bvt-primary-dark), var(--bvt-primary));
    padding: 180px 0 80px;
    text-align: center;
}
.bvt-page-header h1 {
    color: white;
    margin-bottom: 12px;
}
.bvt-page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PAGE CONTENT ===== */
.bvt-page-content {
    padding: 80px 0;
    min-height: 50vh;
}
.bvt-page-content .bvt-container {
    max-width: 960px;
}

/* For shortcode pages - wider */
.bvt-page-content.bvt-wide .bvt-container {
    max-width: var(--bvt-container);
}

/* ===== FOOTER ===== */
.bvt-footer {
    background: var(--bvt-primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.bvt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.bvt-footer-brand {
    font-family: var(--bvt-font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bvt-footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

.bvt-footer h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.bvt-footer-links {
    list-style: none;
}
.bvt-footer-links li { margin-bottom: 10px; }
.bvt-footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--bvt-transition);
}
.bvt-footer-links a:hover { color: white; }

.bvt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* ===== WP ADMIN BAR FIX ===== */
body.admin-bar .bvt-topbar { top: 32px; }
body.admin-bar .bvt-header { top: 72px; }
body.admin-bar .bvt-hero { padding-top: 152px; }
body.admin-bar .bvt-page-header { padding-top: 212px; }

/* ===== CONTACT PAGE ===== */
.bvt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.bvt-contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.bvt-contact-info > p {
    color: var(--bvt-text-light);
    margin-bottom: 32px;
    font-size: 1.02rem;
}

.bvt-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--bvt-gray-200);
}
.bvt-contact-card:last-child { border-bottom: none; }

.bvt-contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bvt-primary), var(--bvt-primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bvt-contact-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--bvt-primary-dark);
}
.bvt-contact-card a,
.bvt-contact-card span {
    color: var(--bvt-text-light);
    font-size: 0.95rem;
}
.bvt-contact-card a:hover { color: var(--bvt-accent); }

/* Contact Form */
.bvt-contact-form-wrap {
    background: var(--bvt-white);
    border-radius: var(--bvt-radius-lg);
    padding: 40px;
    box-shadow: var(--bvt-shadow);
    border: 1px solid var(--bvt-gray-200);
}

.bvt-contact-form .bvt-form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bvt-form-group {
    margin-bottom: 20px;
}
.bvt-form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--bvt-text);
}
.bvt-form-group label .required {
    color: var(--bvt-accent);
}

.bvt-form-group input,
.bvt-form-group select,
.bvt-form-group textarea {
    width: 100%;
    font-family: var(--bvt-font);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 2px solid var(--bvt-gray-200);
    border-radius: var(--bvt-radius-sm);
    background: var(--bvt-white);
    color: var(--bvt-text);
    transition: var(--bvt-transition);
    appearance: none;
    -webkit-appearance: none;
}
.bvt-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23495057' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.bvt-form-group input:focus,
.bvt-form-group select:focus,
.bvt-form-group textarea:focus {
    border-color: var(--bvt-primary-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
}
.bvt-form-group textarea {
    resize: vertical;
    min-height: 130px;
}
.bvt-form-group input::placeholder,
.bvt-form-group textarea::placeholder {
    color: var(--bvt-gray-500);
}

.bvt-contact-form .bvt-btn {
    width: 100%;
    justify-content: center;
}

/* Alerts */
.bvt-contact-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--bvt-radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
}
.bvt-contact-alert svg { flex-shrink: 0; }
.bvt-contact-alert-success {
    background: rgba(39, 174, 96, 0.08);
    color: #1a7a3e;
    border: 1px solid rgba(39, 174, 96, 0.15);
}
.bvt-contact-alert-error {
    background: rgba(231, 76, 60, 0.08);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.15);
}

@media (max-width: 768px) {
    .bvt-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bvt-contact-form-wrap { padding: 24px; }
    .bvt-contact-form .bvt-form-row-half {
        grid-template-columns: 1fr;
    }
}

/* ===== PLUGIN SHORTCODE OVERRIDES ===== */
/* Make plugin output match theme style */
.bvt-page-content .bva-booking-form,
.bvt-page-content .bva-my-bookings,
.bvt-page-content .bva-boat-list,
.bvt-page-content .bva-subscription-widget,
.bvt-page-content .bva-membership-plans,
.bvt-page-content .bva-locations-grid {
    font-family: var(--bvt-font);
}

.bvt-page-content .bva-btn-primary {
    background: var(--bvt-accent) !important;
    border-radius: 50px !important;
}
.bvt-page-content .bva-btn-primary:hover {
    background: var(--bvt-accent-light) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bvt-usp-grid { grid-template-columns: repeat(2, 1fr); }
    .bvt-pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .bvt-pricing-featured { transform: none; }
    .bvt-pricing-featured:hover { transform: translateY(-5px); }
    .bvt-steps-row { grid-template-columns: repeat(2, 1fr); }
    .bvt-footer-grid { grid-template-columns: 1fr 1fr; }
    .bvt-hero-visual { display: none; }
}

@media (max-width: 768px) {
    .bvt-header-inner { height: 70px; }

    /* Topbar mobile */
    .bvt-topbar-inner { height: 36px; }
    .bvt-topbar-left { display: none; }
    .bvt-topbar-right { width: 100%; justify-content: flex-end; }
    .bvt-topbar-username { display: none; }
    .bvt-topbar-link span,
    .bvt-topbar-link svg { display: none; }
    .bvt-topbar-link { font-size: 0.78rem; padding: 4px 8px; }
    .bvt-topbar-link svg { display: inline-block; }

    .bvt-header { top: 36px; }
    .bvt-header.bvt-topbar-hidden { top: 0; }

    .bvt-nav {
        position: fixed;
        top: 106px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    .bvt-nav.open { transform: translateX(0); }
    .bvt-nav a {
        width: 100%;
        padding: 14px 18px;
        font-size: 1.05rem;
        border-radius: var(--bvt-radius-sm);
    }
    .bvt-nav .bvt-nav-cta { margin-left: 0; margin-top: 12px; text-align: center; justify-content: center; }

    .bvt-menu-toggle { display: flex; }

    body.admin-bar .bvt-topbar { top: 46px; }
    body.admin-bar .bvt-header { top: 82px; }
    body.admin-bar .bvt-nav { top: 152px; }

    .bvt-hero { min-height: 80vh; padding-top: 140px; }
    .bvt-hero-buttons { flex-direction: column; }
    .bvt-hero-buttons .bvt-btn { width: 100%; justify-content: center; }

    .bvt-section { padding: 60px 0; }
    .bvt-usp-grid { grid-template-columns: 1fr; }
    .bvt-steps-row { grid-template-columns: 1fr; }

    .bvt-page-header { padding: 150px 0 50px; }
    body.admin-bar .bvt-page-header { padding-top: 186px; }
    .bvt-page-content { padding: 50px 0; }

    .bvt-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .bvt-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .bvt-hero h1 { font-size: 2rem; }
    .bvt-container { padding: 0 16px; }
}

/* ===== PWA Install Banner ===== */
.bvt-pwa-banner {
    position: fixed;
    bottom: -200px;
    left: 0; right: 0;
    z-index: 10000;
    background: var(--bvt-primary-dark);
    color: #fff;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transition: bottom 0.4s ease;
}
.bvt-pwa-banner.bvt-pwa-visible {
    bottom: 0;
}
.bvt-pwa-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
}
.bvt-pwa-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.bvt-pwa-text {
    flex: 1;
    line-height: 1.3;
}
.bvt-pwa-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}
.bvt-pwa-text span {
    font-size: 0.82rem;
    opacity: 0.85;
}
.bvt-pwa-btn {
    background: var(--bvt-accent);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.bvt-pwa-btn:hover {
    background: var(--bvt-accent-light);
}
.bvt-pwa-close {
    position: absolute;
    top: 8px; right: 12px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}
.bvt-pwa-close:hover {
    color: #fff;
}
.bvt-pwa-ios-steps {
    margin-top: 8px;
}
.bvt-pwa-ios-steps p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}
@media (max-width: 480px) {
    .bvt-pwa-content {
        flex-wrap: wrap;
    }
    .bvt-pwa-btn {
        width: 100%;
        text-align: center;
    }
}
