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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles - Minimized for landing page */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-dropdown {
    position: relative;
}

/* Add invisible bridge to prevent gap when moving mouse to dropdown */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.75rem;
    background: transparent;
    z-index: 999;
}

.nav-dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0;
    padding-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
    background: #f3f4f6;
    color: #2563eb;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-cta-btn {
    background: #fbbf24;
    color: #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.nav-cta-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #374151;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

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

.trust-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.trust-text {
    font-size: 0.85rem;
    opacity: 0.9;
    display: block;
}

/* Mini Testimonial */
.mini-testimonial {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
    margin: 1.5rem 0;
}

.mini-testimonial p {
    font-style: italic;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.mini-testimonial-author {
    font-size: 0.875rem;
    opacity: 0.85;
    font-weight: 500;
}

/* Soft CTA */
.soft-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}

.soft-cta-text {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 500;
}

.soft-cta-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.soft-cta-link:hover {
    color: #fff;
    border-bottom-color: #fbbf24;
}

.soft-cta-divider {
    display: inline-block;
    margin: 0 1rem;
    opacity: 0.6;
}

/* Button Styles - Action-oriented */
.btn {
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: #6b7280;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

.btn-next {
    background: #10b981;
    color: white;
    width: 100%;
    margin-top: 1rem;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-next:hover {
    background: #059669;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.btn-prev {
    background: #6b7280;
    color: white;
}

.btn-prev:hover {
    background: #4b5563;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
}

/* Form Styles */
.form-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.form-header h3 {
    color: #1f2937;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.form-subheader {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

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

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.step-indicator .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.step-num {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #6b7280;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step-indicator .step.active .step-num {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.step-indicator .step.active .step-label {
    color: #2563eb;
}

.form-trust {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.form-trust p {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.form-security {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.progress-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #2563eb;
    width: 50%;
    transition: width 0.3s ease;
}

.form-step {
    display: none;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group input.valid {
    border-color: #10b981;
}

.form-group input.invalid {
    border-color: #ef4444;
}

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

.field-error {
    display: block;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    font-weight: 500;
    min-height: 1.2rem;
}

.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-navigation .btn {
    flex: 1;
}

.disclaimer {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.875rem;
    line-height: 1.4;
}

.disclaimer p {
    margin: 0 0 0.5rem 0;
    color: #64748b;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

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

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

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

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.service-btn:hover {
    background: #1d4ed8;
    color: white;
}

/* Process Section */
.process {
    padding: 4rem 0;
    background: white;
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process .step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.process .step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #2563eb;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial p {
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: #1f2937;
    font-weight: 600;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text > p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-features {
    list-style: none;
}

.about-features li {
    padding: 0.5rem 0;
    color: #374151;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #6b7280;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-subtext {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-phone {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    border-bottom-color: #fbbf24;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

.contact-icon {
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-item p {
    color: #374151;
    line-height: 1.6;
}

.contact-hours h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-hours p {
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-links a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
}

.close-btn:hover {
    color: #1f2937;
}

/* Notification */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(calc(100% + 2rem));
    transition: transform 0.3s ease;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Thank You Page Styles */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thank-you-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thank-you-content {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    display: flex;
    align-items: center;
}

.thank-you-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.thank-you-message h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.next-steps h2 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.steps .step {
    display: flex;
    gap: 1rem;
}

.steps .step-number {
    width: 40px;
    height: 40px;
    background: #fbbf24;
    color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    opacity: 0.9;
    font-size: 0.875rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.contact-details .contact-item {
    display: block;
}

.contact-details .contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.contact-details .contact-item a {
    color: #fbbf24;
    text-decoration: none;
}

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

.cta-section h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thank-you-footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.thank-you-footer .footer-content h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.thank-you-footer .footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        gap: 1rem;
        position: relative;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        gap: 0;
        background: white;
        padding: 1rem 0;
        border-top: 1px solid #e5e7eb;
        margin-top: 0.5rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #f3f4f6;
        width: 100%;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        background: #f9fafb;
    }
    
    .nav-dropdown.active .dropdown-content {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-content a {
        padding-left: 2rem;
    }
    
    .nav-cta-btn {
        order: 3;
        flex: 1;
        text-align: center;
        max-width: none;
        margin-top: 0.5rem;
    }
    
    .nav-logo {
        order: 1;
        flex: 1;
    }
    
    /* Mobile Menu Toggle */
    .nav-toggle {
        display: block !important;
        order: 2;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #374151;
        padding: 0.5rem;
        z-index: 1001;
        position: relative;
        min-width: 44px;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
        pointer-events: auto !important;
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        flex-shrink: 0;
    }
    
    .nav-toggle:active,
    .nav-toggle:focus {
        opacity: 0.7;
        outline: 2px solid #2563eb;
        outline-offset: 2px;
    }
    
    .nav-toggle:hover {
        color: #2563eb;
    }

    /* Hero Section - Form above fold on mobile */
    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        /* Swap order: form first on mobile */
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }

    /* Trust badges */
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .trust-text {
        font-size: 0.8rem;
    }
    
    /* Soft CTA */
    .soft-cta {
        padding: 1rem;
    }
    
    .soft-cta-divider {
        display: block;
        margin: 0.5rem 0;
    }

    /* Form Container */
    .form-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .step-indicator {
        gap: 1.5rem;
    }
    
    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-navigation {
        flex-direction: column;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 50px;
    }

    /* Button improvements for mobile */
    .btn {
        min-height: 50px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Sections */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Product Links Section */
    #product-links .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    #product-links .service-card {
        margin-bottom: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

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

    .contact-details {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .nav-cta-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .trust-number {
        font-size: 1.3rem;
    }
    
    .mini-testimonial {
        padding: 1rem;
    }

    .form-container {
        padding: 1.25rem;
    }
    
    .form-header h3 {
        font-size: 1.35rem;
    }

    .container {
        padding: 0 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .thank-you-message h1 {
        font-size: 2rem;
    }

    .steps .step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .notification {
        right: 1rem;
        top: 1rem;
        transform: translateX(calc(100% + 1rem));
        max-width: calc(100vw - 2rem);
        padding: 0.75rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
} 