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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 40px;
    max-width: 220px;
    object-fit: contain;
}

.compare-btn {
    background: #f97316 !important;
    color: white !important;
    padding: 12px 24px;
    border: 2px solid #f97316 !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.compare-btn:hover {
    background: #ea580c !important;
    border-color: #ea580c !important;
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.zip-compare-section {
    margin-bottom: 30px;
}

.zip-input-wrapper {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.zip-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    background: white;
}

.zip-input::placeholder {
    color: #666;
    font-weight: 400;
}

.zip-input-wrapper .compare-button,
button.compare-button {
    background: #f97316 !important;
    background-color: #f97316 !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 0 !important;
}

.zip-input-wrapper .compare-button:hover,
button.compare-button:hover {
    background: #ea580c !important;
    background-color: #ea580c !important;
    color: white !important;
}

.no-spam-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.been-here-section {
    margin-top: 20px;
}

.been-here-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.quotes-link {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.quotes-link:hover {
    opacity: 0.8;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 3;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin-bottom: -150px;
    transform: translateY(40px);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Insurance Logos Section */
.insurance-logos {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1;
}

.logos-text {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.logo-carousel {
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
}

.logo-track {
    display: flex;
    animation: scroll-left 20s linear infinite;
    width: calc(200% + 40px);
}

.logo-item {
    flex: 0 0 auto;
    margin-right: 40px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 60px;
}

.logo-item img {
    max-width: 140px;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: brightness(1);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(59,130,246,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(99, 102, 241, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 0 8px 16px -8px rgba(0, 0, 0, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

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

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.testimonials-section {
    position: relative;
    z-index: 2;
}

.testimonials-reviews-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(52, 211, 153, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1), 0 6px 12px -6px rgba(0, 0, 0, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.stars {
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.trustpilot-info {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    max-width: 350px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.trustpilot-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.trustpilot-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.trustpilot-logo {
    font-size: 1rem;
    font-weight: 600;
    color: #10b981;
}

/* Customer Reviews Section */
.customer-reviews {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
    padding: 60px 0;
    position: relative;
}

.customer-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="28" height="24" patternUnits="userSpaceOnUse"><polygon points="14,2 24,8 24,16 14,22 4,16 4,8" fill="none" stroke="rgba(59,130,246,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.6;
}

.customer-reviews .testimonials-reviews-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.customer-reviews .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.customer-reviews .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.customer-reviews .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.02), transparent);
    pointer-events: none;
}

.customer-reviews .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1), 0 6px 12px -6px rgba(0, 0, 0, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
}

.customer-reviews .stars {
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.customer-reviews .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.customer-reviews .testimonial-author {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.customer-reviews .trustpilot-info {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    max-width: 350px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.customer-reviews .trustpilot-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.customer-reviews .rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.customer-reviews .trustpilot-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.customer-reviews .trustpilot-logo {
    font-size: 1rem;
    font-weight: 600;
    color: #10b981;
}

/* Media Logos Section */
.media-logos {
    background: #f9fafb;
    padding: 60px 0;
}

.media-text {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
}

.media-logo {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 15px;
}

.footer-contact {
    margin-top: 15px;
}

.footer-contact p {
    margin-bottom: 6px;
    font-size: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

.footer-column h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
}

.footer-disclaimer {
    text-align: center;
}

.footer-disclaimer p {
    margin-bottom: 15px;
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .testimonials-reviews-title {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .customer-reviews .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .logo-item {
        min-width: 120px;
        margin-right: 30px;
    }
    
    .logo-item img {
        max-width: 100px;
        max-height: 30px;
    }
    
    .media-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .zip-input-wrapper {
        flex-direction: column;
    }
    
    .compare-button {
        padding: 12px 24px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}