/* CaseMate - Coastal Calm Theme */
/* Professional, Trustworthy, Australian */

:root {
    /* Coastal Calm Palette */
    --deep-ocean: #0F172A;
    --eucalyptus: #5D8E7E;
    --red-earth: #D97757;
    --bone-white: #F9F9F7;
    --pure-white: #FFFFFF;
    --border-light: #E2E8F0;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    
    /* Semantic Colours */
    --primary-color: var(--eucalyptus);
    --primary-dark: #4A7566;
    --primary-light: #7BA898;
    --secondary-color: var(--deep-ocean);
    --accent-color: var(--red-earth);
    --success-color: #22C55E;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    
    /* Background */
    --bg-primary: var(--bone-white);
    --bg-secondary: var(--pure-white);
    --bg-accent: rgba(93, 142, 126, 0.08);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.15);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Public Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--deep-ocean);
    letter-spacing: -0.02em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--primary-dark);
}

/* Navigation - Coastal Calm */
.top-nav {
    background: var(--pure-white);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.9375rem;
}

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

.nav-cta {
    background: var(--deep-ocean);
    color: var(--pure-white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section - Coastal Calm */
.hero-section {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(93, 142, 126, 0.08) 100%);
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(93, 142, 126, 0.12) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    border-radius: 50%;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--deep-ocean);
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Buttons - Coastal Calm */
.btn-hero-primary {
    background: var(--deep-ocean);
    color: var(--pure-white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--text-primary);
}

.btn-hero-secondary {
    background: var(--pure-white);
    color: var(--deep-ocean);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
    cursor: pointer;
}

.btn-hero-secondary:hover {
    border-color: var(--eucalyptus);
    color: var(--eucalyptus);
    transform: translateY(-2px);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--eucalyptus);
    display: block;
    font-family: 'Manrope', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Service Cards - Coastal Calm */
.services-section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card-modern {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--eucalyptus) 0%, var(--primary-light) 100%);
}

.service-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon-modern {
    width: 64px;
    height: 64px;
    background: var(--bg-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--eucalyptus);
    margin-bottom: 1.5rem;
}

.service-card-modern h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.service-card-modern p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-badge {
    display: inline-block;
    background: var(--bg-accent);
    color: var(--eucalyptus);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--eucalyptus);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.service-link:hover {
    gap: 0.875rem;
}

/* Features Section */
.features-section {
    background: var(--pure-white);
    padding: 6rem 2rem;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--bg-accent);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--deep-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Pricing Section - Coastal Calm */
.pricing-section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--pure-white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--eucalyptus);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

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

.pricing-badge {
    background: var(--eucalyptus);
    color: var(--pure-white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--deep-ocean);
    margin-bottom: 0.5rem;
    font-family: 'Manrope', sans-serif;
}

.pricing-period {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: var(--eucalyptus);
}

.pricing-cta {
    display: block;
    background: var(--deep-ocean);
    color: var(--pure-white);
    padding: 1.125rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

/* Testimonials - Coastal Calm */
.testimonials-section {
    background: var(--deep-ocean);
    color: var(--pure-white);
    padding: 6rem 2rem;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--eucalyptus);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--pure-white);
}

.testimonial-info h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
    color: var(--deep-ocean);
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(93, 142, 126, 0.1) 100%);
    text-align: center;
}

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

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Footer - Coastal Calm */
.modern-footer {
    background: var(--deep-ocean);
    color: var(--pure-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.footer-section h4 {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.875rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Form Styles - Coastal Calm */
.card {
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

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

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: var(--text-primary);
}

.label-required::after {
    content: ' *';
    color: var(--danger-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.9375rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-primary);
    transition: all 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--eucalyptus);
    box-shadow: 0 0 0 4px rgba(93, 142, 126, 0.15);
    background: var(--pure-white);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.form-help {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Progress Steps - Coastal Calm */
.progress-container {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

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

.progress-step.completed .step-number {
    background: var(--eucalyptus);
    border-color: var(--eucalyptus);
    color: var(--pure-white);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.625rem;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.875rem;
    text-align: center;
    color: var(--text-secondary);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--eucalyptus);
    font-weight: 600;
}

/* Alerts - Coastal Calm */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert i {
    font-size: 1.375rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.alert-info {
    background: rgba(93, 142, 126, 0.1);
    color: var(--primary-dark);
    border-left: 4px solid var(--eucalyptus);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400E;
    border-left: 4px solid var(--warning-color);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
    border-left: 4px solid var(--danger-color);
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    border-left: 4px solid var(--success-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--deep-ocean);
    color: var(--pure-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--pure-white);
    color: var(--deep-ocean);
    border: 2px solid var(--border-light);
}

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

.btn-success {
    background: var(--eucalyptus);
    color: var(--pure-white);
}

.btn-success:hover {
    background: var(--primary-dark);
}

.btn-danger {
    background: var(--danger-color);
    color: var(--pure-white);
}

/* Safety Banner - Coastal Calm */
.safety-banner {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
}

.safety-banner-icon {
    font-size: 2.5rem;
    color: var(--danger-color);
    flex-shrink: 0;
}

.safety-banner h3 {
    color: #991B1B;
    margin-bottom: 0.75rem;
}

.safety-banner ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

/* Emergency Exit Button */
.emergency-exit {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
    background: var(--danger-color);
    color: var(--pure-white);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: none;
}

.emergency-exit:hover {
    background: #DC2626;
    transform: translateY(-2px);
}

/* Chatbot Styles - Coastal Calm */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 400px;
    max-width: calc(100vw - 48px);
    height: 600px;
    max-height: calc(100vh - 140px);
    background: var(--pure-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
}

.chatbot-container.open {
    display: flex;
}

.chatbot-header {
    background: var(--deep-ocean);
    color: var(--pure-white);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
}

.chatbot-controls button {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--pure-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 0.5rem;
}

.chatbot-controls button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.chatbot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-primary);
}

.chatbot-messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bot-message, .user-message {
    display: flex;
    gap: 0.875rem;
    animation: fadeInUp 0.3s ease;
}

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

.bot-avatar {
    width: 40px;
    height: 40px;
    background: var(--eucalyptus);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    flex-shrink: 0;
}

.user-message {
    flex-direction: row-reverse;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.message-content {
    background: var(--pure-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    max-width: 80%;
    box-shadow: var(--shadow-sm);
}

.user-message .message-content {
    background: var(--deep-ocean);
    color: var(--pure-white);
}

.quick-questions {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid var(--border-light);
}

.quick-question {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-secondary);
}

.quick-question:hover {
    background: var(--eucalyptus);
    color: var(--pure-white);
    border-color: var(--eucalyptus);
}

.chatbot-footer {
    padding: 1rem;
    background: var(--pure-white);
    border-top: 1px solid var(--border-light);
}

.chatbot-input-container {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
}

.chatbot-input-container input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
}

.chatbot-input-container input:focus {
    outline: none;
    border-color: var(--eucalyptus);
}

.chatbot-input-container button {
    width: 48px;
    height: 48px;
    background: var(--eucalyptus);
    color: var(--pure-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.chatbot-input-container button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.chatbot-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.chatbot-trigger-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: var(--eucalyptus);
    color: var(--pure-white);
    border: none;
    border-radius: 50%;
    font-size: 1.625rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 9998;
    transition: all 0.3s ease;
}

.chatbot-trigger-float:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.chatbot-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--red-earth);
    color: var(--pure-white);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
    
    .chatbot-container {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    
    .emergency-exit {
        top: auto;
        bottom: 90px;
        right: 16px;
        padding: 0.625rem 1.125rem;
        font-size: 0.875rem;
    }
}

/* Trademark-specific styles */
.trademark-class-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.trademark-class-item {
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trademark-class-item:hover {
    border-color: var(--eucalyptus);
}

.trademark-class-item.selected {
    border-color: var(--eucalyptus);
    background: rgba(93, 142, 126, 0.08);
}

.trademark-class-number {
    font-weight: 700;
    color: var(--eucalyptus);
    font-size: 1.25rem;
}

.trademark-fee-calculator {
    background: var(--bg-accent);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.trademark-fee-calculator h4 {
    margin-bottom: 1rem;
}

.trademark-fee-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.trademark-fee-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-ocean);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--eucalyptus);
}

/* Print Styles */
@media print {
    header, footer, .emergency-exit, .wizard-navigation, .progress-container, .chatbot-container, .chatbot-trigger-float {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #000;
    }
}
