/* ApexDemands.com - Main Stylesheet */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-navy: #0A1F44;
    --secondary-white: #FFFFFF;
    --accent-light-blue: #3A6EA5;
    --dark-gray: #333333;
    --light-gray: #F7F7F7;
    
    /* Typography */
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--secondary-white);
}

body.body-no-scroll {
    overflow: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1.1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--accent-light-blue);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Navigation */
.navbar {
    background: var(--secondary-white);
    box-shadow: 0 2px 10px rgba(10, 31, 68, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
    gap: 2rem;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: var(--accent-light-blue);
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--accent-light-blue);
}

.nav-link.btn-primary {
    background: var(--primary-navy);
    color: var(--secondary-white);
}

.nav-link.btn-primary:hover {
    background: var(--accent-light-blue);
    color: var(--secondary-white);
}

.nav-link.btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.nav-link.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--secondary-white);
    transform: translateY(-2px);
}

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

.nav-contact {
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    text-align: center;
}

.nav-contact .nav-link {
    margin: 0.25rem 0;
    font-size: 1rem;
}

.nav-contact .contact-email {
    text-decoration: underline;
}

.nav-contact .contact-email:hover {
    color: var(--accent-light-blue);
}

.nav-contact-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-contact-right .nav-link {
    padding: 4px 8px;
    font-size: 0.9rem;
}

.nav-contact-right .contact-email {
    text-decoration: underline;
}

.nav-contact-right .contact-email:hover {
    color: var(--accent-light-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-navy);
    color: var(--secondary-white);
}

.btn-primary:hover {
    background: var(--accent-light-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--secondary-white);
    transform: translateY(-2px);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-light-blue) 100%);
    color: var(--secondary-white);
    padding: 120px 0 80px;
    text-align: center;
}

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

.hero-title {
    color: var(--secondary-white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.gray-bg {
    background: var(--light-gray);
}

/* Grid Layouts */
.features-grid,
.steps-grid,
.serve-grid,
.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.steps-grid,
.serve-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

/* Cards */
.feature-card,
.step-card,
.serve-card,
.testimonial-card {
    background: var(--secondary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.step-card:hover,
.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(10, 31, 68, 0.15);
}

.feature-icon,
.serve-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-navy);
    color: var(--secondary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Pricing Page Styles */
.main-pricing {
    padding: 60px 0;
}

.pricing-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.price-display {
    text-align: center;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(10, 31, 68, 0.1);
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
}

.price-label {
    font-size: 1.2rem;
    color: var(--accent-light-blue);
    margin-top: 0.5rem;
    font-weight: 300;
}

.pricing-features h2 {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

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

.guarantee {
    margin-top: 1rem;
    font-style: italic;
    color: var(--accent-light-blue);
    font-size: 0.9rem;
}

/* Volume Discounts */
.discount-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tier-card {
    background: var(--secondary-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card.popular {
    border: 2px solid var(--accent-light-blue);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-light-blue);
    color: var(--secondary-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tier-header h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.tier-volume {
    color: var(--accent-light-blue);
    font-weight: 500;
}

.tier-price {
    text-align: center;
    margin-bottom: 2rem;
}

.tier-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.tier-price .period {
    display: block;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.tier-price .savings {
    display: block;
    color: var(--accent-light-blue);
    font-weight: 600;
    margin-top: 0.5rem;
}

.tier-features ul {
    list-style: none;
}

.tier-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tier-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-light-blue);
    font-weight: bold;
}

.volume-note {
    background: var(--secondary-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-light-blue);
    margin-top: 2rem;
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.1);
    border-radius: 12px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--secondary-white);
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
    background: var(--primary-navy);
    color: var(--secondary-white);
    font-weight: 600;
    position: sticky;
    top: 0;
}

.feature-column {
    text-align: left !important;
    width: 25%;
}

.apex-column {
    background: rgba(58, 110, 165, 0.1);
    color: var(--primary-navy);
    font-weight: 600;
}

.apex-cell {
    background: rgba(58, 110, 165, 0.05);
    color: var(--primary-navy);
    font-weight: 600;
}

.comparison-table tr:hover {
    background: var(--light-gray);
}

.comparison-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* ROI Calculator */
.calculator {
    background: var(--secondary-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-navy);
}

.input-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: 1rem;
    background: var(--secondary-white);
}

.calculator-results {
    border-top: 2px solid var(--light-gray);
    padding-top: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.result-item.savings {
    background: rgba(58, 110, 165, 0.1);
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    color: var(--primary-navy);
}

.result-label {
    font-weight: 500;
}

.result-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-navy);
}

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

.payment-method {
    background: var(--secondary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.1);
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-method h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.payment-features ul {
    list-style: none;
    margin-top: 1rem;
}

.payment-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.payment-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-light-blue);
    font-weight: bold;
}

/* CTA Guarantee */
.cta-guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: center;
}

/* Detailed Steps (How It Works Page) */
.detailed-steps {
    padding: 60px 0;
}

.steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.step-detail.reverse {
    grid-template-columns: 1fr 2fr;
}

.step-detail.reverse .step-content {
    order: 2;
}

.step-detail.reverse .step-visual {
    order: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: var(--primary-navy);
    color: var(--secondary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h2 {
    margin: 0;
}

.step-list {
    list-style: none;
    margin: 1rem 0 2rem;
}

.step-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-light-blue);
    font-weight: bold;
}

.submission-methods,
.deliverables,
.ready-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.method,
.deliverable,
.feature {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-light-blue);
}

.method h4,
.deliverable h4,
.feature h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-visual {
    text-align: center;
    padding: 2rem;
}

.visual-icon {
    font-size: 6rem;
    margin-bottom: 1rem;
    display: block;
}

.step-visual p {
    font-style: italic;
    color: var(--accent-light-blue);
    font-weight: 400;
}

/* Timeline */
.timeline-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.timeline-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.timeline-time {
    background: var(--primary-navy);
    color: var(--secondary-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    font-size: 0.9rem;
    margin: 0;
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--accent-light-blue);
    flex-shrink: 0;
}

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

.qa-item {
    background: var(--secondary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.qa-item:hover {
    transform: translateY(-5px);
}

.qa-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.qa-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

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

.faq-item {
    background: var(--secondary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.1);
}

.faq-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.6;
}

.faq-item a {
    color: var(--accent-light-blue);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.testimonial-author strong {
    color: var(--primary-navy);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--accent-light-blue);
    font-size: 0.9rem;
}

/* CTA Sections */
.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.final-cta {
    background: var(--primary-navy) !important;
    color: var(--secondary-white) !important;
    text-align: center !important;
    padding: 80px 0 !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

.final-cta .container {
    max-width: var(--container-max-width) !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.cta-content {
    max-width: 800px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.final-cta h2,
.final-cta p {
    color: var(--secondary-white) !important;
    text-align: center !important;
}

.cta-buttons {
    display: flex !important;
    gap: 1rem;
    justify-content: center !important;
    align-items: center !important;
    margin: 2rem auto 0 !important;
    flex-wrap: wrap;
    max-width: 100% !important;
    text-align: center !important;
}

.cta-buttons .btn {
    flex-shrink: 0 !important;
    min-width: 200px !important;
    position: relative !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    display: inline-block !important;
    margin: 0 !important;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--secondary-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-white);
    margin-bottom: 1rem;
}

.footer-section p {
    font-weight: 300;
    font-size: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: var(--secondary-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-light-blue);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-light-blue);
}

.file-upload {
    border: 2px dashed var(--accent-light-blue);
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.file-upload:hover {
    background: rgba(58, 110, 165, 0.1);
}

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

.file-upload-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent-light-blue);
    color: var(--secondary-white);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.file-upload-button:hover {
    background: var(--primary-navy);
}

/* File Upload Drag States */
.file-upload.drag-over {
    background: rgba(58, 110, 165, 0.2);
    border-color: var(--primary-navy);
}

.file-upload-text {
    margin-top: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
}



/* Uploaded Files List */
.uploaded-file-list {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.uploaded-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: var(--light-gray);
    border-radius: 4px;
    font-size: 0.9rem;
}

.uploaded-file-item.folder-file {
    background: rgba(58, 110, 165, 0.1);
    border-left: 3px solid var(--accent-light-blue);
}

.uploaded-file-item.renamed-file {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
}

.uploaded-file-item.folder-file.renamed-file {
    background: linear-gradient(90deg, rgba(58, 110, 165, 0.1) 50%, rgba(255, 193, 7, 0.1) 50%);
    border-left: 3px solid #ffc107;
}

.uploaded-file-item span {
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 1rem;
}

.remove-file-btn {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s ease;
}

.remove-file-btn:hover {
    background: #c82333;
}

/* Upload Menu */
.upload-menu {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-width: 160px;
}

.upload-menu-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease;
    font-size: 0.9rem;
}

.upload-menu-item:hover {
    background: var(--light-gray);
}

.upload-menu-item span {
    font-size: 1.1rem;
}

/* Tables */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--secondary-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-table th {
    background: var(--primary-navy);
    color: var(--secondary-white);
    font-weight: 600;
}

.pricing-table tr:hover {
    background: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 1450px) {
    .nav-container {
        gap: 0.5rem;
    }
    .nav-menu {
        gap: 0.4rem;
    }
    .nav-link {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    .nav-logo a {
        font-size: 1.5rem;
    }
    .nav-contact-right {
        gap: 0.25rem;
    }
    .nav-contact-right .nav-link {
        padding: 4px 6px;
        font-size: 0.8rem;
    }
    

}

@media (max-width: 768px) {
    .uploaded-file-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .uploaded-file-item span {
        word-break: break-all;
        white-space: normal;
        margin-right: 0;
    }
    
    .remove-file-btn {
        align-self: flex-end;
    }
}

@media (max-width: 1200px) {
    .nav-contact-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        min-height: 70px;
        padding: 10px 20px;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background: var(--secondary-white);
        padding: 1rem 0;
        border-top: 1px solid var(--light-gray);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link {
        width: 100%;
        padding: 0.75rem 20px;
        text-align: left;
    }
    .nav-menu [data-auth-state] a {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .nav-menu [data-auth-state] {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 0.5rem 20px;
    }
    .nav-menu .btn-primary, .nav-menu .btn-secondary {
        text-align: center;
        width: 100%;
        margin: 0.5rem 0;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .nav-contact-right {
        display: none;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
        text-align: center;
    }

    .features-grid,
    .steps-grid,
    .serve-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Pricing Page Responsive */
    .pricing-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .discount-tiers {
        grid-template-columns: 1fr;
    }

    .tier-card.popular {
        transform: none;
    }

    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    /* How It Works Responsive */
    .step-detail,
    .step-detail.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .step-detail.reverse .step-content,
    .step-detail.reverse .step-visual {
        order: unset;
    }

    .step-header {
        justify-content: center;
    }

    .timeline-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline-arrow {
        transform: rotate(90deg);
    }

    .submission-methods,
    .deliverables,
    .ready-features {
        grid-template-columns: 1fr;
    }

    .qa-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .radio-card {
        flex-basis: 100%;
    }
    .radio-card input[type="radio"] {
        top: 1rem;
        left: 1rem;
    }
    .radio-title,
    .radio-description {
        padding-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .step-number-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .visual-icon {
        font-size: 4rem;
    }

    .timeline-item {
        min-width: unset;
    }

    .price-amount {
        font-size: 3rem;
    }

    .comparison-table-container {
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--secondary-white);
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--accent-light-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    .hero {
        background: none;
        color: var(--dark-gray);
    }
}

/* Payment Elements */
#payment-element {
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    padding: 1rem;
    background: var(--secondary-white);
    margin-top: 0.5rem;
}

#payment-errors {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.payment-options-inline {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.payment-options-inline label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

#stripe-payment-section {
    display: block;
}

/* Success Page Styles */
.success-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.success-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
}

.success-section h1 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.success-details {
    margin: 3rem 0;
}

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

.next-steps .step {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.next-steps .step h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.next-steps .step p {
    margin: 0;
    color: var(--dark-gray);
}

.contact-info {
    background: var(--secondary-white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    margin: 3rem 0;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

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

.contact-item a {
    color: var(--accent-light-blue);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Form Progress Styles */
.form-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e1e5e9;
    z-index: -1;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.active::after {
    background: var(--accent-light-blue);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e1e5e9;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.progress-step.active .step-number {
    background: var(--accent-light-blue);
    color: var(--secondary-white);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.progress-step.active .step-label {
    color: var(--accent-light-blue);
}

/* Form Steps */
.form-step {
    display: none;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

/* Order Summary */
.order-summary {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 0;
    border-top: 2px solid var(--accent-light-blue);
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Authentication Pages */
.auth-section {
    padding: 120px 0 80px;
    background: var(--light-gray);
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.auth-form-container {
    background: var(--secondary-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(10, 31, 68, 0.1);
}

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

.auth-header h1 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

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

.auth-form {
    width: 100%;
}

.password-requirements {
    margin-top: 0.5rem;
}

.password-requirements small {
    color: var(--accent-light-blue);
    font-size: 0.85rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.form-actions {
    margin: 2rem 0;
    text-align: center;
}



.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e5e9;
    z-index: 1;
}

.auth-divider span {
    background: var(--secondary-white);
    padding: 0 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

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

.auth-benefits {
    background: var(--secondary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.05);
}

.auth-benefits h3 {
    color: var(--primary-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.benefit-content h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-content p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-preview {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.pricing-preview h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-item:last-child {
    border-bottom: none;
}

.pricing-preview small {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--accent-light-blue);
    font-style: italic;
}

.security-notice {
    background: var(--primary-navy);
    color: var(--secondary-white);
    padding: 3rem 0;
    text-align: center;
}

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

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

.security-notice h3 {
    color: var(--secondary-white);
    margin-bottom: 1rem;
}

.security-notice p {
    color: var(--secondary-white);
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Error and Success Messages */
.error-message {
    background: #fdf2f2;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    text-align: center;
}

.success-message {
    background: #f0f9f0;
    border: 1px solid #27ae60;
    color: #27ae60;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    text-align: center;
}

/* Navigation Auth States */
[data-auth-state="logged-in"] {
    display: none;
}

[data-auth-state="logged-out"] {
    display: block;
}

/* Dashboard Styles (for future dashboard page) */
.dashboard-section {
    padding: 120px 0 80px;
}

.dashboard-header {
    margin-bottom: 3rem;
    text-align: center;
}

.user-welcome {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

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

.stat-card {
    background: var(--secondary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.1);
    text-align: center;
}

.stat-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.recent-cases {
    background: var(--secondary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.1);
}

.case-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.case-item:last-child {
    border-bottom: none;
}

.case-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.case-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.case-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-status.completed {
    background: #e8f5e8;
    color: #27ae60;
}

.case-status.in-progress {
    background: #fff3cd;
    color: #856404;
}

.case-status.pending {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive Design for Auth Pages */
@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .auth-form-container,
    .auth-benefits {
        padding: 2rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .benefit-icon {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 100px 0 60px;
    }

    .auth-form-container,
    .auth-benefits {
        padding: 1.5rem;
    }
}

/* Complete fix for invisible elements and centering issues */
.final-cta *,
.final-cta *::before,
.final-cta *::after {
    box-sizing: border-box !important;
}

.final-cta .cta-buttons::before,
.final-cta .cta-buttons::after,
.final-cta .cta-content::before,
.final-cta .cta-content::after,
.final-cta .container::before,
.final-cta .container::after {
    display: none !important;
    content: none !important;
}

.final-cta .btn::before,
.final-cta .btn::after {
    display: none !important;
    content: none !important;
}

/* Ensure no floating or positioned elements interfere */
.final-cta * {
    float: none !important;
    position: static !important;
}

.final-cta .cta-buttons,
.final-cta .cta-content,
.final-cta .container {
    position: relative !important;
}

.final-cta .btn {
    position: relative !important;
    z-index: 10 !important;
    opacity: 1;
}

.final-cta .btn {
    margin: 0.5rem;
}

.final-cta .btn-primary {
    background: var(--secondary-white);
    color: var(--primary-navy);
}

.final-cta .btn-primary:hover {
    background: var(--light-gray);
    color: var(--primary-navy);
}

/* Firm Name Button */
.firm-name-btn {
    background: var(--primary-navy);
    color: var(--secondary-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.firm-name-btn:hover {
    background: var(--accent-light-blue);
    color: var(--secondary-white);
    text-decoration: none;
}

/* Role Selection Styling */
.role-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.radio-card {
    display: block;
    position: relative;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: var(--secondary-white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.radio-card:hover {
    border-color: var(--accent-light-blue);
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(58, 110, 165, 0.1);
}

.radio-card input[type="radio"] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-navy);
}

.radio-card input[type="radio"]:checked + .radio-title {
    color: var(--primary-navy);
    font-weight: 600;
}

.radio-card input[type="radio"]:checked ~ .radio-description {
    color: var(--dark-gray);
}

.radio-card:has(input[type="radio"]:checked) {
    border-color: var(--primary-navy);
    background: #f0f4f8;
    box-shadow: 0 4px 16px rgba(10, 31, 68, 0.15);
}

.radio-title {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    padding-right: 2.5rem;
    transition: all 0.3s ease;
}

.radio-description {
    display: block;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    padding-right: 2.5rem;
    transition: all 0.3s ease;
}

/* Mobile responsiveness for role selection */
@media (max-width: 768px) {
    .radio-card {
        padding: 1.25rem;
    }
    
    .radio-card input[type="radio"] {
        top: 1.25rem;
        right: 1.25rem;
    }
    
    .radio-title,
    .radio-description {
        padding-right: 2rem;
    }
}

.selling-points-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.selling-point {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.08);
    border-left: 4px solid var(--accent-light-blue);
}

.selling-point p {
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.selling-point p strong {
    color: var(--primary-navy);
    font-weight: 600;
}

/* Subtle Client Feedback */
.subtle-feedback {
    margin: 3rem auto 0;
    max-width: 600px;
    padding: 1.5rem;
    text-align: center;
    background: var(--secondary-white);
    border-radius: 8px;
    border: 1px solid #E0E4E8;
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.05);
}

.subtle-feedback p {
    margin-bottom: 0.75rem;
}

.subtle-feedback p:last-of-type {
    margin-bottom: 0;
}

.subtle-feedback strong {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-navy);
}

.subtle-feedback em {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.subtle-feedback cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent-light-blue);
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    max-width: 750px;
    margin: 3rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slides {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.carousel-nav {
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--accent-light-blue);
    cursor: pointer;
    padding: 1rem;
    line-height: 1;
    transition: color 0.3s ease;
    user-select: none;
}

.carousel-nav:hover:not(:disabled) {
    color: var(--primary-navy);
}

.carousel-nav:disabled {
    color: #cccccc;
    cursor: default;
}

.testimonial-carousel .subtle-feedback {
    margin: 0;
    max-width: 100%;
}

/* --- Enhanced Checkbox Styling for Redaction Request --- */
.form-group .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-navy);
    cursor: pointer;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    background: var(--light-gray);
    border-radius: 6px;
    transition: background 0.2s;
}
.form-group .checkbox-label:hover {
    background: rgba(58, 110, 165, 0.08);
}
.form-group .checkbox-label input[type="checkbox"] {
    accent-color: var(--accent-light-blue);
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    border-radius: 4px;
    border: 2px solid #e1e5e9;
    transition: border-color 0.2s;
}
@media (max-width: 600px) {
    .form-group .checkbox-label {
        font-size: 1rem;
        padding: 0.5rem 0.25rem;
    }
    .form-group .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
}

/* --- Enhanced Dropdown Styling for Claim Type --- */
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: 1.05rem;
    color: var(--primary-navy);
    background: var(--light-gray);
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    outline: none;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    box-sizing: border-box;
}
.form-group select:focus {
    border-color: var(--accent-light-blue);
    box-shadow: 0 0 0 2px rgba(58, 110, 165, 0.15);
}
.form-group label[for="claim-type"] {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-navy);
}
@media (max-width: 600px) {
    .form-group select {
        font-size: 1rem;
        padding: 10px 12px;
    }
}