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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #f1f1f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo img{
    width: 160px;
    height: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
}

.logo-highlight {
    color: #dc2626;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #dc2626;
}

.cta-desktop {
    display: none;
}

.mobile-menu-btn {
    display: block;
}

.mobile-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-toggle:hover {
    color: #dc2626;
}

.nav-mobile {
    display: none;
    border-top: 1px solid #f1f1f1;
    background-color: #ffffff;
    padding: 1rem 0;
}

.nav-mobile.active {
    display: block;
}

.nav-link-mobile {
    display: block;
    padding: 0.5rem 1rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link-mobile:hover {
    color: #dc2626;
}

.btn-mobile {
    margin: 1rem 1rem 0;
    width: calc(100% - 2rem);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #dc2626;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-outline:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 5rem 0 8rem;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 2rem;
    color: #b91c1c;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-badge i {
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-highlight {
    color: #dc2626;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.trust-item i {
    margin-right: 0.5rem;
}

.trust-item i.fa-check-circle {
    color: #10b981;
}

.trust-item i.fa-clock {
    color: #3b82f6;
}

.trust-item i.fa-shield-alt {
    color: #dc2626;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-social-proof {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #fecaca;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #fee2e2;
}

.service-icon i {
    font-size: 2rem;
    color: #dc2626;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1rem;
    text-align: center;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #dc2626;
}

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

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

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background-color: #dc2626;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

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

.services-cta-text {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #f9fafb;
    border-radius: 2rem;
}

.pricing-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.pricing-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
    margin-left: 0.5rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-header {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background-color: #fef2f2;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: #fee2e2;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #dc2626;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: #dc2626;
}

.benefit-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.benefit-stat {
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.stats-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1rem;
}

.stats-subtitle {
    color: #6b7280;
}

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

.stat-item {
    padding: 1rem;
}

.stat-number-large {
    font-size: 2rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-number-large- {
  font-size: 2rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.stat-label-large {
    color: #6b7280;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: #ffffff;
}

.pricing-container {
    max-width: 32rem;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    border: 2px solid #fecaca;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #dc2626;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.popular-badge i {
    margin-right: 0.25rem;
}

.pricing-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
}

.package-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1rem;
}

.price-display {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #dc2626;
}

.price-period {
    font-size: 1.25rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.package-description {
    color: #6b7280;
}

.pricing-content {
    padding: 0 2rem 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: #16a34a;
    font-size: 0.75rem;
}

.guarantee {
    text-align: center;
    margin-top: 1.5rem;
}

.guarantee p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.value-comparison {
    margin-top: 4rem;
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

.comparison-item {
    padding: 1rem;
}

.comparison-item.best-value {
    position: relative;
}

.best-value-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #dc2626;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.comparison-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.comparison-label.highlight {
    color: #b91c1c;
}

.comparison-price {
    font-size: 1.875rem;
    font-weight: bold;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.comparison-price.strike {
    text-decoration: line-through;
}

.comparison-price.highlight {
    color: #dc2626;
    text-decoration: none;
}

.comparison-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.comparison-note.highlight {
    color: #dc2626;
}

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

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.1;
}

.quote-icon i {
    font-size: 3rem;
    color: #dc2626;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.stars i {
    color: #fbbf24;
}

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

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-photo {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.customer-name {
    font-weight: 600;
    color: #000000;
}

.customer-title {
    font-size: 0.875rem;
    color: #6b7280;
}

.social-proof-stats {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

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

.social-proof-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.social-stat {
    padding: 1rem;
}

.social-stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.social-stat-number- {
    font-size: 1.875rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.social-stat-label {
    color: #6b7280;
}

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

.cta-text {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.rating-display {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #16a34a;
}

.rating-text {
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: #ffffff;
}

.faq-container {
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #dc2626;
}

.faq-icon {
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #374151;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1rem;
}

.faq-cta-text {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.faq-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    color: #ffffff;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #dc2626;
    margin-right: 0.75rem;
}

.footer-logo img{
    width: 160px;
    height: auto;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.social-link:hover {
    background-color: #dc2626;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.contact-info {
    list-style: none;
}

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

.contact-item i {
    color: #dc2626;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.contact-item a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

.contact-item span {
    color: #9ca3af;
}

.support-info {
    list-style: none;
}

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

.support-item i {
    color: #dc2626;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.support-item div {
    color: #9ca3af;
}

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

.response-time {
    margin-top: 1rem;
}

.response-time div:first-child {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.response-highlight {
    color: #dc2626;
    font-weight: 600;
}

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

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.copyright {
    color: #9ca3af;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.trust-badges {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.trust-badges-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.trust-badge i {
    margin-right: 0.5rem;
}

.trust-badge:first-child i {
    color: #10b981;
}

.trust-badge:nth-child(2) i {
    color: #3b82f6;
}

.trust-badge:last-child i {
    color: #dc2626;
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .trust-indicators {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-proof-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .faq-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .trust-badges-content {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .cta-desktop {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero {
        padding: 8rem 0;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}