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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Navigation */
.nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-symbol {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-nav {
    background: #2563eb;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-nav:hover {
    background: #1d4ed8 !important;
}

/* Navigation Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger animation when active */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    background: #1e3a8a;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

/* Trust Badge */
.trust-badge {
    background: #10b981;
    color: white;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.trust-icon {
    margin-right: 0.5rem;
    font-weight: bold;
    font-size: 1rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* FREE Highlighting */
.highlight-free {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    color: white;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}

.hero-description strong {
    font-weight: 600;
    opacity: 1;
    color: white;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    padding: 0.5rem 0;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: white;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    flex-shrink: 0;
    object-fit: contain;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: #f59e0b;
    color: white;
}

.cta-button.primary:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-button.secondary:hover {
    background: #2563eb;
    color: white;
}

/* Section Styles */
section {
    padding: 80px 0;
    scroll-margin-top: 80px; /* Account for fixed navigation */
}

section h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #374151;
}

section p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* What Is Section */
.what-is {
    background: #f9fafb;
    text-align: center;
}

.what-is p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

/* How It Works Section */
.how-it-works {
    background: white;
    text-align: center;
}

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

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.how-it-works .benefits {
    text-align: center;
    margin-top: 1rem;
    color: #6b7280;
}

/* What You'll Receive Section */
.receive {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.receive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="%23f1f5f9" fill-opacity="0.4"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    pointer-events: none;
}

.receive .container {
    position: relative;
    z-index: 1;
}

.receive h2 {
    position: relative;
}

.receive h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.receive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.receive-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1), 0 1px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.receive-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
}

.receive-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #06b6d4, #10b981);
    border-radius: 20px 20px 0 0;
}

.receive-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.receive-item:hover::after {
    opacity: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.receive-icon {
    margin: 0 auto 1.5rem;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 18px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.receive-item:hover .receive-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #06b6d4 100%);
}

.receive-icon svg {
    width: 38px;
    height: 38px;
    stroke: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.receive-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.receive-item p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.receive-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #bfdbfe;
    text-align: center;
    margin-top: 1rem;
}

.receive-note {
    font-style: italic;
    color: #1e40af;
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

/* Why Choose Section */
.why-choose {
    background: #f8fafc;
    position: relative;
    text-align: center;
}

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

.benefit {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.benefit-icon {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.benefit p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.process {
    background: #f9fafb;
}

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

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.process-day {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.guarantee {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    color: #92400e;
}

/* Contact Form Section */
.contact {
    background: white;
    text-align: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-guarantee {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    align-self: start;
}

.contact-guarantee h3 {
    color: #0c4a6e;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-align: center;
}

.guarantee-list {
    display: grid;
    gap: 1rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.guarantee-check {
    color: #059669;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.guarantee-text {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.contact-form {
    text-align: left;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-guarantee {
        order: 1;
    }
    
    .contact-form {
        order: 2;
    }
}

.contact-form .cta-button {
    display: block;
    margin: 2rem auto 1rem;
    text-align: center;
}

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

.form-section h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

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

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

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

/* About Section */
.about {
    background: #f9fafb;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

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

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

.stat strong {
    display: block;
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat span {
    color: #6b7280;
    font-size: 1rem;
}

/* Google Reviews Section */
.testimonials {
    background: white;
    padding: 4rem 0;
}

.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.25rem;
    color: #1f2937;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rating-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.stars {
    margin-bottom: 0.5rem;
}

.star {
    font-size: 1.5rem;
    color: #fbbf24;
    margin: 0 1px;
}

.star.filled {
    color: #f59e0b;
}

.review-count {
    font-size: 0.875rem;
    color: #6b7280;
}

.testimonials-carousel {
    position: relative;
    margin-top: 2rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 1rem;
}

.carousel-btn {
    background: #2563eb;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.carousel-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2563eb;
}

.dot:hover {
    background: #6b7280;
}

.dot.active:hover {
    background: #1d4ed8;
}

.google-review {
    background: #ffffff;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.google-review:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.75rem;
    color: #6b7280;
}

.review-stars {
    display: flex;
    gap: 1px;
}

.review-stars .star {
    font-size: 1rem;
    color: #f59e0b;
}

.review-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

/* FAQ Section */
.faq {
    background: #f9fafb;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    background: white;
    font-weight: 600;
    color: #374151;
    border: none;
    position: relative;
    margin: 0;
    width: 100%;
    text-align: left;
    font-size: inherit;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question:focus {
    outline: 2px solid #2563eb;
    outline-offset: -2px;
}


.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    background: white;
}

/* Final CTA Section */
.final-cta-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 16px;
    margin-top: 4rem;
}

.final-cta-content h2 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Site Footer */
.site-footer {
    background: #0f172a;
    color: #e5e7eb;
    padding: 64px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    color: #f9fafb;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
}

.footer-brand p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.footer-heading {
    color: #f9fafb;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 0;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-contact svg {
    color: #60a5fa;
    flex-shrink: 0;
}

.footer-contact a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.footer-contact span {
    color: #cbd5e1;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 48px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
    text-align: center;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 48px 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .footer-brand,
    .footer-contact,
    .footer-links,
    .footer-legal {
        text-align: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 32px 0 0;
    }
    
    .footer-main {
        gap: 24px;
    }
    
    .footer-brand h3 {
        font-size: 1.1rem;
    }
}

.footer a {
    color: #60a5fa;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 1rem 0;
        gap: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .cta-nav {
        margin: 0.5rem 2rem;
        text-align: center;
        border-radius: 5px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .benefit h3 {
        font-size: 1.2rem;
    }
    
    .receive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .receive-item {
        padding: 1.5rem 1rem;
    }
    
    .receive-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .receive-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .google-reviews-header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .google-review {
        padding: 1.25rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        gap: 0.8rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

/* Testimonials Carousel Fix - Force 3-column layout */
.testimonials-carousel {
    position: relative;
    margin-top: 2rem;
    width: 100% !important;
}

.testimonials .carousel-container {
    overflow: hidden !important;
    width: 100% !important;
}

.testimonials .carousel-track {
    display: flex !important;
    width: 100% !important;
}

.testimonials .carousel-slide {
    min-width: 100% !important;
    flex-shrink: 0 !important;
    display: block !important;
    width: 100% !important;
}

.testimonials .carousel-slide > .google-reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
    width: 100% !important;
    align-items: start !important;
}

.testimonials .google-review {
    min-width: 0 !important;
    width: 100% !important;
    display: block !important;
}

@media (max-width: 1024px) {
    .testimonials .carousel-slide > .google-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .testimonials .carousel-slide > .google-reviews-grid {
        grid-template-columns: 1fr !important;
    }
}

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

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

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