/**
 * WoonView Platform CSS
 * Easy customization via CSS variables
 */

/* ============================================
   COLOR SCHEME - WoonView Brand Colors
   Based on WOONVIEW.md documentation
   ============================================ */
:root {
    /* Primary Colors from WoonView Design System */
    --woonview-title: #003366;        /* Main headings, titles */
    --woonview-button: #4CAF50;       /* Primary buttons, CTA */
    --woonview-text: #6b7280;         /* Standard text, body */
    --woonview-background: #a5d5eb;   /* Main app background (light blue) */
    --woonview-card: #ffffff;         /* Card backgrounds */
    
    /* Primary Colors (for compatibility) */
    --woonview-primary: #003366;
    --woonview-primary-dark: #002244;
    --woonview-primary-light: #4A6FA5;
    --woonview-primary-lighter: #BBDEFB;
    
    /* Secondary Colors */
    --woonview-secondary: #FF9800;
    --woonview-secondary-dark: #F57C00;
    --woonview-secondary-light: #FFB74D;
    
    /* Accent Colors */
    --woonview-accent: #4CAF50;
    --woonview-accent-dark: #388E3C;
    --woonview-accent-light: #81C784;
    
    /* Status Colors */
    --woonview-success: #4CAF50;
    --woonview-success-dark: #388E3C;
    --woonview-warning: #ffc107;
    --woonview-warning-dark: #F9A825;
    --woonview-error: #dc3545;
    --woonview-error-dark: #D32F2F;
    --woonview-info: #20B2AA;         /* Teal for informational content */
    --woonview-info-dark: #0288D1;
    
    /* Neutral Colors */
    --woonview-white: #FFFFFF;
    --woonview-black: #000000;
    --woonview-gray-50: #FAFAFA;
    --woonview-gray-100: #F5F5F5;
    --woonview-gray-200: #EEEEEE;
    --woonview-gray-300: #E0E0E0;
    --woonview-gray-400: #BDBDBD;
    --woonview-gray-500: #9E9E9E;
    --woonview-gray-600: #757575;
    --woonview-gray-700: #616161;
    --woonview-gray-800: #424242;
    --woonview-gray-900: #212121;
    
    /* Background Colors */
    --woonview-bg-primary: #f8fafc;      /* Light gray for page backgrounds */
    --woonview-bg-secondary: var(--woonview-gray-50);
    --woonview-bg-tertiary: var(--woonview-gray-100);
    --woonview-card-bg: #ffffff;          /* White for cards */
    --woonview-app-background: #f5f8fa;   /* Main app background */
    
    /* Text Colors */
    --woonview-text-primary: var(--woonview-title);
    --woonview-text-secondary: var(--woonview-text);
    --woonview-text-tertiary: var(--woonview-gray-600);
    --woonview-text-muted: var(--woonview-gray-500);
    --woonview-text-inverse: var(--woonview-white);
    
    /* Border Colors */
    --woonview-border-light: var(--woonview-gray-200);
    --woonview-border-medium: var(--woonview-gray-300);
    --woonview-border-dark: var(--woonview-gray-400);
    
    /* Shadow Colors */
    --woonview-shadow-sm: rgba(0, 0, 0, 0.05);
    --woonview-shadow-md: rgba(0, 0, 0, 0.1);
    --woonview-shadow-lg: rgba(0, 0, 0, 0.15);
    --woonview-shadow-xl: rgba(0, 0, 0, 0.2);
}

/* ============================================
   TYPOGRAPHY - Easy to customize
   ============================================ */
:root {
    /* Font Family - Lato */
    --woonview-font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --woonview-font-family-heading: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --woonview-font-family-mono: 'Fira Code', 'Courier New', monospace;
    
    /* Font Sizes */
    --woonview-font-size-xs: 0.75rem;      /* 12px */
    --woonview-font-size-sm: 0.875rem;    /* 14px */
    --woonview-font-size-base: 1rem;       /* 16px */
    --woonview-font-size-lg: 1.125rem;     /* 18px */
    --woonview-font-size-xl: 1.25rem;     /* 20px */
    --woonview-font-size-2xl: 1.5rem;      /* 24px */
    --woonview-font-size-3xl: 1.875rem;    /* 30px */
    --woonview-font-size-4xl: 2.25rem;     /* 36px */
    --woonview-font-size-5xl: 3rem;        /* 48px */
    
    /* Font Weights */
    --woonview-font-weight-light: 300;
    --woonview-font-weight-normal: 400;
    --woonview-font-weight-medium: 500;
    --woonview-font-weight-semibold: 600;
    --woonview-font-weight-bold: 700;
    --woonview-font-weight-extrabold: 800;
    
    /* Line Heights */
    --woonview-line-height-tight: 1.25;
    --woonview-line-height-normal: 1.5;
    --woonview-line-height-relaxed: 1.75;
    
    /* Letter Spacing */
    --woonview-letter-spacing-tight: -0.025em;
    --woonview-letter-spacing-normal: 0;
    --woonview-letter-spacing-wide: 0.025em;
    --woonview-letter-spacing-wider: 0.05em;
}

/* ============================================
   SPACING - Easy to customize
   ============================================ */
:root {
    --woonview-spacing-xs: 0.25rem;    /* 4px */
    --woonview-spacing-sm: 0.5rem;     /* 8px */
    --woonview-spacing-md: 1rem;       /* 16px */
    --woonview-spacing-lg: 1.5rem;      /* 24px */
    --woonview-spacing-xl: 2rem;        /* 32px */
    --woonview-spacing-2xl: 3rem;       /* 48px */
    --woonview-spacing-3xl: 4rem;       /* 64px */
}

/* ============================================
   BORDER RADIUS - Easy to customize
   ============================================ */
:root {
    --woonview-radius-sm: 0.25rem;      /* 4px */
    --woonview-radius-md: 0.5rem;       /* 8px */
    --woonview-radius-lg: 0.75rem;      /* 12px */
    --woonview-radius-xl: 1rem;         /* 16px */
    --woonview-radius-2xl: 1.5rem;      /* 24px */
    --woonview-radius-full: 9999px;
}

/* ============================================
   SHADOWS - Easy to customize
   ============================================ */
:root {
    --woonview-shadow-sm: 0 1px 2px 0 var(--woonview-shadow-sm);
    --woonview-shadow-md: 0 4px 6px -1px var(--woonview-shadow-md), 0 2px 4px -1px var(--woonview-shadow-sm);
    --woonview-shadow-lg: 0 10px 15px -3px var(--woonview-shadow-lg), 0 4px 6px -2px var(--woonview-shadow-sm);
    --woonview-shadow-xl: 0 20px 25px -5px var(--woonview-shadow-xl), 0 10px 10px -5px var(--woonview-shadow-md);
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--woonview-font-family);
    font-size: var(--woonview-font-size-base);
    font-weight: var(--woonview-font-weight-normal);
    line-height: var(--woonview-line-height-normal);
    color: var(--woonview-text-primary);
    background-color: var(--woonview-app-background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--woonview-font-family-heading);
    font-weight: var(--woonview-font-weight-bold);
    line-height: var(--woonview-line-height-tight);
    color: var(--woonview-text-primary);
    margin-top: 0;
    margin-bottom: var(--woonview-spacing-md);
}

h1 { font-size: var(--woonview-font-size-4xl); }
h2 { font-size: var(--woonview-font-size-3xl); }
h3 { font-size: var(--woonview-font-size-2xl); }
h4 { font-size: var(--woonview-font-size-xl); }
h5 { font-size: var(--woonview-font-size-lg); }
h6 { font-size: var(--woonview-font-size-base); }

p {
    margin-top: 0;
    margin-bottom: var(--woonview-spacing-md);
}

a {
    color: var(--woonview-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--woonview-primary-dark);
    text-decoration: underline;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--woonview-font-family);
    font-size: var(--woonview-font-size-base);
    font-weight: var(--woonview-font-weight-semibold);
    line-height: var(--woonview-line-height-normal);
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--woonview-button), #388E3C);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    color: white;
    text-decoration: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: var(--woonview-font-size-sm);
    border-radius: 8px;
}

.btn-secondary {
    background: white;
    color: var(--woonview-title);
    border-color: #e2e8f0;
}

.btn-secondary:hover {
    border-color: var(--woonview-button);
    color: var(--woonview-button);
    text-decoration: none;
}

.btn-outline-primary {
    color: var(--woonview-title);
    border-color: var(--woonview-title);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--woonview-title);
    color: white;
    text-decoration: none;
}

.btn-success {
    background: linear-gradient(135deg, var(--woonview-success), var(--woonview-success-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    color: white;
    text-decoration: none;
}

.btn-danger {
    background: linear-gradient(135deg, var(--woonview-error), var(--woonview-error-dark));
    color: white;
    border-color: transparent;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
    text-decoration: none;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background-color: var(--woonview-card-bg);
    border: 1px solid var(--woonview-border-light);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: var(--woonview-spacing-lg);
    margin-bottom: var(--woonview-spacing-lg);
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card-header {
    padding-bottom: var(--woonview-spacing-md);
    margin-bottom: var(--woonview-spacing-md);
    border-bottom: 1px solid var(--woonview-border-light);
}

.card-title {
    font-size: var(--woonview-font-size-xl);
    font-weight: var(--woonview-font-weight-bold);
    color: var(--woonview-title);
    margin: 0;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: var(--woonview-spacing-lg);
}

.form-label {
    display: block;
    font-size: var(--woonview-font-size-sm);
    font-weight: var(--woonview-font-weight-medium);
    color: var(--woonview-text-secondary);
    margin-bottom: var(--woonview-spacing-xs);
}

.form-control {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-family: var(--woonview-font-family);
    font-size: var(--woonview-font-size-base);
    line-height: var(--woonview-line-height-normal);
    color: var(--woonview-text-primary);
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    height: 52px;
}

/* Select elements */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 44px;
    cursor: pointer;
}

select.form-control::-ms-expand {
    display: none;
}

/* Date/Time inputs */
input[type="datetime-local"].form-control,
input[type="date"].form-control,
input[type="time"].form-control {
    height: 52px;
}

/* Number inputs */
input[type="number"].form-control {
    appearance: textfield;
    -moz-appearance: textfield;
}

input[type="number"].form-control::-webkit-outer-spin-button,
input[type="number"].form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Textarea */
textarea.form-control {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

.form-control:focus {
    outline: none;
    border-color: var(--woonview-button);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.form-control::placeholder {
    color: var(--woonview-text-muted);
}

/* Form control hover state */
.form-control:hover:not(:focus) {
    border-color: #cbd5e1;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--woonview-spacing-lg);
}

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

.text-muted {
    color: var(--woonview-text-muted);
}

.mt-1 { margin-top: var(--woonview-spacing-sm); }
.mt-2 { margin-top: var(--woonview-spacing-md); }
.mt-3 { margin-top: var(--woonview-spacing-lg); }
.mt-4 { margin-top: var(--woonview-spacing-xl); }

.mb-1 { margin-bottom: var(--woonview-spacing-sm); }
.mb-2 { margin-bottom: var(--woonview-spacing-md); }
.mb-3 { margin-bottom: var(--woonview-spacing-lg); }
.mb-4 { margin-bottom: var(--woonview-spacing-xl); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: white;
    border-bottom: 1px solid var(--woonview-border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: var(--woonview-spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: var(--woonview-font-size-xl);
    font-weight: var(--woonview-font-weight-bold);
    color: var(--woonview-title);
    text-decoration: none;
}

.navbar-brand:hover {
    text-decoration: none;
    color: var(--woonview-title);
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--woonview-spacing-lg);
    align-items: center;
}

.nav-link {
    color: var(--woonview-title);
    text-decoration: none;
    font-weight: var(--woonview-font-weight-medium);
    transition: all 0.2s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--woonview-button);
    text-decoration: none;
}

.nav-link.active {
    color: var(--woonview-button);
    font-weight: var(--woonview-font-weight-bold);
}

/* ============================================
   HOMEPAGE / LANDING PAGE STYLES
   ============================================ */

/* Landing page specific overrides */
body.landing-page main {
    padding: 0 !important;
}

/* Hero Section */
.hero-section {
    background-image: url('../img/wvp/hero.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.1) 0%, rgba(0, 51, 102, 0.05) 100%);
}

.hero-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--woonview-title);
    margin-bottom: 12px;
    font-family: var(--woonview-font-family-heading);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--woonview-text);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--woonview-button), #388E3C);
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    color: white;
    text-decoration: none;
}

.btn-hero-secondary {
    background: white;
    color: var(--woonview-title);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid var(--woonview-title);
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: var(--woonview-title);
    color: white;
    text-decoration: none;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--woonview-button), #388E3C);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge i {
    font-size: 0.9rem;
}

/* Accent Bars */
.accent-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--woonview-secondary), var(--woonview-button));
}

/* Section Label */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.2));
    color: var(--woonview-button);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-header.text-center {
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--woonview-title);
    margin-bottom: 0.75rem;
    font-family: var(--woonview-font-family-heading);
    text-align: center;
}

.section-title i {
    margin-right: 0.5rem;
    color: var(--woonview-button);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--woonview-text);
    line-height: 1.6;
    text-align: center;
}

/* ============================================
   JOURNEY SECTION - Step Process
   ============================================ */
.journey-section {
    background: white;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.journey-step {
    position: relative;
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.journey-step:hover {
    background: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--woonview-button);
}

.journey-step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--woonview-button), #388E3C);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.journey-step-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--woonview-button);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.journey-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--woonview-title);
    margin-bottom: 8px;
    font-family: var(--woonview-font-family-heading);
}

.journey-step-description {
    font-size: 0.9rem;
    color: var(--woonview-text);
    line-height: 1.6;
    margin: 0;
}

.journey-cta {
    text-align: center;
}

/* ============================================
   APP SECTION - iPhone App Showcase
   ============================================ */
.app-section {
    background: linear-gradient(135deg, #f5f8fa 0%, #e8f5e9 100%);
    padding: 80px 20px;
}

.app-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-text {
    padding-right: 20px;
}

.app-text .section-label {
    margin-bottom: 16px;
}

.app-text .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.app-description {
    font-size: 1.1rem;
    color: var(--woonview-text);
    line-height: 1.7;
    margin-bottom: 32px;
}

.app-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.app-features-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.app-features-list li i {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--woonview-button);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.app-features-list li div {
    display: flex;
    flex-direction: column;
}

.app-features-list li strong {
    font-size: 1rem;
    color: var(--woonview-title);
    margin-bottom: 4px;
}

.app-features-list li span {
    font-size: 0.9rem;
    color: var(--woonview-text);
    line-height: 1.5;
}

.app-download {
    display: flex;
    gap: 16px;
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--woonview-title);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.app-store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
    color: white;
    text-decoration: none;
}

.app-store-badge img {
    height: 44px;
}

.app-store-fallback {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-store-fallback i {
    font-size: 1.5rem;
}

/* Phone Mockup */
.app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 44px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    background: white;
    border-radius: 32px;
    height: 100%;
    overflow: hidden;
}

.phone-app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preview-header {
    background: linear-gradient(135deg, var(--woonview-button), #388E3C);
    color: white;
    padding: 50px 20px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-property {
    flex: 1;
    padding: 20px;
}

.preview-image {
    width: 100%;
    height: 160px;
    background-image: url('../img/wvp/hero.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    border-radius: 12px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.preview-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.preview-details {
    padding: 0 4px;
}

.preview-address {
    font-weight: 700;
    color: var(--woonview-title);
    font-size: 1rem;
    margin-bottom: 4px;
}

.preview-city {
    color: var(--woonview-text);
    font-size: 0.9rem;
}

.preview-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    border-top: 1px solid #eee;
}

.preview-action {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--woonview-button), #388E3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

/* ============================================
   SERVICES SECTION - Expert Services
   ============================================ */
.services-section {
    background: white;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-green:hover {
    border-color: var(--woonview-button);
}

.service-blue:hover {
    border-color: var(--woonview-title);
}

.service-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.service-green .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.2));
    color: var(--woonview-button);
}

.service-blue .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.1), rgba(0, 51, 102, 0.2));
    color: var(--woonview-title);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--woonview-title);
    margin-bottom: 12px;
    font-family: var(--woonview-font-family-heading);
}

.service-description {
    font-size: 1rem;
    color: var(--woonview-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--woonview-text);
}

.service-green .service-benefits li i {
    color: var(--woonview-button);
}

.service-blue .service-benefits li i {
    color: var(--woonview-title);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.service-green .service-link {
    color: var(--woonview-button);
}

.service-blue .service-link {
    color: var(--woonview-title);
}

.service-link:hover {
    gap: 12px;
    text-decoration: none;
}

/* ============================================
   STATS SECTION - Social Proof
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--woonview-title) 0%, #002244 100%);
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    font-family: var(--woonview-font-family-heading);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   CTA SECTION - Updated
   ============================================ */
.cta-section {
    background: #f8fafc;
    padding: 80px 20px;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--woonview-title);
    margin-bottom: 16px;
    font-family: var(--woonview-font-family-heading);
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--woonview-text);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--woonview-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note i {
    color: var(--woonview-button);
}

/* Legacy: Features and How sections (kept for other pages) */
.features-section {
    background: white;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    background: #f8fafc;
    transition: all 0.3s;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--woonview-button);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--woonview-title);
    margin-bottom: 12px;
    font-family: var(--woonview-font-family-heading);
}

.feature-description {
    color: var(--woonview-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

.how-section {
    background: #f5f8fa;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--woonview-button), #388E3C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--woonview-title);
    margin-bottom: 10px;
    font-family: var(--woonview-font-family-heading);
}

.step-description {
    color: var(--woonview-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--woonview-title);
    margin-bottom: 16px;
    font-family: var(--woonview-font-family-heading);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--woonview-text);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-primary {
    background: linear-gradient(135deg, var(--woonview-button), #388E3C);
    color: white;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    color: white;
    text-decoration: none;
}

.btn-cta-secondary {
    background: white;
    color: var(--woonview-title);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    border-color: var(--woonview-button);
    color: var(--woonview-button);
    text-decoration: none;
}

/* Footer accent */
.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--woonview-secondary), var(--woonview-button), var(--woonview-title));
}

/* Welcome Section (for logged in users) */
.welcome-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f8fa 0%, #e8f5e9 100%);
}

.welcome-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    /* Journey section tablet */
    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* App section tablet */
    .app-content {
        gap: 40px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--woonview-spacing-md);
    }
    
    h1 { font-size: var(--woonview-font-size-3xl); }
    h2 { font-size: var(--woonview-font-size-2xl); }
    h3 { font-size: var(--woonview-font-size-xl); }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Homepage responsive */
    .hero-card {
        padding: 32px 24px;
        margin: 20px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    /* Journey section mobile */
    .journey-section {
        padding: 60px 20px;
    }
    
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .journey-step {
        padding: 24px;
    }
    
    /* App section mobile */
    .app-section {
        padding: 60px 20px;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .app-text {
        padding-right: 0;
        order: 2;
    }
    
    .app-text .section-title {
        text-align: center;
    }
    
    .app-text .section-label {
        display: block;
        text-align: center;
    }
    
    .app-description {
        text-align: center;
    }
    
    .app-visual {
        order: 1;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
        border-radius: 36px;
        padding: 10px;
    }
    
    .phone-mockup::before {
        width: 80px;
        height: 24px;
        top: 16px;
    }
    
    .phone-screen {
        border-radius: 26px;
    }
    
    .preview-header {
        padding: 40px 16px 16px;
        font-size: 1rem;
    }
    
    .preview-image {
        height: 120px;
    }
    
    .app-download {
        justify-content: center;
    }
    
    /* Services section mobile */
    .services-section {
        padding: 60px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    /* Stats section mobile */
    .stats-section {
        padding: 48px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-note {
        flex-direction: column;
        gap: 4px;
    }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: 100%;
    pointer-events: none;
}

.toast {
    background: var(--woonview-card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    border-left: 4px solid;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    width: 100%;
}

.toast i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--woonview-text);
}

.toast-close {
    background: none;
    border: none;
    color: var(--woonview-text);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s;
    flex-shrink: 0;
    margin-left: 8px;
}

.toast-close:hover {
    opacity: 1;
}

.toast-close i {
    font-size: 0.875rem;
}

/* Toast Types */
.toast-success {
    border-left-color: var(--woonview-success);
    background: linear-gradient(135deg, #ffffff 0%, #f1f8f4 100%);
}

.toast-success i {
    color: var(--woonview-success);
}

.toast-error {
    border-left-color: var(--woonview-error);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.toast-error i {
    color: var(--woonview-error);
}

.toast-warning {
    border-left-color: var(--woonview-warning);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.toast-warning i {
    color: var(--woonview-warning);
}

.toast-info {
    border-left-color: var(--woonview-info);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.toast-info i {
    color: var(--woonview-info);
}

/* Default toast (no tag) */
.toast:not([class*="toast-"]) {
    border-left-color: var(--woonview-info);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.toast:not([class*="toast-"]) i {
    color: var(--woonview-info);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .toast-container {
        top: 70px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
    
    .toast {
        transform: translateX(100vw);
    }
    
    .toast.show {
        transform: translateX(0);
    }
}

