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

:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    /* Neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    
    /* Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: white;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(99, 102, 241, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover {
    color: var(--gray-900);
    background: var(--gray-100);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    font-size: 1.2em;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gray-900);
}

.logo-paw {
    font-size: 1.75rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-text strong {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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");
    opacity: 0.5;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    color: white;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-reassurance {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--success);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-xl);
    max-width: 320px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
}

.hero-card-preview {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.preview-header {
    background: var(--danger);
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.preview-image {
    font-size: 4rem;
    margin-bottom: 12px;
}

.preview-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.preview-details {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.preview-contact {
    background: var(--gray-900);
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-badge span {
    font-size: 1.2rem;
}

.badge-1 {
    top: 20%;
    right: -10%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.badge-2 {
    bottom: 30%;
    right: -5%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 10%;
    left: 0;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    .hero-visual {
        display: none;
    }
}

/* === TRUST BAR === */
.trust-bar {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-100);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.trust-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

@media (max-width: 768px) {
    .trust-items {
        gap: 24px;
    }
    .trust-divider {
        display: none;
    }
    .trust-item {
        flex: 1;
        min-width: 100px;
    }
}

/* === SECTIONS === */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === HOW IT WORKS === */
.how-it-works {
    background: var(--gray-50);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* === FORM SECTION === */
.form-section {
    background: var(--gray-50);
    min-height: 100vh;
    padding-top: 100px;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-sidebar {
    background: var(--gradient-hero);
    color: white;
    padding: 40px 24px;
}

.form-sidebar h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    opacity: 0.5;
    transition: var(--transition);
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 0.8;
}

.progress-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.progress-step.active .progress-step-number {
    background: white;
    color: var(--primary);
}

.progress-step.completed .progress-step-number {
    background: var(--success);
}

.progress-step-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.progress-step-desc {
    font-size: 0.8rem;
    opacity: 0.7;
}

.form-sidebar-help {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.help-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-sidebar-help p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-main {
    padding: 40px;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

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

.form-step-header {
    margin-bottom: 32px;
}

.form-step-header h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.form-step-header p {
    color: var(--gray-500);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.required {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

@media (max-width: 968px) {
    .form-wrapper {
        grid-template-columns: 1fr;
    }
    .form-sidebar {
        display: none;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
}

/* === PHOTO UPLOAD === */
.photo-upload-area {
    margin-bottom: 24px;
}

.photo-upload-area input[type="file"] {
    display: none;
}

.upload-placeholder {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.upload-placeholder:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.02);
}

.upload-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--gray-400);
}

.upload-icon svg {
    width: 100%;
    height: 100%;
}

.upload-main {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.upload-hint {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.photo-preview {
    display: none;
    position: relative;
    text-align: center;
}

.photo-preview.active {
    display: block;
}

.photo-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.btn-remove-photo {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-remove-photo:hover {
    background: var(--danger);
}

.btn-remove-photo svg {
    width: 18px;
    height: 18px;
}

.photo-tips {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.tip-icon {
    color: var(--success);
    font-weight: 700;
}

/* === RESULTS SECTION === */
.results-section {
    background: var(--gray-50);
    padding-top: 100px;
    min-height: 100vh;
}

.results-header {
    text-align: center;
    margin-bottom: 48px;
}

.success-animation {
    margin-bottom: 24px;
}

.checkmark {
    width: 80px;
    height: 80px;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--success);
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke-linecap: round;
    stroke: var(--success);
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

.results-header h1 {
    margin-bottom: 12px;
}

.results-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.result-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 1.1rem;
}

.card-badge {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

.card-badge.urgent {
    background: #fef3c7;
    color: #92400e;
}

/* Flyer Card */
.flyer-card {
    grid-column: span 1;
}

.flyer-preview {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
    overflow: hidden;
}

.flyer-preview canvas {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.flyer-actions {
    display: flex;
    gap: 12px;
}

.flyer-actions .btn {
    flex: 1;
}

/* Checklist Card */
.checklist-card {
    grid-column: span 1;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.checklist-item:hover {
    background: var(--gray-100);
}

.checklist-item input {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.checklist-item input:checked + .checkbox-custom {
    background: var(--success);
    border-color: var(--success);
}

.checklist-item input:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

.checklist-item input:checked ~ .checkbox-text {
    text-decoration: line-through;
    color: var(--gray-400);
}

.checkbox-text {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* Map Card */
.map-card {
    grid-column: span 2;
}

.map-placeholder {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.map-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.location-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.location-category h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.location-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Resources Card */
.resources-card {
    grid-column: span 2;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.resource-item:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.resource-icon {
    font-size: 1.5rem;
}

.resource-info {
    flex: 1;
}

.resource-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-900);
}

.resource-desc {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.resource-arrow {
    color: var(--gray-400);
    font-size: 1.25rem;
}

/* Prevention Section */
.prevention-section {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: white;
    margin-bottom: 32px;
}

.prevention-header {
    text-align: center;
    margin-bottom: 32px;
}

.prevention-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.prevention-header p {
    color: rgba(255, 255, 255, 0.7);
}

.prevention-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.prevention-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.prevention-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.prevention-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.prevention-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.prevention-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.prevention-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.results-footer {
    text-align: center;
}

@media (max-width: 968px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    .flyer-card,
    .checklist-card,
    .map-card,
    .resources-card {
        grid-column: span 1;
    }
    .location-list,
    .resources-grid,
    .prevention-grid {
        grid-template-columns: 1fr;
    }
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-pet {
    font-size: 0.85rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* === RESOURCES SECTION === */
.resources-section {
    background: var(--gray-50);
}

.resources-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.resource-feature {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.resource-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.resource-feature h3 {
    margin-bottom: 12px;
}

.resource-feature p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

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

@media (max-width: 480px) {
    .resources-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* === CTA SECTION === */
.cta-section {
    background: var(--gradient-hero);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* === FOOTER === */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 80px 0 32px;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links-group h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-links-group a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-logo {
        justify-content: center;
    }
}

/* === SOCIAL SHARE BUTTONS === */
.flyer-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-section {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.share-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    font-weight: 500;
}

.social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-facebook {
    background: #1877f2;
    color: white;
}

.btn-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.btn-nextdoor {
    background: #8ed500;
    color: #1a1a1a;
}

.btn-nextdoor:hover {
    background: #7ec200;
    transform: translateY(-2px);
}

.btn-twitter {
    background: #000;
    color: white;
}

.btn-twitter:hover {
    background: #333;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .action-row,
    .social-buttons {
        flex-direction: column;
    }
    
    .btn-social,
    .action-row .btn {
        width: 100%;
        justify-content: center;
    }
}

/* === EMAIL CAPTURE === */
.email-capture-section {
    margin: 40px 0;
}

.email-capture-card {
    background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.email-capture-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.email-capture-card h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.email-capture-card > p {
    color: var(--gray-600);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.email-form {
    max-width: 440px;
    margin: 0 auto;
}

.email-input-group {
    display: flex;
    gap: 12px;
}

.email-input-group input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.email-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.email-input-group .btn {
    white-space: nowrap;
}

.email-disclaimer {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 12px;
}

.email-success {
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 10px;
    margin-top: 16px;
    font-weight: 600;
}

@media (max-width: 480px) {
    .email-input-group {
        flex-direction: column;
    }
    
    .email-capture-card {
        padding: 24px 20px;
    }
}

/* === PRINT STYLES === */
@media print {
    body {
        background: white !important;
    }
    
    .navbar,
    .mobile-menu,
    .hero,
    .how-it-works,
    .trust-section,
    .testimonials,
    .prevention-section,
    .email-capture-section,
    .footer,
    .flyer-actions,
    .checklist-card,
    .resources-card,
    .sidebar,
    .btn {
        display: none !important;
    }
    
    .results-section {
        padding: 0 !important;
    }
    
    .result-card.flyer-card {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }
    
    #flyerCanvas {
        width: 100% !important;
        height: auto !important;
        max-width: 8in !important;
    }
    
    .card-header {
        display: none !important;
    }
}

/* === OUTLINE BUTTON === */
.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(102, 126, 234, 0.05);
}

/* === LOADING OVERLAY === */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-content p {
    color: var(--gray-600);
    font-weight: 500;
}

/* === COPY BUTTON FEEDBACK === */
.btn.copied {
    background: #059669 !important;
    border-color: #059669 !important;
    color: white !important;
}

.btn-copy {
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-copy:hover {
    background: var(--gray-200);
    border-color: var(--gray-400);
}

/* === TIME-BASED CHECKLIST === */
.checklist-group {
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
}

.checklist-group:last-child {
    margin-bottom: 0;
}

.checklist-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.checklist-group-header.urgent {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fecaca;
}

.checklist-group-header.warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fde68a;
}

.checklist-group-header.success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.time-badge {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-800);
}

.time-desc {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.checklist-group .checklist {
    padding: 16px;
}

.checklist-group .checklist-item {
    margin-bottom: 10px;
}

.checklist-group .checklist-item:last-child {
    margin-bottom: 0;
}

/* === CHECKLIST PROGRESS === */
.checklist-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.progress-bar-container {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #764ba2);
    border-radius: 4px;
    width: 0;
    transition: width 0.3s ease;
}

.progress-bar.complete {
    background: linear-gradient(90deg, #059669, #10b981);
}

.progress-text {
    font-size: 0.8rem;
    color: var(--gray-600);
    white-space: nowrap;
    font-weight: 500;
}

.btn-reset {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-reset:hover {
    background: var(--gray-100);
    color: var(--gray-600);
}

/* === TIME ELAPSED ALERT === */
.time-alert {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #7dd3fc;
    border-radius: 16px;
    margin-bottom: 32px;
}

.time-alert.alert-good {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #86efac;
}

.time-alert.alert-urgent {
    background: linear-gradient(135deg, #fefce8 0%, #fef08a 100%);
    border-color: #fde047;
}

.time-alert.alert-warning {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-color: #fdba74;
}

.time-alert.alert-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #7dd3fc;
}

.time-alert-icon {
    font-size: 2.5rem;
}

.time-alert-content {
    flex: 1;
}

.time-alert-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.time-alert-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
}

.time-alert-message {
    font-size: 0.9rem;
    color: var(--gray-700);
    max-width: 250px;
    text-align: right;
}

@media (max-width: 640px) {
    .time-alert {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .time-alert-message {
        max-width: 100%;
        text-align: center;
    }
}

/* === TIPS ACCORDION === */
.tips-section {
    margin: 40px 0;
}

.tips-header {
    text-align: center;
    margin-bottom: 20px;
}

.tips-header h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.tips-header p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.tips-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tip-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.tip-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    text-align: left;
    transition: var(--transition);
}

.tip-toggle:hover {
    background: var(--gray-50);
}

.tip-arrow {
    font-size: 0.8rem;
    color: var(--gray-400);
    transition: transform 0.2s;
}

.tip-item.open .tip-arrow {
    transform: rotate(180deg);
}

.tip-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.tip-item.open .tip-content {
    max-height: 300px;
}

.tip-content p {
    padding: 0 20px 20px;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.tip-content strong {
    color: var(--gray-800);
}

/* === WHATSAPP BUTTON === */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* === SMS & EMAIL BUTTONS === */
.btn-sms {
    background: #5856d6;
    color: white;
}

.btn-sms:hover {
    background: #4a48c7;
    transform: translateY(-2px);
}

.btn-email {
    background: #ea4335;
    color: white;
}

.btn-email:hover {
    background: #d33426;
    transform: translateY(-2px);
}

/* === TOAST NOTIFICATIONS === */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-900);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* === KEYBOARD SHORTCUT HINTS === */
.shortcut-hint {
    display: none;
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-top: 4px;
}

@media (min-width: 768px) {
    .shortcut-hint {
        display: block;
    }
}

/* === FOCUS STYLES (Accessibility) === */
.btn:focus-visible,
button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.checklist-item input:focus-visible + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* === FOUND PET MODE === */
.found-mode .card-badge.urgent {
    background: #059669;
}

.found-mode .time-alert {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #6ee7b7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn-large {
    min-width: 200px;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn-large {
        width: 100%;
    }
}

/* === LANGUAGE TOGGLE === */
.language-toggle {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 6px 12px;
    border: 2px solid var(--gray-200);
    background: white;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--primary);
}

.lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* === PET ID CARD SECTION === */
.id-card-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.id-card-promo {
    display: flex;
    align-items: center;
    gap: 60px;
}

.id-card-text {
    flex: 1;
}

.promo-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.id-card-text h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.id-card-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.id-card-preview {
    flex-shrink: 0;
}

.id-card-sample {
    width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transform: rotate(3deg);
}

.id-card-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px;
    font-weight: 700;
    text-align: center;
    font-size: 0.9rem;
}

.id-card-body {
    display: flex;
    padding: 16px;
    gap: 16px;
}

.id-card-photo {
    width: 70px;
    height: 70px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.id-card-info {
    flex: 1;
}

.id-card-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gray-900);
}

.id-card-detail {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .id-card-promo {
        flex-direction: column;
        text-align: center;
    }
    
    .id-card-sample {
        transform: rotate(0);
    }
}

/* === MODAL === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    position: relative;
    background: white;
    padding: 32px;
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--gray-600);
}

.modal-content h2 {
    margin-bottom: 8px;
}

.modal-content > p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.id-card-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.id-card-preview-container {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

#idCardCanvas {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-actions .btn {
    flex: 1;
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* === FLYER OPTIONS === */
.flyer-options {
    display: flex;
    gap: 12px;
    align-items: center;
}

.template-toggle {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: 8px;
}

.template-btn {
    padding: 6px 10px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.template-btn:hover {
    background: var(--gray-200);
}

.template-btn.active {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.language-toggle {
    display: flex;
    gap: 4px;
}

.lang-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
}

@media (max-width: 480px) {
    .flyer-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* === SIGHTING REPORTS === */
.sighting-section {
    margin: 40px 0;
}

.sighting-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
}

.sighting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-bottom: 2px solid #fcd34d;
    gap: 16px;
    flex-wrap: wrap;
}

.sighting-header h3 {
    margin: 0 0 4px;
    color: var(--gray-900);
}

.sighting-header p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.sightings-list {
    padding: 20px 24px;
    max-height: 400px;
    overflow-y: auto;
}

.no-sightings {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-500);
}

.no-sightings span {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.sighting-item {
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 12px;
}

.sighting-item:last-child {
    margin-bottom: 0;
}

.sighting-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.sighting-location {
    font-weight: 600;
    color: var(--gray-900);
}

.sighting-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.sighting-desc {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin: 0 0 8px;
    line-height: 1.5;
}

.sighting-contact {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.sighting-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

.sighting-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

@media (max-width: 480px) {
    .sighting-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sighting-header .btn {
        width: 100%;
    }
}

/* === NIGHT SEARCH KIT === */
.night-kit-card {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
}

.night-kit-card .card-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.night-kit-card .card-header h3 {
    color: white;
}

.night-kit-card .card-badge {
    background: rgba(255,255,255,0.2);
    color: #c4b5fd;
}

.night-kit-content {
    padding: 24px;
}

.night-kit-intro {
    color: #c4b5fd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.night-kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.kit-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
}

.kit-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.kit-text strong {
    display: block;
    color: white;
    margin-bottom: 2px;
}

.kit-text span {
    font-size: 0.85rem;
    color: #a5b4fc;
    line-height: 1.4;
}

.night-kit-tip {
    padding: 16px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    color: #fde68a;
    font-size: 0.9rem;
}

.night-kit-tip strong {
    color: #fbbf24;
}

/* === MICROCHIP REGISTRIES === */
.microchip-section {
    margin: 40px 0;
}

.microchip-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
}

.microchip-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-bottom: 2px solid #93c5fd;
}

.microchip-header h3 {
    margin: 0 0 4px;
    color: var(--gray-900);
}

.microchip-header p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.microchip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    padding: 20px 24px;
}

.microchip-item {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.microchip-item:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.microchip-item.universal {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #fbbf24;
    grid-column: span 2;
}

.microchip-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 6px;
}

.microchip-item strong {
    color: var(--gray-900);
    margin-bottom: 4px;
}

.microchip-item span:last-child {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.microchip-tip {
    padding: 16px 24px 20px;
    font-size: 0.9rem;
    color: var(--gray-600);
    background: var(--gray-50);
    margin: 0;
}

@media (max-width: 480px) {
    .microchip-item.universal {
        grid-column: span 1;
    }
}

/* === ENHANCED TESTIMONIALS === */
.testimonial-card {
    position: relative;
}

.reunite-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.testimonial-text {
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* === EBOOK LEAD MAGNET === */
.email-capture-card.ebook-style {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    padding: 40px;
}

.ebook-preview {
    flex-shrink: 0;
}

.ebook-cover {
    width: 160px;
    height: 200px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 4px 12px 12px 4px;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    color: white;
}

.ebook-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.ebook-title {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 8px;
}

.ebook-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
}

.ebook-content {
    flex: 1;
}

.ebook-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.ebook-content > p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.ebook-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ebook-features li {
    font-size: 0.9rem;
    color: var(--gray-700);
}

@media (max-width: 640px) {
    .email-capture-card.ebook-style {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }
    
    .ebook-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .ebook-cover {
        width: 140px;
        height: 180px;
    }
}

/* === CERTIFICATION COURSE TEASER === */
.certification-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.certification-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    gap: 48px;
    align-items: center;
}

.certification-badge {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.cert-icon {
    font-size: 48px;
    margin-bottom: 4px;
}

.cert-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #92400e;
    letter-spacing: 1px;
}

.certification-content {
    flex: 1;
}

.certification-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.certification-content > p {
    color: var(--gray-600);
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cert-features {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cert-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.cert-feature span:first-child {
    font-size: 1.2rem;
}

.cert-waitlist {
    display: flex;
    gap: 12px;
    max-width: 450px;
}

.cert-waitlist input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-size: 1rem;
}

.cert-waitlist input:focus {
    outline: none;
    border-color: #f59e0b;
}

.cert-disclaimer {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 12px;
}

@media (max-width: 768px) {
    .certification-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .cert-features {
        justify-content: center;
    }
    
    .cert-waitlist {
        flex-direction: column;
        max-width: 100%;
    }
}
