/* Free Badge Animation */
@keyframes gentlePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 6px 16px rgba(46, 204, 113, 0.4);
    }
}

/* Cooe Brand Colors - Consistent Cross-Platform (sRGB) */
:root {
    /* Primary Brand Colors - Explicit RGB for consistency */
    --ochre: rgb(210, 105, 30);           /* Warm earth orange */
    --terracotta: rgb(205, 92, 92);       /* Deep red-brown */
    --sunset-orange: rgb(255, 140, 66);   /* Bright orange */
    --earth-brown: rgb(139, 69, 19);      /* Rich brown */
    --clay-yellow: rgb(244, 164, 96);     /* Sandy yellow */
    --outback-red: rgb(178, 34, 34);      /* Deep red */
    --deep-purple: rgb(102, 51, 153);     /* Deep purple */
    --bush-green: rgb(85, 107, 47);       /* Eucalyptus green */
    --earth-yellow: rgb(218, 165, 32);    /* Golden yellow */
    
    /* Neutral Colors */
    --warm-gray: rgb(245, 245, 220);      /* Beige background */
    --charcoal: rgb(47, 47, 47);          /* Dark text */
    --white: rgb(255, 255, 255);          /* Pure white */
    --cream: rgb(255, 248, 220);          /* Cream background */
    
    /* Sage Green - Simple solid color for body background */
    --sage-light: rgb(184, 212, 168);     /* Light sage */
    --sage-mid: rgb(168, 200, 152);       /* Medium sage */
    --sage-dark: rgb(152, 188, 136);      /* Dark sage */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile-specific optimizations */
html {
    /* Prevent pull-to-refresh on mobile */
    overscroll-behavior-y: contain;
    /* Smooth scrolling */
    scroll-behavior: smooth;
}

body {
    /* Safe area padding for notched devices (iPhone X+) */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Improve touch scrolling on iOS */
body.is-mobile {
    -webkit-overflow-scrolling: touch;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--ochre);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus Indicators for Accessibility */
*:focus-visible {
    outline: 3px solid var(--ochre);
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--ochre);
    outline-offset: 2px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: rgb(26, 20, 14); /* Very dark brown - consistent across platforms */
    background: #A8C898 !important; /* Hex with !important to override everything */
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Force sRGB color space on all platforms */
    color-scheme: light;
    color-profile: sRGB;
    -webkit-color-profile: sRGB;
}

html.qr-redirecting,
html.qr-redirecting body {
    height: 100%;
    overflow: hidden;
}

.qr-redirect-overlay {
    position: fixed;
    inset: 0;
    background: rgba(24, 43, 13, 0.92);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    text-align: center;
    color: #fff7ed;
}

html.qr-redirecting .qr-redirect-overlay {
    display: flex;
}

.qr-redirect-box {
    max-width: 420px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.qr-redirect-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.qr-redirect-box h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #FFEBB5;
}

.qr-redirect-box p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #FFFAF0;
    line-height: 1.5;
}

.qr-redirect-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #FFEBB5;
    animation: qrSpinner 0.8s linear infinite;
}

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

/* Australian Bush Background - Bigger Trees on Sides, Grass in Middle */
/* TEMPORARILY DISABLED to fix Mac color issue */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Disabled - brown trunks causing tan color on Mac */
    background-image: 
        /* BIG TREE LEFT SIDE - Much larger */
        url("data:image/svg+xml,%3Csvg width='220' height='280' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.3'%3E%3C!-- Trunk --%3E%3Crect x='98' y='220' width='24' height='60' fill='%23654A2E'/%3E%3C!-- Large tree top --%3E%3Cellipse cx='110' cy='180' rx='55' ry='65' fill='%236B8E5A'/%3E%3Cellipse cx='70' cy='150' rx='40' ry='50' fill='%237FA05A'/%3E%3Cellipse cx='150' cy='150' rx='40' ry='50' fill='%237FA05A'/%3E%3Cellipse cx='85' cy='120' rx='35' ry='45' fill='%2385A968'/%3E%3Cellipse cx='135' cy='120' rx='35' ry='45' fill='%2385A968'/%3E%3Cellipse cx='110' cy='100' rx='30' ry='38' fill='%2395B875'/%3E%3C!-- Flowers --%3E%3Ccircle cx='75' cy='140' r='4' fill='%23FFD700'/%3E%3Ccircle cx='145' cy='135' r='4' fill='%23FFB6C1'/%3E%3Ccircle cx='90' cy='110' r='3' fill='%23FFD700'/%3E%3Ccircle cx='130' cy='105' r='3' fill='%23FFB6C1'/%3E%3Ccircle cx='110' cy='90' r='3' fill='%23FFD700'/%3E%3C/g%3E%3C/svg%3E"),
        /* BIG TREE RIGHT SIDE - Much larger */
        url("data:image/svg+xml,%3Csvg width='220' height='280' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.3'%3E%3C!-- Trunk --%3E%3Crect x='98' y='220' width='24' height='60' fill='%23654A2E'/%3E%3C!-- Large tree top --%3E%3Cellipse cx='110' cy='180' rx='55' ry='65' fill='%236B8E5A'/%3E%3Cellipse cx='70' cy='150' rx='40' ry='50' fill='%237FA05A'/%3E%3Cellipse cx='150' cy='150' rx='40' ry='50' fill='%237FA05A'/%3E%3Cellipse cx='85' cy='120' rx='35' ry='45' fill='%2385A968'/%3E%3Cellipse cx='135' cy='120' rx='35' ry='45' fill='%2385A968'/%3E%3Cellipse cx='110' cy='100' rx='30' ry='38' fill='%2395B875'/%3E%3C!-- Flowers --%3E%3Ccircle cx='75' cy='140' r='4' fill='%23FFD700'/%3E%3Ccircle cx='145' cy='135' r='4' fill='%23FFB6C1'/%3E%3Ccircle cx='90' cy='110' r='3' fill='%23FFD700'/%3E%3Ccircle cx='130' cy='105' r='3' fill='%23FFB6C1'/%3E%3Ccircle cx='110' cy='90' r='3' fill='%23FFD700'/%3E%3C/g%3E%3C/svg%3E"),
        /* GRASS PATTERN MIDDLE - Multiple grass blades */
        url("data:image/svg+xml,%3Csvg width='60' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.25'%3E%3C!-- Grass blades --%3E%3Cpath d='M10 200 L8 150 L12 160 L10 200' fill='%236B8E5A'/%3E%3Cpath d='M20 200 L18 145 L22 155 L20 200' fill='%237FA05A'/%3E%3Cpath d='M30 200 L28 150 L32 158 L30 200' fill='%236B8E5A'/%3E%3Cpath d='M40 200 L38 148 L42 156 L40 200' fill='%2385A968'/%3E%3Cpath d='M50 200 L48 152 L52 162 L50 200' fill='%237FA05A'/%3E%3Cpath d='M15 200 L14 155 L16 165 L15 200' fill='%2385A968'/%3E%3Cpath d='M25 200 L24 147 L26 157 L25 200' fill='%236B8E5A'/%3E%3Cpath d='M35 200 L34 151 L36 161 L35 200' fill='%237FA05A'/%3E%3Cpath d='M45 200 L44 153 L46 163 L45 200' fill='%236B8E5A'/%3E%3C/g%3E%3C/svg%3E"),
        /* More grass clusters */
        url("data:image/svg+xml,%3Csvg width='80' height='180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.25'%3E%3Cpath d='M15 180 L12 130 L18 140 L15 180' fill='%236B8E5A'/%3E%3Cpath d='M25 180 L22 128 L28 138 L25 180' fill='%237FA05A'/%3E%3Cpath d='M35 180 L32 132 L38 142 L35 180' fill='%2385A968'/%3E%3Cpath d='M45 180 L42 130 L48 140 L45 180' fill='%236B8E5A'/%3E%3Cpath d='M55 180 L52 134 L58 144 L55 180' fill='%237FA05A'/%3E%3Cpath d='M65 180 L62 136 L68 146 L65 180' fill='%2385A968'/%3E%3Cpath d='M20 180 L18 135 L22 145 L20 180' fill='%237FA05A'/%3E%3Cpath d='M30 180 L28 131 L32 141 L30 180' fill='%236B8E5A'/%3E%3Cpath d='M40 180 L38 133 L42 143 L40 180' fill='%2385A968'/%3E%3Cpath d='M50 180 L48 129 L52 139 L50 180' fill='%237FA05A'/%3E%3C/g%3E%3C/svg%3E"),
        /* Small bushes scattered */
        url("data:image/svg+xml,%3Csvg width='90' height='90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.25'%3E%3Cellipse cx='45' cy='50' rx='35' ry='35' fill='%237FA05A'/%3E%3Cellipse cx='30' cy='45' rx='25' ry='28' fill='%2385A968'/%3E%3Cellipse cx='60' cy='45' rx='25' ry='28' fill='%2385A968'/%3E%3Ccircle cx='35' cy='42' r='2.5' fill='%23FFD700'/%3E%3Ccircle cx='55' cy='40' r='2.5' fill='%23FFB6C1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 
        220px 280px, 220px 280px, 60px 200px, 80px 180px, 90px 90px;
    background-position: 
        20px 50px, /* Left side big tree */
        calc(100% - 240px) 50px, /* Right side big tree */
        calc(50% - 30px) 85%, /* Grass middle left */
        calc(50% + 10px) 82%, /* Grass middle right */
        calc(50% - 45px) 88%, /* Small bush */
        500px 300px, 700px 350px, 300px 500px, 900px 550px;
    background-repeat: repeat-y;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15; /* Further reduced to prevent brown tint on Mac */
}


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

/* Header */
.header {
    background: linear-gradient(135deg, rgba(240, 247, 232, 0.98) 0%, rgba(232, 244, 224, 0.97) 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid rgba(152, 181, 116, 0.2);
    margin: 0;
    padding: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
    z-index: 1;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    flex-shrink: 0;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 3px 6px rgba(210, 105, 30, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.03);
        opacity: 0.98;
    }
}

.logo-text {
    color: #1A140E; /* Very dark brown for maximum contrast */
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #1A140E; /* Very dark brown - maximum contrast */
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: 6px;
}

.nav-link {
    text-decoration: none;
    color: #1A140E;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--ochre);
    background: rgba(210, 105, 30, 0.1);
}

.nav-cta {
    white-space: nowrap;
}

.nav a:hover:not(.btn-primary) {
    color: var(--ochre);
    background: rgba(210, 105, 30, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #1A140E;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(240, 247, 232, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 20px;
    border-top: 2px solid rgba(152, 181, 116, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.mobile-nav-link {
    padding: 1rem;
    text-decoration: none;
    color: #1A140E;
    font-weight: 600;
    border-bottom: 1px solid rgba(152, 181, 116, 0.2);
    transition: all 0.3s;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: var(--ochre);
    background: rgba(210, 105, 30, 0.1);
    padding-left: 1.5rem;
}

.mobile-nav-cta {
    background: linear-gradient(135deg, var(--ochre), var(--terracotta));
    color: white !important;
    border-radius: 8px;
    margin-top: 0.5rem;
    border: none !important;
    text-align: center;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

/* Ripple effect on buttons */
.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before, .btn-secondary:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ochre), var(--terracotta), var(--sunset-orange));
    color: white;
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--terracotta), var(--ochre));
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(210, 105, 30, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline: 3px solid var(--ochre);
    outline-offset: 3px;
}

.btn-secondary {
    background: transparent;
    color: var(--deep-purple);
    border: 2px solid var(--deep-purple);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--bush-green);
    color: white;
    border-color: var(--bush-green);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(77, 121, 85, 0.3);
}

.btn-secondary:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
}

.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Pulse animation for important CTAs */
@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(210, 105, 30, 0.5);
    }
}

.btn-hero-primary,
.btn-primary.pulse {
    animation: buttonPulse 2s ease-in-out infinite;
}

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

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--warm-gray);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--charcoal);
    transition: all 0.2s;
    margin-left: 8px;
}

.btn-copy:hover {
    background: #e0e0e0;
}

/* Hero Section - Simplified gradient for cross-platform consistency */
.hero {
    background: linear-gradient(135deg, 
        rgb(210, 105, 30) 0%,     /* --ochre */
        rgb(205, 92, 92) 25%,      /* --terracotta */
        rgb(178, 34, 34) 50%,      /* --outback-red */
        rgb(102, 51, 153) 75%,     /* --deep-purple */
        rgb(255, 140, 66) 100%     /* --sunset-orange */
    );
    color: rgb(255, 255, 255);
    padding: 5rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 4rem;
    }
}

/* Simplified dot pattern overlay - removed for consistency */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 2px, transparent 2px);
    background-size: 80px 80px, 100px 100px, 90px 90px;
    pointer-events: none;
    opacity: 0.5;
}

/* Sound Wave Animation - Cooe Calling Effect - Multiple Rings */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    animation: soundWave 2.5s ease-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: soundWave 2.5s ease-out infinite 0.6s;
}

@keyframes soundWave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Additional sound wave rings for hero content area */
.hero .container::before,
.hero .container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    animation: soundWave 2.5s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero .container::before {
    animation-delay: 1.2s;
}

.hero .container::after {
    animation-delay: 1.8s;
}

.hero .container {
    position: relative;
}

/* Error Banner Styles */
.error-banner {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: white;
}

.error-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.error-banner-text {
    flex: 1;
}

.error-banner-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.error-banner-message {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.error-banner-code {
    margin: 0;
    font-size: 0.875rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.error-banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.error-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .error-banner {
        padding: 1rem;
    }
    
    .error-banner-content {
        gap: 0.75rem;
    }
    
    .error-banner-icon {
        font-size: 1.5rem;
    }
    
    .error-banner-title {
        font-size: 1.1rem;
    }
    
    .error-banner-message {
        font-size: 0.9rem;
    }
}

/* Aboriginal background gradients for hero */
.hero {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    position: relative;
}

/* Aboriginal dot pattern overlay for hero content */
.hero-content {
    position: relative;
}

.hero-content > * {
    position: relative;
    z-index: 3;
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Brand - Bird + Title on Same Line */
.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-mascot-inline {
    width: 4rem;
    height: 4rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    flex-shrink: 0;
    line-height: 1;
    vertical-align: middle;
}

.hero-mascot-inline svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-mascot {
    margin-bottom: 1.5rem;
}

/* Calling Text Effect - Sound Wave from Small to Big */
.calling-text {
    display: inline-block;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.call-small {
    font-size: 2.5rem;
    display: inline-block;
    animation: callWave 2s ease-in-out infinite;
    animation-delay: 0s;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.call-medium {
    font-size: 4rem;
    display: inline-block;
    animation: callWave 2s ease-in-out infinite;
    animation-delay: 0.2s;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.call-large {
    font-size: 6rem;
    display: inline-block;
    animation: callWave 2s ease-in-out infinite;
    animation-delay: 0.4s;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 2px 5px rgba(0, 0, 0, 0.25);
}

.subtitle-line {
    font-size: 1.5rem;
    display: block;
    margin-top: 0.5rem;
    opacity: 0.95;
}

@keyframes callWave {
    0%, 100% { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1) translateY(-5px);
        opacity: 0.9;
    }
}

/* Animal Mascot Styles - Kookaburra */
.animal-mascot {
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.animal-mascot svg {
    display: block;
}

.animal-mascot-large {
    width: 6rem;
    height: 6rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(2deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: rgb(255, 255, 255);
    text-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.7), 
        0 2px 4px rgba(0, 0, 0, 0.5), 
        0 0 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.98;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgb(255, 255, 255);
    text-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.7), 
        0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

/* Compact Trust Bar - Solid colors for consistency */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem auto 2.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 2px solid rgba(210, 105, 30, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(210, 105, 30, 0.1);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.trust-badge:hover {
    transform: translateY(-1px);
    background: rgba(210, 105, 30, 0.15);
}

.trust-badge-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.trust-badge-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(44, 31, 20);
    text-shadow: none;
    white-space: nowrap;
}

.trust-badge-divider {
    color: rgba(210, 105, 30, 0.4);
    font-size: 1.2rem;
    margin: 0 0.5rem;
    font-weight: bold;
}

/* Live Activity Counter */
.live-activity-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem auto 1.5rem;
    padding: 0.875rem 1.75rem;
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(210, 105, 30, 0.2);
    max-width: fit-content;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.activity-pulse {
    font-size: 0.6rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.activity-text {
    font-size: 0.95rem;
    color: #2C1F14;
    font-weight: 600;
    text-shadow: none;
}

.activity-text strong {
    font-weight: 800;
    font-size: 1.2rem;
    color: #D2691E;
    margin-right: 0.25rem;
}
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Hero Primary CTA - World Class Prominence */
.hero-cta-primary {
    margin: 0 auto 1.5rem;
    max-width: 500px;
}

.btn-hero-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, 
        rgb(255, 107, 53) 0%,      /* Bright orange */
        rgb(255, 140, 66) 50%,      /* Sunset orange */
        rgb(210, 105, 30) 100%      /* Ochre */
    );
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 
        0 8px 24px rgba(255, 107, 53, 0.4), 
        0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: -0.01em;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(255, 107, 53, 0.5), 
        0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:active {
    transform: translateY(-1px);
}

.btn-hero-text {
    flex: 1;
}

.btn-hero-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-hero-arrow {
    transform: translateX(4px);
}

.hero-cta-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-top: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Hero Secondary CTA - Subtle */
.hero-cta-secondary {
    margin-top: 1rem;
}

.hero-link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-link-secondary:hover {
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-link-secondary span {
    transition: transform 0.3s ease;
}

.hero-link-secondary:hover span {
    transform: translateY(4px);
}

/* Inline Privacy Assurance - Compact */
.hero-privacy-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.privacy-inline-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.privacy-inline-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

/* Generator Section */
.generator-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5FAF0 0%, #F0F7E8 100%);
}

.generator-card {
    background: #FFFFFF; /* Pure white for maximum contrast */
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(210, 105, 30, 0.15);
    position: relative;
}

@media (max-width: 768px) {
    .generator-card {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .generator-card {
        padding: 2rem 1.5rem;
    }
}


.generator-controls {
    text-align: center;
    margin: 2rem 0;
}

.size-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.size-select {
    transition: all 0.3s ease;
}

.size-select:hover {
    border-color: var(--ochre) !important;
    box-shadow: 0 2px 8px rgba(210, 105, 30, 0.15);
}

.size-select:focus {
    outline: none;
    border-color: var(--ochre) !important;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.qr-result {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

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

/* QR Card - World-Class Redesign */
.qr-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

/* QR Card Pulse Animation - Draws attention when loaded */
.qr-card-pulse {
    animation: qrCardPulse 2s ease-in-out;
}

@keyframes qrCardPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    }
    25% {
        transform: scale(1.02);
        box-shadow: 0 8px 32px rgba(210, 105, 30, 0.25);
    }
    50% {
        transform: scale(1);
        box-shadow: 0 12px 40px rgba(210, 105, 30, 0.3);
    }
    75% {
        transform: scale(1.01);
        box-shadow: 0 8px 32px rgba(210, 105, 30, 0.2);
    }
}

/* QR Success Indicator - Checkmark that appears after generation */
.qr-success-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    pointer-events: none;
}

.success-checkmark {
    filter: drop-shadow(0 4px 12px rgba(76, 175, 80, 0.4));
    animation: successPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Primary CTA Inside Card */
.qr-primary-cta-inline {
    text-align: center;
}

.qr-primary-cta-inline .btn-large {
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-primary-cta-inline .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
}

.qr-primary-cta-inline .btn-large:active {
    transform: translateY(-1px);
}

.qr-code-display {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

#qrCodeCanvas {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
}

#qrCodeCanvas canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Print Menu Dropdown */
.btn-action-wrapper {
    position: relative;
    display: inline-block;
}

.print-menu {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    min-width: 200px;
    z-index: 1000;
    animation: slideUpFade 0.2s ease-out;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.print-menu::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.print-menu-header {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.print-menu-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0.875rem;
    border: none;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: left;
}

.print-menu-item:hover {
    background: linear-gradient(135deg, #FFF5F0, #FFE8DC);
    transform: translateX(2px);
}

.print-menu-item .size-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.print-menu-item .size-dimension {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.print-menu-item:hover .size-label {
    color: #D2691E;
}

.print-menu-item:hover .size-dimension {
    color: #D2691E;
}


/* Quick Actions - Inline with Icons */
.qr-quick-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.btn-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.875rem 1.125rem;
    border: 2px solid #F0F0F0;
    border-radius: 14px;
    background: linear-gradient(to bottom, #FFFFFF, #FAFAFA);
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    min-width: 75px;
    position: relative;
    overflow: hidden;
}

.btn-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.05), rgba(210, 105, 30, 0.1));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.btn-action:hover {
    border-color: #D2691E;
    color: #D2691E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.2);
}

.btn-action:hover::before {
    opacity: 1;
}

.btn-action:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(210, 105, 30, 0.15);
}

.btn-action svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.btn-action span {
    position: relative;
    z-index: 1;
}

.btn-action-regenerate {
    border-color: #E8E8E8;
}

.btn-action-regenerate:hover {
    border-color: #BDBDBD;
    color: #555;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-action-regenerate::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.04));
}

@media (max-width: 480px) {
    .qr-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }
    
    /* QR Code Display - Optimized for mobile screens */
    #qrCodeCanvas {
        padding: 15px;
    }
    
    #qrCodeCanvas canvas {
        max-width: 280px;
        width: 100%;
        height: auto;
    }
    
    /* Primary CTA - Full width on mobile */
    .qr-primary-cta-inline {
        margin: 1.25rem 0 1rem !important;
    }
    
    .qr-primary-cta-inline .btn-large {
        width: 100%;
        font-size: 1rem !important;
        padding: 1rem 1.5rem !important;
        min-height: 56px;
    }
    
    .qr-primary-cta-inline p {
        font-size: 0.8rem !important;
    }
    
    /* Print Menu - Mobile positioning */
    .print-menu {
        min-width: 180px;
        left: auto;
        right: 0;
        transform: none;
    }
    
    .print-menu::after {
        left: auto;
        right: 20px;
        transform: rotate(45deg);
    }
    
    .print-menu-item {
        padding: 0.875rem 1rem;
    }
    
    /* Action Buttons - Touch-friendly (44x44px minimum) */
    .qr-quick-actions {
        gap: 0.625rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-action {
        min-width: 72px;
        min-height: 72px;
        padding: 0.75rem 0.875rem;
        font-size: 0.8rem;
        gap: 0.35rem;
        border-radius: 12px;
        /* Optimize for touch */
        -webkit-tap-highlight-color: rgba(210, 105, 30, 0.2);
        touch-action: manipulation;
    }
    
    .btn-action svg {
        width: 22px;
        height: 22px;
    }
    
    /* Claim Button - Larger on mobile for easy tapping */
    .qr-primary-cta {
        padding: 0 1rem;
    }
    
    .qr-primary-cta .btn-large {
        width: 100%;
        max-width: 100%;
        min-height: 56px;
        font-size: 1rem;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        /* Optimize for touch */
        -webkit-tap-highlight-color: rgba(210, 105, 30, 0.3);
        touch-action: manipulation;
    }
    
    .qr-primary-cta p {
        font-size: 0.85rem;
    }
}

.qr-code-info {
    flex: 1;
    min-width: 250px;
}

.code-display, .url-display {
    margin-bottom: 1.5rem;
}

.code-display label, .url-display label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.code-value, .url-value {
    font-family: 'Monaco', 'Courier New', monospace;
    background: var(--warm-gray);
    padding: 12px 16px;
    border-radius: 8px;
    word-break: break-all;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qr-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: center;
}

.qr-actions .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: auto;
}

.qr-instructions {
    background: linear-gradient(135deg, #f8f9fa, #fff5e6);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--ochre);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.15);
    margin-top: 2rem;
}

.instructions-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Collapsible Instructions Header */
.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.collapsible-header:hover {
    background-color: rgba(210, 105, 30, 0.05);
}

.collapsible-header .header-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.collapse-icon {
    font-size: 1.2rem;
    color: var(--ochre);
    transition: transform 0.3s ease;
    user-select: none;
}

.collapsible-header[aria-expanded="false"] .collapse-icon {
    transform: rotate(-90deg);
}

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

.collapsible-content.expanded {
    max-height: 2000px;
    opacity: 1;
}

.qr-instructions h3 {
    margin: 0.75rem 0 0 0;
    color: var(--charcoal);
    font-size: 1.5rem;
}

.next-steps {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.next-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(210, 105, 30, 0.1);
    transition: all 0.3s;
}

.next-step:hover {
    border-color: var(--ochre);
    box-shadow: 0 2px 8px rgba(210, 105, 30, 0.15);
    transform: translateX(5px);
}

.step-visual {
    position: relative;
    flex-shrink: 0;
}

.step-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.25rem;
}

.step-number-small {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--ochre), var(--terracotta));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(210, 105, 30, 0.3);
}

.step-content {
    flex: 1;
}

.step-content strong {
    display: block;
    color: var(--charcoal);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.step-content p {
    color: #636e72;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.qr-help-section {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(210, 105, 30, 0.2);
    margin-top: 1.5rem;
}

.qr-help-section p {
    margin: 0;
    color: #636e72;
    font-size: 0.95rem;
}

.qr-help-section a {
    color: var(--ochre);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.qr-help-section a:hover {
    color: var(--outback-red);
    text-decoration: underline;
}

.qr-instructions ol {
    margin-left: 1.5rem;
    line-height: 2;
}

.qr-instructions li {
    margin-bottom: 0.5rem;
}

/* Sections - Improved Spacing */
.section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }
}

.section-alt {
    background: var(--warm-gray);
}

.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1.25rem;
    color: #1A140E; /* Very dark brown - maximum contrast */
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: #2C1F14; /* Very dark brown - maximum readability */
    font-size: 1.15rem;
    margin-bottom: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
}

/* Steps Container */
.steps-container {
    margin-top: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

/* Step Connectors - Only show on desktop */
.step-connector {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.step-connector svg {
    width: 100%;
    max-width: 120px;
    height: auto;
}

@media (min-width: 1024px) {
    .steps {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 1rem;
    }
    
    .step-connector {
        display: flex;
    }
}

.steps-cta {
    text-align: center;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2.75rem 2.25rem;
    background: #FFFFFF; /* Pure white for maximum contrast */
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid rgba(210, 105, 30, 0.12);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}



.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ochre), var(--terracotta), var(--sunset-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

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

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1A140E; /* Very dark brown - maximum contrast */
    font-weight: 700;
}

.step p {
    color: #2C1F14; /* Very dark brown - maximum readability */
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
}

.step code {
    background: var(--warm-gray);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
}

.security-note {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.security-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.security-note h4 {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    font-weight: 600;
}

.security-note p {
    color: #2C1F14; /* Dark brown for better readability */
    line-height: 1.6;
}

/* Compact Security Note for How It Works */
.security-note-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(76, 175, 80, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-left: 3px solid #4CAF50;
}

.security-note-compact .security-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.security-note-compact p {
    margin: 0;
    font-size: 0.95rem;
    color: #2C1F14;
    line-height: 1.5;
}

.security-highlight-main {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE0B2 100%);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border-left: 4px solid var(--ochre);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #1A140E;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.security-highlight-main strong {
    color: var(--outback-red);
    font-size: 1.15rem;
}

.security-detail {
    background: #F5F5F5;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
    margin-top: 1rem;
    color: #2C1F14;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Trust Indicators Section */
.trust-indicators-section {
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    padding: 4rem 0;
}

.trust-indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-indicator-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trust-indicator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.trust-indicator-card.highlight {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE0B2 100%);
    border-color: rgba(210, 105, 30, 0.2);
}

.indicator-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-indicator-card h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.trust-indicator-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #ffb3ba;
}

/* Testimonial Header with Avatar */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-author {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.location-badge {
    font-size: 0.85rem;
    color: #888;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #D2691E;
    font-weight: 700;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D2691E;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    font-size: 2rem;
    color: rgba(210, 105, 30, 0.3);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
}

/* Use Cases Section */
.use-cases-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.use-cases-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #2C1F14;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.use-case-card {
    background: white;
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.use-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: var(--ochre);
}

.use-case-visual {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
}

.item-illustration {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 120px;
}

.use-case-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1A140E;
    font-weight: 700;
}

.use-case-card p {
    color: #2C1F14;
    line-height: 1.6;
    font-size: 0.95rem;
}

.use-cases-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--ochre) 0%, var(--terracotta) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    color: white;
    margin-top: 3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.use-cases-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.use-cases-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Products */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #FFFFFF; /* Pure white for maximum contrast */
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid rgba(210, 105, 30, 0.15);
    position: relative;
}


.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--ochre);
}

.product-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1A140E; /* Very dark brown - maximum contrast */
    font-weight: 700;
}

.product-card p {
    color: #2C1F14; /* Very dark brown - maximum readability */
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ochre), var(--terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

/* Claim & Found Pages */
.claim-page, .found-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--warm-gray) 100%);
    padding: 3rem 0;
}

.claim-card, .found-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

.claim-header, .found-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.claim-header .logo {
    margin-bottom: 1.5rem;
}

.claim-title {
    color: var(--charcoal);
    margin: 0 0 1rem;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.claim-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1.5px solid #4caf50;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2e7d32;
    margin-top: 1rem;
}

.free-badge-icon {
    font-size: 1rem;
}

.free-badge-text {
    white-space: nowrap;
}

.claim-header .logo, .found-header .logo {
    margin: 0 auto 1.5rem;
    justify-content: center;
}

.found-icon {
    font-size: 4rem;
    margin: 1rem 0;
}

.claim-subtitle {
    color: #636e72;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0 auto 1rem;
    max-width: 600px;
}

.found-subtitle {
    color: #2C1F14; /* Dark brown for better readability */
    line-height: 1.7;
    margin-top: 1rem;
}

.code-display-banner {
    background: linear-gradient(135deg, var(--ochre) 0%, var(--terracotta) 50%, var(--sunset-orange) 100%);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.code-label {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.code-icon {
    font-size: 1.1rem;
}

.code-value-large {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.code-hint {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.75rem;
    font-weight: 500;
}

/* Forms */
.claim-form, .found-form {
    margin-top: 2.5rem;
}

.field-optional {
    font-weight: 400;
    color: #636e72;
    font-size: 0.9em;
}

.help-text {
    display: block;
    margin-top: 0.5rem;
    color: #636e72;
    font-size: 0.875rem;
    line-height: 1.5;
}

.help-text strong {
    font-weight: 600;
    color: var(--charcoal);
}

/* Message Templates */
.message-templates {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.templates-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.templates-icon {
    font-size: 1.1rem;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.template-btn {
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C1F14;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: inherit;
}

.template-btn:hover {
    border-color: var(--ochre);
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.15);
}

.template-btn:active {
    transform: translateY(0);
}

.template-btn:focus-visible {
    outline: 3px solid var(--ochre);
    outline-offset: 2px;
}

/* Character Counter */
.form-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.char-counter {
    font-size: 0.85rem;
    font-weight: 500;
    color: #636e72;
    margin-left: auto;
}

.char-counter.warning {
    color: #f57c00;
}

.char-counter.danger {
    color: #d32f2f;
    font-weight: 700;
}

.counter-help {
    margin-top: 0.25rem;
}

/* Message Feedback */
.message-feedback {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 8px;
    border: 2px solid #4caf50;
    animation: slideDown 0.3s ease-out;
}

.feedback-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feedback-text {
    font-size: 0.9rem;
    color: #2e7d32;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.form-group .required {
    color: var(--alert-red);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ochre);
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.2);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: 3px solid var(--ochre);
    outline-offset: 2px;
    border-color: var(--ochre);
}

/* SMS Opt-in Checkbox Container */
.sms-opt-in-container {
    margin-top: 14px;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 200px;
    }
}

.sms-opt-in-container:hover {
    border-color: #D2691E;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.15);
    transform: translateY(-1px);
}

.sms-opt-in-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
}

.sms-opt-in-label input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #D2691E;
    border: 2px solid #ced4da;
    border-radius: 4px;
}

.sms-opt-in-label input[type="checkbox"]:checked {
    background-color: #D2691E;
    border-color: #D2691E;
}

.sms-opt-in-label strong {
    color: #1A140E;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.sms-opt-in-label span {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.5;
    display: block;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #636e72;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Turnstile Container */
.turnstile-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
    padding: 1rem 0;
}

.turnstile-container .cf-turnstile {
    margin: 0 auto;
}

/* Claim Button - World Class Design */
.btn-claim-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--ochre) 0%, var(--terracotta) 50%, var(--sunset-orange) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: -0.01em;
    margin-top: 1rem;
}

.btn-claim-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(210, 105, 30, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-claim-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-claim-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-claim-text {
    flex: 1;
}

.btn-claim-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-claim-primary:hover:not(:disabled) .btn-claim-arrow {
    transform: translateX(4px);
}

.submit-wrapper {
    margin-top: 1.5rem;
}

.submit-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    color: #636e72;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
}

.note-icon {
    font-size: 1rem;
}

.submit-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
    border-radius: 8px;
    border: 2px solid rgba(210, 105, 30, 0.2);
    animation: slideDown 0.3s ease-out;
}

.help-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.help-text-dynamic {
    font-size: 0.9rem;
    color: #2C1F14;
    font-weight: 500;
}

.btn-found-icon {
    font-size: 1.1rem;
}

/* Contact Information Section (Found Page) */
.contact-info-section {
    margin: 2rem 0;
    padding: 1.75rem;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 50%, #fff5e6 100%);
    border-radius: 16px;
    border: 2px solid rgba(210, 105, 30, 0.2);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.1);
}

.contact-info-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-info-header-text {
    flex: 1;
}

.contact-info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.optional-badge {
    font-size: 0.85em;
    font-weight: 500;
    color: #636e72;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.2em 0.5em;
    border-radius: 6px;
    margin-left: 0.5rem;
}

.contact-info-subtitle {
    font-size: 0.95rem;
    color: #2C1F14;
    margin: 0;
    line-height: 1.5;
}

.subtitle-stat {
    display: inline-block;
    background: rgba(76, 175, 80, 0.15);
    padding: 0.2em 0.5em;
    border-radius: 6px;
    font-weight: 700;
    color: #2e7d32;
}

/* Contact Benefits Comparison */
.contact-benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C1F14;
    flex: 1;
    min-width: 150px;
}

.benefit-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.contact-field-group {
    margin-bottom: 0;
}

.contact-field-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.field-icon {
    font-size: 1.1rem;
}

.location-field-group {
    grid-column: 1 / -1;
}

.location-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.location-input-wrapper input {
    flex: 1;
}

.btn-location-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--ochre) 0%, var(--terracotta) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(210, 105, 30, 0.2);
    min-width: fit-content;
}

.btn-location-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--sunset-orange) 100%);
}

.btn-location-share:active {
    transform: translateY(0);
}

.btn-location-share:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-location-share:focus-visible {
    outline: 3px solid var(--ochre);
    outline-offset: 2px;
}

.location-icon {
    font-size: 1.1rem;
}

.location-btn-text {
    display: inline;
}

.contact-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 10px;
    border: 2px solid #28a745;
    animation: slideDown 0.3s ease-out;
}

.status-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.status-text {
    color: #155724;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .impact-counter {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.875rem 1.25rem;
    }

    .impact-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .templates-grid {
        grid-template-columns: 1fr;
    }

    .template-btn {
        width: 100%;
    }

    .contact-benefits-comparison {
        flex-direction: column;
        gap: 0.75rem;
    }

    .benefit-item {
        min-width: 100%;
    }

    .contact-info-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .contact-info-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-info-icon {
        font-size: 1.75rem;
        margin-top: 0;
    }

    .contact-info-title {
        font-size: 1.25rem;
    }

    .contact-fields-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .location-field-group {
        grid-column: 1;
    }

    .location-input-wrapper {
        flex-direction: column;
    }

    .btn-location-share {
        width: 100%;
        justify-content: center;
    }

    .location-btn-text {
        display: inline;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 1.25rem;
    }

    .contact-info-title {
        font-size: 1.15rem;
    }

    .contact-info-subtitle {
        font-size: 0.9rem;
    }
}

/* Privacy Note - Compact Version for Claim Page */
.privacy-note-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid rgba(210, 105, 30, 0.15);
    font-size: 0.9rem;
}

.privacy-icon-inline {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.privacy-text-inline {
    color: #636e72;
    font-weight: 500;
}

/* Original Privacy Note (for other pages) */
.privacy-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--ochre);
}

.privacy-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.privacy-note strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.privacy-note p {
    color: #2C1F14; /* Dark brown for better readability */
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeIn 0.5s ease;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid #4caf50;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.15);
}

.success-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-title {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 800;
}

.success-text {
    color: #2C1F14;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.success-message h2 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.success-message p {
    color: #2C1F14; /* Dark brown for better readability */
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Success Message Inline Promo */
.success-promo {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(76, 175, 80, 0.2);
}

.success-promo-divider {
    margin-bottom: 1.5rem;
}

.success-promo-text {
    color: #155724;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.success-promo-text strong {
    font-weight: 700;
}

.btn-success-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: white;
    color: #155724;
    border: 2px solid #4caf50;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.btn-success-promo:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
    text-decoration: none;
}

.btn-success-promo span {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-success-promo:hover span {
    transform: translateX(4px);
}

.thank-you {
    font-size: 1.1rem;
    color: var(--success-green);
    font-weight: 600;
    margin-top: 1rem;
}

/* Promotional Section - Generate QR Code */
.promo-section {
    margin-top: 3rem;
    padding: 2rem 0;
}

.promo-card {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 50%, #fff5e6 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(210, 105, 30, 0.2);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.promo-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: gentleFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

.promo-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A140E;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.promo-text {
    font-size: 1.1rem;
    color: #2C1F14;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.promo-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.promo-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2C1F14;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(210, 105, 30, 0.15);
}

.benefit-icon {
    font-size: 1.2rem;
}

.btn-promo-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--ochre) 0%, var(--terracotta) 50%, var(--sunset-orange) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.btn-promo-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(210, 105, 30, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.btn-promo-primary .btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-promo-primary:hover .btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .promo-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .promo-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .promo-icon {
        font-size: 3rem;
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .promo-text {
        font-size: 1rem;
    }
    
    .promo-benefits {
        gap: 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .promo-benefit {
        justify-content: center;
    }
    
    .btn-promo-primary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .promo-card {
        padding: 1.5rem 1.25rem;
    }
    
    .promo-icon {
        font-size: 2.5rem;
    }
    
    .promo-title {
        font-size: 1.35rem;
    }
    
    .promo-text {
        font-size: 0.95rem;
    }
    
    .promo-benefits {
        gap: 0.75rem;
    }
    
    .promo-benefit {
        font-size: 0.9rem;
        padding: 0.625rem 1rem;
    }
}

/* Footer */
/* Social Proof Section */
.social-proof-section {
    background: white;
    padding: 4rem 0;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.proof-stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid rgba(210, 105, 30, 0.1);
    transition: all 0.3s;
}

.proof-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(210, 105, 30, 0.15);
    border-color: var(--ochre);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ochre);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #636e72;
    font-weight: 600;
}

.testimonial-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #FFF8E7 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--ochre);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--ochre);
    font-weight: 600;
    margin: 0;
    text-align: right;
}

@media (max-width: 768px) {
    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .proof-stat {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-section {
        grid-template-columns: 1fr;
    }
}

/* Support/Donation Section */
.support-section {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE8D6 100%);
    padding: 4rem 0;
}

.support-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.support-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.support-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #2C1F14;
    line-height: 1.8;
}

.support-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.support-reason {
    background: #F9F9F9;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #E8E8E8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.support-reason:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--ochre);
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.support-reason h4 {
    color: var(--ochre);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.support-reason p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.support-cta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #E8E8E8;
}

.support-message {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2C1F14;
    line-height: 1.8;
}

.support-message strong {
    color: var(--ochre);
    font-size: 1.2rem;
}

.support-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Donation Page Styles */
.donate-page {
    min-height: 100vh;
    padding: 2rem 0;
}

.donate-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.donate-header {
    text-align: center;
    margin-bottom: 2rem;
}

.donate-icon {
    font-size: 4rem;
    margin: 1rem 0;
}

.donate-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

.donation-message {
    background: #F9F9F9;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--ochre);
}

.message-box h2 {
    color: var(--ochre);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.message-box ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.message-box li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E8E8E8;
    color: #2C1F14;
}

.message-box li:last-child {
    border-bottom: none;
}

.message-box .highlight {
    background: #FFF8E7;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--ochre);
}

.donation-options {
    margin-bottom: 2rem;
}

.donation-options h3 {
    margin-bottom: 1rem;
    color: var(--ochre);
}

.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.amount-btn {
    flex: 1;
    min-width: 80px;
    padding: 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 8px;
    background: white;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ochre);
    cursor: pointer;
    transition: all 0.3s;
}

.amount-btn:hover {
    border-color: var(--ochre);
    background: #FFF8E7;
    transform: translateY(-2px);
}

.amount-btn.active {
    background: var(--ochre);
    color: white;
    border-color: var(--ochre);
}

.amount-btn.custom {
    background: #F9F9F9;
    color: #666;
}

.custom-amount-input {
    margin-top: 1rem;
}

.custom-amount-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.custom-amount-input input {
    width: 100%;
    padding: 12px;
    border: 2px solid #E8E8E8;
    border-radius: 8px;
    font-size: 1rem;
}

.donation-form {
    margin-top: 2rem;
}

.card-element {
    padding: 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 8px;
    margin: 1.5rem 0;
    background: white;
}

.card-errors {
    color: #D32F2F;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 20px;
}

.donation-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E8E8E8;
    text-align: left;
    color: #666;
    font-size: 0.9rem;
}

.security-footer-box {
    background: #F1F8F4;
    border-left: 4px solid #4CAF50;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.security-footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 0.75rem;
    display: block;
}

.security-footer-box p {
    color: #2E7D32;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.legal-footer-box {
    background: #FFF8E1;
    border-left: 4px solid #FF9800;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E65100;
    margin-bottom: 0.75rem;
    display: block;
}

.legal-footer-box p {
    color: #BF360C;
    line-height: 1.6;
    margin: 0.75rem 0;
}

.legal-footer-box strong {
    color: #E65100;
    font-weight: 700;
}

.donation-legal-disclaimer {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
    padding: 1rem;
    background: #F9F9F9;
    border-radius: 8px;
    border-left: 3px solid var(--ochre);
}

.donate-legal-note-box {
    background: #FFF3E0;
    border: 2px solid #FF9800;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    text-align: center;
}

.donate-legal-note {
    font-size: 0.95rem;
    color: #E65100;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.donate-legal-note strong {
    color: #BF360C;
    font-weight: 700;
}

.stripe-security-badge {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border: 2px solid #4CAF50;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.stripe-lock-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.stripe-security-text {
    flex: 1;
}

.stripe-security-text strong {
    display: block;
    font-size: 1.1rem;
    color: #1B5E20;
    margin-bottom: 0.3rem;
}

.stripe-security-detail {
    display: block;
    font-size: 0.9rem;
    color: #2E7D32;
    line-height: 1.5;
}

.donation-footer a {
    color: var(--ochre);
    text-decoration: none;
}

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

/* Floating Donation Widget */
.donation-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: all;
}

.donation-widget.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
}

.donation-widget-toggle {
    background: linear-gradient(135deg, #663399 0%, #8B4AAB 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 51, 153, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    min-width: 60px;
    min-height: 44px;
    justify-content: center;
}

.donation-widget-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.donation-widget-toggle .donation-icon {
    font-size: 1.2rem;
}

.donation-widget-toggle .donation-label {
    white-space: nowrap;
}

.donation-widget-content {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    max-height: 87vh;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.25rem 1.5rem 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.donation-widget.expanded .donation-widget-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.donation-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.donation-widget-header h4 {
    margin: 0;
    color: var(--ochre);
    font-size: 1.1rem;
    font-weight: 700;
}

.donation-widget-close {
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.donation-widget-close:hover {
    background: #f0f0f0;
    color: #333;
}

.donation-widget-text {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.donation-widget-disclaimer {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-style: italic;
}

.donation-widget-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.donation-widget-btn {
    padding: 0.6rem 0.5rem;
    background: #F9F9F9;
    color: var(--ochre);
    border: 2px solid #E8E8E8;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.donation-widget-btn:hover {
    background: #FFF8E7;
    border-color: var(--ochre);
    transform: translateY(-2px);
}

.donation-widget-link {
    display: block;
    text-align: center;
    color: var(--ochre);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem;
    border-top: 1px solid #E8E8E8;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    transition: color 0.3s;
}

.donation-widget-link:hover {
    color: var(--outback-red);
    text-decoration: underline;
}

/* Auto-hide on scroll */
.donation-widget.scrolling-down {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none;
}

.donation-widget.scrolling-up {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive donation widget */
@media (max-width: 768px) {
    .donation-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .donation-widget-toggle {
        padding: 0.75rem;
        font-size: 0.85rem;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        min-width: 56px;
        min-height: 56px;
    }
    
    .donation-widget-toggle .donation-label {
        display: none;
    }
    
    .donation-widget-toggle .donation-icon {
        margin: 0;
        font-size: 1.4rem;
    }
    
    .donation-widget-content {
        width: calc(100vw - 40px);
        max-width: 360px;
        right: -10px;
        bottom: 70px;
    }
}

/* Donation Widget Form Styles */
.donation-widget-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 2rem;
    min-height: 0;
    /* Ensure scrollbar doesn't overlap content */
    padding-right: 0.25rem;
    /* Smooth scrolling */
    scroll-behavior: smooth;
    /* Ensure content doesn't get cut off */
    box-sizing: border-box;
}

.donation-widget-form {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}

.donation-widget-form .form-group {
    margin-bottom: 0.75rem;
}

.donation-widget-form .form-group label {
    display: block;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.donation-widget-form .form-group input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.donation-widget-form .form-group input:focus {
    outline: none;
    border-color: #D2691E;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.donation-widget-form .form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #636e72;
    font-size: 0.75rem;
}

.custom-amount-input {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.custom-amount-input label {
    display: block;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.custom-amount-input input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

/* Stripe Security Badge for Widget */
.stripe-security-badge-widget {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border: 1.5px solid #4CAF50;
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    margin: 0.25rem 0;
    box-shadow: 0 1px 4px rgba(76, 175, 80, 0.15);
}

.stripe-badge-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.stripe-badge-header .stripe-lock-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.stripe-badge-header strong {
    color: #1B5E20;
    font-size: 0.85rem;
    font-weight: 600;
}

.stripe-badge-text {
    font-size: 0.75rem;
    color: #2E7D32;
    line-height: 1.4;
    margin: 0.25rem 0 0.35rem 0;
}

.stripe-powered-by {
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(76, 175, 80, 0.25);
    text-align: center;
    font-size: 0.7rem;
}

/* Stripe Card Element in Widget */
.card-element-widget {
    padding: 0.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin: 0.25rem 0;
}

.card-errors {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.card-errors-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ff9800;
    border-left: 4px solid #f57c00;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.15);
    animation: errorSlideIn 0.3s ease-out;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 200px;
    }
}

.card-errors .error-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.card-errors .error-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.1rem;
}

.card-errors .error-text {
    flex: 1;
    min-width: 0;
}

.card-errors .error-text strong {
    display: block;
    color: #e65100;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.card-errors .error-text p {
    color: #bf360c;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Compact button for donation widget */
.donation-widget-form .btn-large {
    padding: 0.65rem 1.5rem;
    font-size: 1rem;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.donation-success-message {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 12px;
    margin-top: 1rem;
}

.donation-success-message .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.donation-success-message h3 {
    color: #155724;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.donation-success-message p {
    color: #155724;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .donation-widget {
        bottom: 10px;
        right: 10px;
    }
    
    .donation-widget-content {
        width: calc(100vw - 40px);
        right: -20px;
        max-width: 280px;
    }
    
    .donation-widget-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer {
    background: linear-gradient(135deg, #E8F4E0 0%, #D8E8D0 100%);
    color: #1A140E;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
    border-top: 3px solid rgba(210, 105, 30, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--ochre);
    font-weight: 600;
}

.footer-tagline {
    color: #2C1F14; /* Dark brown for better readability on light background */
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-section a {
    display: block;
    color: #2C1F14; /* Dark brown for better readability on light background */
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--ochre);
}

.footer-contact-qr {
    text-align: center;
}

.footer-qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.footer-qr-code canvas,
.footer-qr-code img {
    display: block;
    max-width: 100%;
    height: auto;
}

.footer-email {
    color: #2C1F14;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Footer Trust Badges Section - Improved Contrast */
.footer-trust-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.footer-trust-section .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    font-weight: 600;
    color: #2C1F14;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.footer-trust-section .trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: rgba(210, 105, 30, 0.3);
}

.footer-trust-section .trust-badge-highlight {
    background: linear-gradient(135deg, #FFE0B2 0%, #FFCC80 100%);
    border-color: rgba(210, 105, 30, 0.4);
    box-shadow: 0 3px 12px rgba(210, 105, 30, 0.2);
}

.footer-trust-section .trust-badge-highlight:hover {
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.3);
}

.trust-icon {
    flex-shrink: 0;
}

.aus-flag {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(210, 105, 30, 0.2);
    color: #2C1F14; /* Dark brown for better readability on light background */
    font-size: 0.9rem;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--charcoal);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

/* Confetti Animation */
.confetti-piece {
    position: fixed;
    width: 10px;
    height: 10px;
    top: -10px;
    z-index: 9999;
    animation: confettiFall linear forwards;
    pointer-events: none;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Australian Celebration Animation */
.aussie-celebration {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 10000;
    text-align: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.aussie-celebration.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.aussie-animal {
    font-size: 4rem;
    animation: aussieBounce 0.6s ease-in-out 3;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes aussieBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.aussie-text {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #D2691E;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
    animation: textPop 0.3s ease-out 0.3s both;
}

@keyframes textPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Spinner */
.spinner {
    animation: spin 1s linear infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .call-small {
        font-size: 1.8rem;
    }
    
    .call-medium {
        font-size: 2.5rem;
    }
    
    .call-large {
        font-size: 3.5rem;
    }
    
    .subtitle-line {
        font-size: 1.1rem;
    }

    .hero-brand {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-mascot-inline {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .trust-bar {
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        margin: 1.5rem auto 2rem;
    }
    
    .trust-badge-text {
        font-size: 0.85rem;
    }
    
    .trust-badge-icon {
        font-size: 1rem;
    }
    
    .btn-hero-primary {
        padding: 1.125rem 2rem;
        font-size: 1.125rem;
    }
    
    .hero-cta-note {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    .hero-privacy-inline {
        margin: 1.5rem 1rem 0;
        padding: 0.625rem 1rem;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .privacy-inline-text {
        font-size: 0.8rem;
    }

    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: none;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    /* Adjust hero elements for mobile */
    .hero-trust-signals {
        gap: 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    .hero-privacy-promise {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .privacy-icon-large {
        margin: 0 auto;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        width: 100%;
        max-width: none;
    }

    .generator-card,
    .claim-card,
    .found-card {
        padding: 2rem 1.5rem;
    }

    .qr-code-display {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }
    
    .step-connector {
        display: none !important;
    }
    
    .next-steps {
        gap: 1rem;
    }
    
    .next-step {
        padding: 0.875rem;
    }
    
    .step-emoji {
        font-size: 1.5rem;
    }

    .size-select {
        width: 100% !important;
        max-width: 100% !important;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .toast {
        right: 1rem;
        left: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .call-small {
        font-size: 1.5rem;
    }
    
    .call-medium {
        font-size: 2rem;
    }
    
    .call-large {
        font-size: 2.8rem;
    }
    
    .hero-brand {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-mascot-inline {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .trust-bar {
        gap: 0.4rem;
        padding: 0.625rem 1rem;
        margin: 1.25rem auto 1.75rem;
    }
    
    .trust-badge-text {
        font-size: 0.75rem;
    }
    
    .trust-badge-divider {
        font-size: 0.75rem;
        margin: 0 0.15rem;
    }
    
    .btn-hero-primary {
        width: 100%;
        max-width: 100%;
        padding: 1.125rem 2rem;
        font-size: 1rem;
        min-height: 56px;
        border-radius: 12px;
        /* Touch optimization */
        -webkit-tap-highlight-color: rgba(210, 105, 30, 0.3);
        touch-action: manipulation;
    }
    
    .hero-cta-note {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    /* Instructions - More compact on mobile */
    .next-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1rem;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }

    /* Sections - Better spacing */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .generator-card {
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .qr-instructions {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    /* Form Elements - Touch-friendly */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem 1rem;
        border-radius: 10px;
    }
    
    textarea {
        min-height: 100px;
    }
    
    /* All buttons touch-friendly */
    button,
    .btn-primary,
    .btn-secondary,
    .btn-large {
        min-height: 48px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }
    
    /* Testimonials - Stack on mobile */
    .testimonials-section {
        padding: 2rem 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Trust Indicators - Stack on mobile */
    .trust-indicators-section {
        padding: 2rem 1rem;
    }
    
    .trust-indicators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-indicator-card {
        padding: 1.5rem;
    }
    
    /* Footer Trust Badges - Stack on mobile */
    .footer-trust-section {
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .trust-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .trust-icon {
        width: 20px;
        height: 20px;
    }
}

