/* ===================================
   Moovalot Public Website Styles
   Modern design with cyan brand colors
   =================================== */

/* CSS Variables */
:root {
    --color-primary: #01adec;
    --color-primary-dark: #0188bd;
    --color-primary-light: #33bef0;
    --color-dark: #1a1a1a;
    --color-gray-900: #2d2d2d;
    --color-gray-700: #4a4a4a;
    --color-gray-500: #8a8a8a;
    --color-gray-300: #d1d1d1;
    --color-gray-100: #f5f5f5;
    --color-white: #ffffff;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-dark);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* Container Layouts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===================================
   360 Trailer Viewer
   =================================== */
.trailer-360-viewer {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--color-gray-100);
    position: relative;
}

.trailer-360-canvas {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (images are 800x450) */
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.trailer-360-canvas:active {
    cursor: grabbing;
}

.trailer-360-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.trailer-360-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
}

.trailer-360-loading p {
    margin-top: 1rem;
    color: var(--color-gray-700);
    font-size: 0.875rem;
}

.trailer-360-controls {
    background: var(--color-white);
    padding: 1rem;
    border-top: 1px solid var(--color-gray-300);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trailer-360-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-gray-700);
    font-size: 0.875rem;
    font-weight: 500;
}

.trailer-360-hint svg {
    color: var(--color-primary);
}

.trailer-360-cta {
    width: 100%;
    justify-content: center;
}

/* Pulse animation for app badges */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Dramatic highlight pulse effect */
.highlight-pulse {
    animation: highlight-pulse-animation 1s ease-in-out 3;
    position: relative;
}

@keyframes highlight-pulse-animation {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(1, 173, 236, 0);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px 10px rgba(1, 173, 236, 0.6);
        transform: scale(1.08);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .trailer-360-viewer {
        max-width: 100%;
    }

    .trailer-360-canvas {
        padding-bottom: 56.25%; /* Keep 16:9 on mobile */
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-gray-900);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-dark);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-link {
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--color-primary-dark);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-100);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo {
    height: 44px;
    width: auto;
    max-width: 200px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Nav Download Dropdown */
.nav-download-dropdown {
    position: relative;
}

.nav-download-btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.nav-download-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    padding-top: 1.5rem;
    margin-top: -0.5rem;
    min-width: 200px;
    z-index: 1000;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-download-dropdown:hover .nav-download-menu,
.nav-download-menu:hover {
    display: flex;
}

.nav-download-menu a {
    display: block;
    transition: transform 0.2s ease;
}

.nav-download-menu a:hover {
    transform: scale(1.05);
}

.nav-download-menu img {
    width: 100%;
    height: auto;
}

/* Mobile App Badges */
.mobile-app-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.mobile-app-badges a {
    display: block;
    width: 180px;
}

.mobile-app-badges img {
    width: 100%;
    height: auto;
}

.nav-link {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-mobile-toggle {
    display: none;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-link {
    display: block;
    padding: 1rem 0;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--color-gray-100);
}

.mobile-cta {
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, var(--color-gray-100) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: flex-start;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-700);
    margin-bottom: 2.5rem;
}

/* Capability Quiz */
.capability-quiz {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.capability-quiz h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.quiz-input-group {
    display: flex;
    gap: 0.75rem;
}

.quiz-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: var(--transition);
}

.quiz-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.quiz-response {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.quiz-response.hidden {
    display: none;
}

.quiz-response.loading {
    text-align: center;
    color: var(--color-gray-500);
}

/* Location Search */
.location-search-bar {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    color: var(--color-gray-500);
}

.location-input {
    flex: 1;
    padding: 0.875rem 1.25rem 0.875rem 3rem;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
}

.location-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.search-input-group {
    position: relative;
}

/* App Download Section */
.app-download-section {
    margin-top: 2rem;
}


.app-download-label {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    margin-bottom: 0.75rem;
}

.app-badges-hero {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-badge-large img {
    height: 56px;
    width: auto;
    transition: var(--transition);
}

.app-badge-large:hover img {
    transform: scale(1.05);
}

/* Interactive Phone Mockup */
.hero-phone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-phone .app-download-section {
    text-align: center;
    margin-top: 0;
}

.hero-phone .app-badges-hero {
    justify-content: center;
}

/* Mascot Banner - standalone block between hero and stats */
.mascot-banner {
    background: #fff;
    padding: 0 0 1.5rem;
}

.mascot-banner-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2.5rem 0 0;
    background: rgba(1, 173, 236, 0.07);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(1, 173, 236, 0.18);
    overflow: hidden;
    min-height: 260px;
}

.mascot-banner-img {
    width: 500px;
    height: 260px;
    object-fit: cover;
    object-position: 35% 48%;
    flex-shrink: 0;
    display: block;
    animation: mascot-bob 3s ease-in-out infinite;
}

.mascot-banner-tagline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

@keyframes mascot-bob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(1deg); }
}

.phone-frame {
    width: min(300px, 100%);
    height: 620px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-app-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.phone-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 1rem 1rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
}

.time {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.phone-map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Phone Location Popup */
.phone-location-popup {
    position: absolute;
    bottom: 100px;
    left: 1rem;
    right: 1rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    z-index: 12;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--color-gray-100);
}

.popup-header h4 {
    font-size: 1rem;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-gray-500);
    cursor: pointer;
}

.popup-body {
    padding: 1rem;
}

.availability-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-success);
}

.badge-label {
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.popup-address {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
}

.popup-distance {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.popup-cta {
    font-size: 0.875rem;
    padding: 0.625rem;
}

/* Phone Bottom Bar */
.phone-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--color-gray-100);
    display: flex;
    justify-content: space-around;
    padding: 0.75rem 0 1rem;
    z-index: 11;
}

.phone-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: var(--color-gray-500);
    font-size: 0.625rem;
    cursor: pointer;
    transition: color 0.2s;
}

.phone-action-btn.active {
    color: var(--color-primary);
}

.phone-action-btn svg {
    width: 24px;
    height: 24px;
}

/* Cyan App Header (Real App Style) */
.phone-app-header-real {
    background: #01adec;
    padding: 2rem 0.65rem 0.4rem; /* THIN header like real app */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 11;
}

.phone-header-left {
    display: flex;
    align-items: center;
}

.phone-header-actions {
    display: flex;
    align-items: center;
}

/* Header button images from real app */
.phone-header-btn-img {
    height: 36px;
    width: auto;
}

.phone-header-buttons-img {
    height: 36px;
    width: auto;
}

/* Trailer Cards at Bottom (NO SLIDER - like real app) */
.phone-trailer-cards {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 12;
}

/* Location detail panel - shown on pin click */
#phone-location-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 12;
    padding: 10px 10px 14px;
    background: transparent;
}

.phone-location-info-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    gap: 10px;
}

.phone-location-icon {
    width: 36px;
    height: 36px;
    background: #01adec;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-location-text {
    flex: 1;
    min-width: 0;
}

.phone-location-name {
    font-weight: 700;
    font-size: 0.8rem;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-location-address {
    font-size: 0.68rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-location-badge {
    background: #22c55e;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-select-btn {
    width: 100%;
    background: #01adec;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 13px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.phone-select-btn:hover {
    background: #019fd8;
}

/* Download modal inside phone */
#phone-download-modal {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: flex-end;
}

.phone-download-overlay {
    width: 100%;
    background: rgba(0,0,0,0.45);
    padding: 16px 12px;
    border-radius: 0 0 36px 36px;
}

.phone-download-box {
    background: #fff;
    border-radius: 14px;
    padding: 16px 14px 12px;
    text-align: center;
}

.phone-download-box p {
    font-size: 0.8rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.phone-dl-badge {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}
.phone-dl-badge img {
    height: 44px;
    width: auto;
}

.phone-dl-close {
    background: none;
    border: none;
    color: #888;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 4px;
}

.trailer-card {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.trailer-card-img {
    width: 100%;
    max-width: 100px;
    height: auto;
    margin-bottom: 8px;
    background-color: #e8e8e8;
    border-radius: 6px;
    padding: 4px;
}

.trailer-card-info {
    text-align: center;
}

.trailer-card-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1f2937;
}

.trailer-card-size {
    font-size: 0.75rem;
    color: #6b7280;
}

.trailer-card-check {
    position: absolute;
    top: 8px;
    right: 8px;
}

.trailer-options {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.trailer-option {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.trailer-option.selected {
    border-color: #01adec;
    background: #f0f9ff;
}

.trailer-illustration {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.trailer-info {
    text-align: center;
}

.trailer-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1f2937;
}

.trailer-size {
    font-size: 0.75rem;
    color: #6b7280;
}

.trailer-check {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.trailer-option:not(.selected) .trailer-check {
    display: none;
}

.sheet-location-info {
    background: #f9fafb;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.location-address {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.btn-cyan {
    background: #01adec;
    color: white;
    font-weight: 600;
    padding: 0.875rem;
    font-size: 0.9375rem;
}

.btn-cyan:hover {
    background: #0099d6;
}

/* Green Pin Markers */
.pin-marker {
    width: 32px;
    height: 40px;
    background: #10b981;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-number {
    transform: rotate(45deg);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Stats Banner */
.stats-banner {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-gray-300);
    font-weight: 500;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-700);
}

/* Location Map Section */
.section-locations {
    background: var(--color-gray-100);
}

.trailer-type-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-gray-300);
    background: white;
    color: var(--color-gray-700);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    height: 600px;
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-map {
    height: 100%;
    width: 100%;
    position: relative;
}

.map-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.map-loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border: 4px solid var(--color-gray-200);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-700);
}

.location-detail-panel {
    background: white;
    padding: 0;
    overflow-y: auto;
    border-left: 1px solid var(--color-gray-200);
    height: 100%;
    max-height: 600px;
}

#location-detail-content {
    padding: 1.5rem;
}

.location-detail-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    color: var(--color-gray-400);
}

.location-detail-placeholder h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--color-gray-600);
}

.location-detail-placeholder p {
    margin-top: 0.5rem;
    color: var(--color-gray-400);
}

.location-detail-active {
    animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.location-detail-header {
    margin-bottom: 1rem;
}

.location-detail-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.location-detail-address {
    color: var(--color-gray-600);
    font-size: 0.9rem;
    line-height: 1.4;
}

.location-detail-availability {
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1rem;
}

.availability-header {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.trailer-type-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trailer-type-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-gray-100);
}

.trailer-type-name {
    font-weight: 600;
    color: var(--color-gray-800);
    font-size: 0.9rem;
}

.trailer-type-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.trailer-type-count.unavailable {
    color: var(--color-gray-400);
}

.location-detail-directions {
    padding-top: 1rem;
}

.btn-directions {
    width: 100%;
    padding: 0.875rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-directions:hover {
    background: #0095c9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.download-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-200);
    text-align: center;
}

.cta-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 0.75rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-app-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.875rem;
    background: var(--color-gray-900);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-app-download:hover {
    background: var(--color-gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-app-store {
    background: #000000;
}

.btn-app-store:hover {
    background: #1a1a1a;
}

.btn-google-play {
    background: #01875f;
}

.btn-google-play:hover {
    background: #016d4d;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gray-300);
    transition: 0.4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--color-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.location-cards {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.location-card {
    background: var(--color-gray-100);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.location-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.location-card.active {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.location-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.location-card h4 {
    font-size: 1.125rem;
    margin: 0;
}

.availability-count {
    background: var(--color-success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.availability-count.low {
    background: var(--color-warning);
}

.availability-count.none {
    background: var(--color-gray-500);
}

.location-card-address {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
}

.location-card-distance {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Loading Skeleton */
.loading-skeleton {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-card {
    background: linear-gradient(90deg, var(--color-gray-100) 25%, var(--color-gray-300) 50%, var(--color-gray-100) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    height: 120px;
    border-radius: var(--radius-lg);
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Trailer Specs Section */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.spec-visual img {
    width: 100%;
    height: auto;
}

.spec-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spec-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.spec-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-item h4 {
    margin-bottom: 0.25rem;
}

.spec-item p {
    color: var(--color-gray-700);
    margin: 0;
}

/* What Fits Examples */
.what-fits {
    background: var(--color-gray-100);
    padding: 3rem;
    border-radius: var(--radius-2xl);
}

.what-fits h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.example-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.example-icon {
    font-size: 3rem;
}

/* How It Works Section */
.section-how-it-works {
    background: var(--color-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-icon {
    font-size: 4rem;
    margin: 2rem 0 1.5rem;
}

.step-item h3 {
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--color-gray-700);
}

.cta-center {
    text-align: center;
}

.cta-center .app-badges-hero {
    justify-content: center;
}

/* FAQ Section */
.section-faq {
    background: var(--color-gray-100);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background: var(--color-gray-100);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--color-gray-700);
    margin: 0;
}

/* Final CTA Section */
.section-cta-final {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-final-content .app-badges-hero {
    justify-content: center;
}

/* Email Notification Capture Section */
.section-notify {
    background: var(--color-gray-100);
    padding: 4rem 0;
    text-align: center;
}

.notify-content {
    max-width: 560px;
    margin: 0 auto;
}

.notify-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.notify-content > p {
    color: var(--color-gray-500);
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
}

.notify-input-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.notify-input {
    flex: 1;
    min-width: 240px;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-gray-300);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--color-dark);
    background: white;
    transition: border-color 0.2s;
}

.notify-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.notify-fine-print {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
    margin-top: 0.75rem;
}

.notify-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    color: #10b981;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem;
}

.notify-success.hidden {
    display: none;
}

/* =====================================================
   Location Landing Pages
   ===================================================== */

/* Breadcrumb */
.loc-breadcrumb {
    background: var(--color-gray-100, #f5f5f5);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: var(--color-gray-600, #666);
}
.loc-breadcrumb a {
    color: var(--color-primary, #ff6b35);
    text-decoration: none;
}
.loc-breadcrumb a:hover { text-decoration: underline; }
.loc-breadcrumb span { margin: 0 0.4rem; }

/* Hero */
.loc-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 4rem 0 3rem;
}
.loc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.loc-hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary, #ff6b35);
    margin-bottom: 0.75rem;
}
.loc-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.loc-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.loc-hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.loc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
}
.loc-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.loc-map-wrap {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    aspect-ratio: 4/3;
}
.loc-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Trailers Section */
.loc-trailers {
    padding: 4rem 0;
    background: var(--color-gray-50, #fafafa);
}
.loc-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.loc-section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.loc-section-header p {
    color: var(--color-gray-600, #666);
    font-size: 1.05rem;
}
.loc-trailer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.loc-trailer-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.loc-trailer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.loc-trailer-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #e9ecef;
}
.loc-trailer-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #667eea22, #764ba222);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.loc-trailer-body {
    padding: 1.5rem;
}
.loc-trailer-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.loc-trailer-body p {
    color: var(--color-gray-600, #666);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.loc-trailer-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.loc-spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--color-gray-100, #f5f5f5);
    border-radius: 0.5rem;
    padding: 0.3rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
}
.loc-trailer-downloads {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* How It Works (compact) */
.loc-how {
    padding: 4rem 0;
    background: #fff;
}
.loc-how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.loc-how-step {
    text-align: center;
}
.loc-how-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.loc-how-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.loc-how-step p {
    font-size: 0.875rem;
    color: var(--color-gray-600, #666);
    line-height: 1.5;
}

/* Nearby Locations */
.loc-nearby {
    padding: 4rem 0;
    background: var(--color-gray-50, #fafafa);
}
.loc-nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.loc-nearby-card {
    display: block;
    background: #fff;
    border: 1px solid var(--color-gray-200, #e0e0e0);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.loc-nearby-card:hover {
    border-color: var(--color-primary, #ff6b35);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.loc-nearby-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.loc-nearby-card p {
    font-size: 0.8rem;
    color: var(--color-gray-500, #888);
}

/* Location Final CTA */
.loc-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary, #ff6b35) 0%, #e84393 100%);
    color: #fff;
    text-align: center;
}
.loc-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
}
.loc-cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}
.loc-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Locations Index Page */
.loc-index-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
}
.loc-index-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}
.loc-index-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
}
.loc-index-grid-section {
    padding: 4rem 0;
    background: var(--color-gray-50, #fafafa);
}
.loc-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}
.loc-index-card {
    display: block;
    background: #fff;
    border: 1px solid var(--color-gray-200, #e0e0e0);
    border-radius: 0.875rem;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.loc-index-card:hover {
    border-color: var(--color-primary, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.loc-index-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.loc-index-card h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.loc-index-card p {
    font-size: 0.85rem;
    color: var(--color-gray-500, #888);
}
.loc-index-card-arrow {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary, #ff6b35);
}

/* Responsive: location hero stacks on mobile */
@media (max-width: 768px) {
    .loc-hero-grid {
        grid-template-columns: 1fr;
    }
    .loc-map-wrap {
        order: -1;
        aspect-ratio: 16/9;
    }
    .loc-hero {
        padding: 2.5rem 0 2rem;
    }
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-gray-300);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--color-gray-300);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--color-primary);
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.app-badge img {
    height: 40px;
    width: auto;
}

.footer-note {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-700);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

.section-pricing {
    padding: 5rem 0;
    background: var(--color-gray-100);
}

/* ===================================
   Pricing Table (Simplified)
   =================================== */
.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    min-width: 600px;
}

.pricing-table thead {
    background: var(--color-gray-100);
}

.pricing-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--color-dark);
    border-bottom: 2px solid var(--color-gray-300);
}

.pricing-table-duration-header {
    width: 25%;
}

.pricing-table-trailer-header {
    text-align: center;
    width: 25%;
}

.pricing-table-trailer-name {
    font-size: 1rem;
    color: var(--color-dark);
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--color-gray-300);
    transition: background-color 0.2s ease;
}

.pricing-table tbody tr:hover {
    background: var(--color-gray-100);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table-duration {
    padding: 1.25rem 1rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.pricing-table-price {
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    color: var(--color-gray-700);
    font-size: 0.9rem;
    text-align: center;
}

.pricing-note svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.pricing-loading {
    text-align: center;
    color: var(--color-gray-500);
    padding: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .pricing-table {
        min-width: 500px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 1rem 0.75rem;
    }

    .pricing-table-price {
        font-size: 1.25rem;
    }

    .pricing-note {
        font-size: 0.85rem;
    }
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.pricing-card-range {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.pricing-card-rate {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-card-rate-label {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-bottom: 0.75rem;
}

.pricing-card-total {
    font-size: 0.8rem;
    color: var(--color-gray-500);
    background: var(--color-gray-100);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.5rem;
    display: inline-block;
}

.pricing-badge {
    position: absolute;
    top: -0.6rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-success);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    white-space: nowrap;
}

/* Full Day card */
.pricing-fullday {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.pricing-fullday-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.pricing-fullday-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-fullday-icon {
    font-size: 1.5rem;
}

.pricing-fullday-rate {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
}

.pricing-fullday-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* Tip bar */
.pricing-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-700);
    background: white;
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.5rem;
    box-shadow: var(--shadow-sm);
    max-width: 480px;
    margin: 0 auto;
}

.pricing-tip svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .main-map {
        height: 400px;
    }

    .location-sidebar {
        max-height: 400px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-phone {
        order: -1;
    }

    .phone-frame {
        max-width: 280px;
    }

    .hero-mascot-row {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .hero-mascot-img {
        width: 180px;
    }

    .hero-mascot-tagline {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quiz-input-group {
        flex-direction: column;
    }

    .search-input-group {
        flex-direction: column;
    }

    .app-badges-hero {
        flex-direction: column;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-fullday-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-map {
        height: 300px;
    }
}

/* ===================================
   Reviews Section
   =================================== */

.section-reviews {
    padding: 5rem 0;
    background: var(--color-gray-100);
}

.reviews-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.reviews-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 0.25rem 1rem;
    flex: 1;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.reviews-arrow {
    flex-shrink: 0;
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
    transition: background 0.15s, box-shadow 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-arrow:hover {
    background: var(--color-gray-100);
    box-shadow: var(--shadow-md);
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.review-stars {
    color: var(--color-warning);
    font-size: 1.1rem;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.review-location-tag {
    font-size: 0.72rem;
    color: var(--color-gray-500);
    background: var(--color-gray-100);
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.review-text {
    color: var(--color-gray-700);
    font-size: 0.92rem;
    line-height: 1.7;
    flex: 1;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-gray-300);
    gap: 0.5rem;
}

.review-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-dark);
}

.review-date {
    font-size: 0.78rem;
    color: var(--color-gray-500);
    white-space: nowrap;
}

.reviews-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.reviews-cta-text {
    color: var(--color-gray-500);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Compact variant for location pages */
.review-card--compact {
    padding: 1.25rem;
}

.location-reviews {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.location-reviews h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

@media (max-width: 640px) {
    .review-card {
        flex: 0 0 85vw;
    }
    .reviews-arrow {
        display: none;
    }
}

/* ===================================
   Map Guide Tooltip
   =================================== */
.map-guide-tooltip {
    position: absolute;
    z-index: 9999;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.map-guide-tooltip.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.map-guide-tooltip.hide {
    opacity: 0;
    transform: translateX(-10px);
}

.map-guide-content {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 280px;
    max-width: 320px;
    cursor: pointer;
    animation: pulse-gentle 2s ease-in-out infinite;
}

.map-guide-tooltip:hover .map-guide-content {
    animation: none;
    transform: scale(1.02);
}

@keyframes pulse-gentle {
    0%, 100% {
        box-shadow: 0 20px 25px -5px rgba(1, 173, 236, 0.2), 0 10px 10px -5px rgba(1, 173, 236, 0.1);
    }
    50% {
        box-shadow: 0 20px 25px -5px rgba(1, 173, 236, 0.4), 0 10px 10px -5px rgba(1, 173, 236, 0.2);
    }
}

.map-guide-arrow {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--color-primary);
}

.map-guide-tooltip.mobile .map-guide-arrow {
    left: 50%;
    top: auto;
    bottom: -8px;
    transform: translateX(-50%) rotate(90deg);
}

.map-guide-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-subtle 2s ease-in-out infinite;
}

@keyframes bounce-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.map-guide-icon svg {
    color: var(--color-white);
}

.map-guide-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.map-guide-text p {
    font-size: 0.9rem;
    opacity: 0.95;
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .map-guide-tooltip {
        transform: translateY(-10px);
    }

    .map-guide-tooltip.show {
        transform: translateY(0);
    }

    .map-guide-content {
        min-width: 260px;
        padding: 1rem 1.25rem;
    }

    .map-guide-icon {
        width: 40px;
        height: 40px;
    }

    .map-guide-text strong {
        font-size: 1rem;
    }

    .map-guide-text p {
        font-size: 0.85rem;
    }
}

/* ===================================
   Custom Notification Toast
   =================================== */
.custom-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    max-width: 420px;
    min-width: 320px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-left: 4px solid var(--color-primary);
}

.custom-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.custom-notification.hide {
    opacity: 0;
    transform: translateX(400px);
}

.custom-notification--info {
    border-left-color: var(--color-primary);
}

.custom-notification--info .custom-notification__icon {
    background: rgba(1, 173, 236, 0.1);
    color: var(--color-primary);
}

.custom-notification--warning {
    border-left-color: var(--color-warning);
}

.custom-notification--warning .custom-notification__icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.custom-notification--success {
    border-left-color: var(--color-success);
}

.custom-notification--success .custom-notification__icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.custom-notification__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-notification__content {
    flex: 1;
    min-width: 0;
}

.custom-notification__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.custom-notification__message {
    font-size: 0.9rem;
    color: var(--color-gray-700);
    line-height: 1.5;
    margin: 0;
}

.custom-notification__close {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.custom-notification__close:hover {
    background: var(--color-gray-100);
    color: var(--color-dark);
}

.custom-notification__close:active {
    transform: scale(0.95);
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .custom-notification {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        min-width: 0;
        padding: 1rem 1.25rem;
    }

    .custom-notification__icon {
        width: 36px;
        height: 36px;
    }

    .custom-notification__icon svg {
        width: 20px;
        height: 20px;
    }

    .custom-notification__title {
        font-size: 0.95rem;
    }

    .custom-notification__message {
        font-size: 0.85rem;
    }
}
