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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1e3a8a;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: #f97316;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #f97316;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f97316;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #1e3a8a;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    width: 100%;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: #f97316;
    color: white;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: #1e3a8a;
    color: white;
}

.btn-secondary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

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

.btn-outline:hover {
    background: #1e3a8a;
    color: white;
}

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

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(249, 115, 22, 0.6)),
                url('https://images.pexels.com/photos/3593922/pexels-photo-3593922.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    padding: 0 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.text-orange {
    color: #f97316;
}

.floating-car {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    color: #f97316;
    animation: float 3s ease-in-out infinite;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    text-align: center;
    width: 100%;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Grid Layouts */
.features-grid,
.coverage-grid,
.addon-grid,
.values-grid,
.team-grid,
.awards-grid,
.support-options {
    display: grid;
    gap: 1.5rem;
    width: 100%;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    color: #f97316;
    margin: 0 auto 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.feature-title {
    font-size: 1.25rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Image Banner */
.image-banner {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    color: #1e3a8a;
    width: 100%;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.pexels.com/photos/1638459/pexels-photo-1638459.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.banner-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: white;
    width: 100%;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

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

.testimonial-card {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    flex-shrink: 0;
}

.testimonial-card.active {
    opacity: 1;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-text {
    flex: 1;
    min-width: 0;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1e3a8a;
    display: block;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f97316;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-btn:hover {
    background: #ea580c;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

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

.dot.active {
    background: #f97316;
}

/* Quote Form Section */
.quote-form-section {
    padding: 4rem 0;
    background: #f9fafb;
    width: 100%;
}

.quote-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
}

.quote-benefits h2 {
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    color: #f97316;
    flex-shrink: 0;
}

.benefit-item h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

.quote-form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.quote-form h2 {
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
}

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

/* Trust Indicators */
.trust-indicators {
    padding: 3rem 0;
    background: #1e3a8a;
    color: white;
    width: 100%;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    width: 100%;
}

.trust-item {
    padding: 1rem;
}

.trust-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #f97316;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    opacity: 0.9;
}

/* Coverage Options */
.coverage-options {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

.coverage-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.coverage-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.coverage-card.featured {
    border: 3px solid #f97316;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f97316;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

.coverage-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.coverage-content {
    padding: 2rem;
}

.coverage-title {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

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

.coverage-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #f97316;
    flex-shrink: 0;
}

.coverage-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

/* Additional Coverage */
.additional-coverage {
    padding: 4rem 0;
    background: #f9fafb;
    width: 100%;
}

.addon-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.addon-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

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

.addon-icon {
    width: 50px;
    height: 50px;
    color: #f97316;
    margin: 0 auto 1rem;
}

.addon-title {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.addon-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f97316;
}

/* Coverage Comparison */
.coverage-comparison {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

.comparison-table {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow-x: auto;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #1e3a8a;
    color: white;
    font-weight: 600;
    min-width: 600px;
}

.table-header > div {
    padding: 1.5rem;
    text-align: center;
}

.feature-column {
    text-align: left !important;
}

.plan-column.featured {
    background: #f97316;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
    min-width: 600px;
}

.table-row > div {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-name {
    justify-content: flex-start !important;
    font-weight: 500;
    color: #374151;
}

.x-icon {
    color: #ef4444;
    width: 20px;
    height: 20px;
}

.table-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #f9fafb;
    font-weight: 600;
    min-width: 600px;
}

.table-footer > div {
    padding: 1.5rem;
    text-align: center;
    color: #1e3a8a;
    font-size: 1.25rem;
}

.plan-price:first-child {
    visibility: hidden;
}

/* Claims Styles */
.claims-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    text-align: center;
    width: 100%;
}

.claims-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.claims-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.5;
}

.emergency-contact {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.emergency-box {
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid #f97316;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    width: 100%;
}

.emergency-box h3 {
    margin-bottom: 1rem;
}

.emergency-number {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #f97316;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.emergency-number:hover {
    color: #ea580c;
}

/* Claims Process */
.claims-process {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.process-step {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #f97316;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    color: #1e3a8a;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
}

.step-content {
    min-width: 0;
}

.step-title {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

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

.step-features li {
    color: #374151;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.step-features li::before {
    content: '•';
    color: #f97316;
    position: absolute;
    left: 0;
}

/* Claims Support */
.claims-support {
    padding: 4rem 0;
    background: #f9fafb;
    width: 100%;
}

.support-options {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

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

.support-icon {
    width: 60px;
    height: 60px;
    color: #f97316;
    margin: 0 auto 1.5rem;
}

.support-title {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.support-contact strong {
    display: block;
    color: #1e3a8a;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.support-contact span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* FAQ Styles */
.claims-faq,
.contact-faq {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    width: 100%;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Emergency Contact Section */
.emergency-contact {
    padding: 4rem 0;
    background: #1e3a8a;
    color: white;
    width: 100%;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.emergency-info h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.emergency-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.emergency-numbers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.emergency-item h3 {
    margin-bottom: 0.5rem;
    color: #f97316;
}

.emergency-phone {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.emergency-phone:hover {
    color: #f97316;
}

.emergency-image img {
    width: 100%;
    border-radius: 1rem;
}

/* About Styles */
.about-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    text-align: center;
    width: 100%;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Our Story */
.our-story {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.story-title {
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.story-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.highlight-item p {
    color: #6b7280;
    line-height: 1.6;
}

.story-image img {
    width: 100%;
    border-radius: 1rem;
}

/* Company Stats */
.company-stats {
    padding: 4rem 0;
    background: #f9fafb;
    width: 100%;
}

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

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #f97316;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Our Values */
.our-values {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.value-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    color: #f97316;
    margin: 0 auto 1.5rem;
}

.value-title {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Leadership Team */
.leadership-team {
    padding: 4rem 0;
    background: #f9fafb;
    width: 100%;
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.team-member {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-name {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.member-title {
    color: #f97316;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Awards & Recognition */
.awards-recognition {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

.awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.award-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.award-icon {
    width: 60px;
    height: 60px;
    color: #f97316;
    margin: 0 auto 1.5rem;
}

.award-title {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.award-year {
    color: #f97316;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Contact Styles */
.contact-section {
    padding: 4rem 0;
    background: white;
    width: 100%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
}

.contact-info h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: #f97316;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p {
    color: #374151;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-details a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: #f97316;
}

.contact-details span {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
}

.office-hours h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.hours-item span:first-child {
    color: #374151;
}

.hours-item span:last-child {
    color: #6b7280;
    font-weight: 500;
}

.contact-form-container {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-form h2 {
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #6b7280;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f9fafb;
    width: 100%;
}

.map-container {
    margin-top: 2rem;
    width: 100%;
}

.map-placeholder {
    background: #e5e7eb;
    height: 400px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.map-content {
    color: #6b7280;
    padding: 2rem;
}

.map-icon {
    width: 60px;
    height: 60px;
    color: #f97316;
    margin: 0 auto 1rem;
}

.map-content h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.map-content p {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: #1e3a8a;
    color: white;
    text-align: center;
    width: 100%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
    width: 100%;
}

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

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

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-title {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.125rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f97316;
    transform: translateY(-2px);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
    }
}

/* Tablet Responsive (768px - 1023px) */
@media (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .features-grid,
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quote-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content,
    .emergency-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }
    
    .step-icon {
        display: none;
    }
}

/* Mobile Responsive (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }
    
    .hero-bg {
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .features-grid,
    .coverage-grid,
    .addon-grid,
    .values-grid,
    .team-grid,
    .awards-grid,
    .support-options,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .slider-btn {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        background: #f9fafb;
        padding: 1.5rem;
        border-radius: 1rem;
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
    
    .step-content {
        text-align: left;
    }
    
    .floating-car {
        display: none;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .table-header > div,
    .table-row > div,
    .table-footer > div {
        padding: 0.75rem 0.5rem;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .emergency-content {
        text-align: center;
    }
    
    .emergency-numbers {
        align-items: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-wrapper {
        padding: 0.75rem 0;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .hero {
        min-height: 85vh;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .page-header {
        padding: 5rem 0 2.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .feature-card,
    .coverage-card,
    .addon-card,
    .value-card,
    .team-member,
    .award-item,
    .support-card,
    .stat-item {
        padding: 1.5rem;
    }
    
    .quote-form-container,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1rem;
    }
    
    .emergency-box {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1rem;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .step-content {
        text-align: center;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
        background: #f9fafb;
        border-radius: 0.5rem;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .table-header > div,
    .table-row > div,
    .table-footer > div {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }
    
    .feature-name {
        font-size: 0.7rem;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    .hero-content {
        padding: 0 0.25rem;
    }
    
    .feature-card,
    .coverage-card,
    .addon-card,
    .value-card,
    .team-member,
    .award-item,
    .support-card,
    .stat-item {
        padding: 1rem;
    }
    
    .quote-form-container,
    .contact-form-container {
        padding: 1rem;
    }
    
    .testimonial-content {
        padding: 1rem;
    }
    
    .emergency-box {
        padding: 1rem;
    }
    
    .process-step {
        padding: 0.75rem;
    }
    
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

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

.w-full {
    width: 100%;
}

.max-w-full {
    max-width: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

/* Ensure no horizontal overflow */
.hero,
.page-header,
.why-choose-us,
.image-banner,
.testimonials,
.quote-form-section,
.trust-indicators,
.coverage-options,
.additional-coverage,
.coverage-comparison,
.claims-hero,
.claims-process,
.claims-support,
.claims-faq,
.emergency-contact,
.about-hero,
.our-story,
.company-stats,
.our-values,
.leadership-team,
.awards-recognition,
.contact-section,
.map-section,
.contact-faq,
.cta-section,
.footer {
    width: 100%;
    overflow-x: hidden;
}

/* Fix any potential overflow issues */
img {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    table-layout: fixed;
}

/* Responsive images */
.coverage-image img,
.member-image img,
.story-image img,
.emergency-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive text */
p, li, span {
    word-wrap: break-word;
    overflow-wrap: break-word;
}