.elementor-2436 .elementor-element.elementor-element-9a3eb7e{--display:flex;}.elementor-2436 .elementor-element.elementor-element-e3e65c3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-67f1ec6 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Brand Colors */
:root {
    --brand-purple: #8B5CF6;
    --brand-coral: #FF6B6B;
    --brand-coral-hover: #FF5252;
    --brand-navy: #1e293b;
    --brand-yellow: #FCD34D;
    --brand-yellow-hover: #F59E0B;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Page Wrapper */
.page-wrapper {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    padding: 4rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-icon {
    width: 64px;
    height: 64px;
    color: var(--brand-purple);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

/* Calculator Section */
.calculator-section {
    padding: 4rem 0;
}

.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Calculator Card */
.calculator-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

.card-content {
    padding: 1.5rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.input-field,
.select-field {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field:focus,
.select-field:focus {
    outline: none;
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.calculate-btn {
    width: 100%;
    background: var(--brand-coral);
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calculate-btn:hover {
    background: var(--brand-coral-hover);
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.results-container {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    text-align: center;
}

.result-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--brand-purple);
}

.result-text {
    color: var(--gray-600);
    margin: 0.5rem 0;
}

.result-subtext {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.error-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    color: #dc2626;
    text-align: center;
}

/* SERP Container */
.serp-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.serp-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Map Pack */
.map-pack {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.map-pack-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.map-icon {
    width: 20px;
    height: 20px;
    color: #dc2626;
}

.map-title {
    font-weight: 500;
    color: var(--gray-900);
}

.business-listings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.business-listing {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: var(--gray-50);
}

.business-listing.featured {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.listing-number {
    background: #dc2626;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

.listing-content {
    flex: 1;
}

.business-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.stars .star {
    width: 16px;
    height: 16px;
}

.stars .star.filled {
    fill: #fbbf24;
    stroke: #fbbf24;
}

.stars .star:not(.filled) {
    fill: none;
    stroke: var(--gray-300);
}

.rating-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-left: 0.25rem;
}

.placeholder-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-style: italic;
}

.business-details {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Organic Result */
.organic-result {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.result-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.25rem;
    cursor: pointer;
}

.result-title:hover {
    text-decoration: underline;
}

.result-url {
    color: #16a34a;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.result-description {
    color: var(--gray-600);
    line-height: 1.5;
}

.organic-rating {
    margin-top: 0.75rem;
}

/* FAQ Section */
.faq-section {
    background: var(--gray-50);
    padding: 4rem 0;
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--gray-600);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.cta-button {
    background: var(--brand-coral);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--brand-coral-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .calculator-section {
        padding: 2rem 0;
    }
    
    .faq-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .calculator-container,
    .faq-container {
        padding: 0 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .hero-icon {
        width: 48px;
        height: 48px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}/* End custom CSS */