/* Core design system with modern marketing theme */
:root {
    /* Primary Colors */
    --primary: #4F46E5;      /* Indigo */
    --primary-dark: #4338CA; /* Darker indigo */
    --primary-light: #818CF8;/* Light indigo */
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #111827;
    --gray-50: #F8FAFC;      /* Very light gray */
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    
    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    
    /* Accent Colors */
    --accent-teal: #0D9488;  /* Teal */
    --accent-coral: #F43F5E; /* Coral */
    --accent-purple: #8B5CF6;/* Purple */
    --accent-light: #EEF2FF;
    
    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Typography */
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing system - More compact */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    /* Container widths */
    --container-default: 1280px;
    --container-narrow: 1080px;
    
    /* Section spacing - More compact */
    --section-spacing: clamp(32px, 6vw, 64px);
    --container-width: 90%;
    --nav-height: 80px;
    
    /* Fluid typography - More compact */
    --base-size: clamp(14px, 1vw + 12px, 16px);
    --h1-size: clamp(32px, 4vw, 56px);
    --h2-size: clamp(24px, 3vw, 40px);
    --h3-size: clamp(18px, 2vw, 28px);
    
    /* Fluid spacing - More compact */
    --section-padding: clamp(32px, 6vw, 64px);
    --container-padding: clamp(12px, 3vw, 24px);
    --grid-gap: clamp(12px, 2vw, 20px);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--white);
}

/* Global container */
.container {
    width: var(--container-width);
    max-width: 3200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    z-index: 1000;
    height: 80px;
}

nav {
    display: flex;
    align-items: center;
    height: 80px;
    width: 100%;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 64px;
    width: 100%;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 12px 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0052CC 0%, #0747A6 100%);
    border-radius: 12px;
    color: white;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0052CC 0%, #0747A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.2s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo:hover .logo-text {
    opacity: 0.9;
}

/* Navigation Items */
.nav-items {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.main-nav li {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--primary);
    background: var(--gray-50);
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* Search Input */
.search-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 0 16px;
    height: 40px;
    width: 192px;
    transition: all 0.2s ease;
}

.search-input-wrapper:focus-within {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
}

.search-input-wrapper svg {
    color: var(--gray-400);
    width: 16px;
    height: 16px;
    margin-right: 12px;
}

.search-input {
    border: none;
    background: none;
    font-size: 15px;
    width: 100%;
    color: var(--text-primary);
}

.search-input::placeholder {
    color: var(--gray-400);
}

.search-input:focus {
    outline: none;
}

/* Sign in Button */
.login-btn {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.login-btn:hover {
    color: var(--primary);
    background: var(--gray-50);
}

/* Quote Button */
.quote-btn {
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.quote-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 8px;
    padding: 16px 0;
    border: 1px solid var(--gray-100);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px;
    min-width: 480px;
    max-width: 560px;
}

.dropdown-section h4 {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 0 16px;
}

.dropdown-section a {
    display: block;
    padding: 8px 16px;
    color: var(--text-primary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-section a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-content:not(.dropdown-grid) {
    min-width: 200px;
}

.dropdown-content:not(.dropdown-grid) a {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-content:not(.dropdown-grid) a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        opacity: 0;
        visibility: hidden;
        height: 0;
        padding: 0;
        margin: 0;
        border: none;
    }

    .dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        height: auto;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        min-width: 100%;
        padding: 16px;
    }
}

/* Update responsive styles */
@media (max-width: 1440px) {
    .nav-content {
        gap: 20px;
    }

    .nav-items {
        gap: 20px;
    }

    .main-nav {
        gap: 12px;
    }

    .nav-buttons {
        gap: 8px;
    }

    .search-input-wrapper {
        width: 160px;
    }

    .login-btn, .quote-btn {
        padding: 8px 12px;
    }
}

/* Remove mobile menu styles */
.menu-button {
    display: none !important;
}

.nav-content {
    display: flex !important;
    position: static !important;
    padding: 0 !important;
    flex-direction: row !important;
    box-shadow: none !important;
    background: none !important;
}

.main-nav, .nav-buttons {
    display: flex !important;
    flex-direction: row !important;
}

/* Hero section */
.hero-section {
    padding: calc(var(--section-spacing) * 0.5) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    color: var(--gray-100);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: #FFFFFF !important;
    font-weight: 500;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .hero-section {
        padding: calc(var(--section-spacing) * 0.5) 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .hero-content h1 {
        font-size: clamp(32px, 4vw, 48px);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

/* Features Section */
.features-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

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

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-teal));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gray-200);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.feature-link svg {
    transition: transform 0.3s ease;
}

.feature-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

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

/* Reviews section */
.reviews-section {
    padding: var(--section-spacing) 0;
    background: var(--gray-50);
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.reviews-header h2 {
    font-size: var(--h2-size);
    margin-bottom: var(--spacing-sm);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--grid-gap);
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.review-card {
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12);
}

.review-header {
    margin-bottom: var(--spacing-sm);
}

.review-text {
    font-size: var(--body-size);
    line-height: 1.5;
}

/* Savings Section */
.savings-section {
    padding: 80px 0;
}

.savings-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.savings-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.savings-list {
    list-style: none;
    margin: 32px 0;
}

.savings-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--neutral-700);
}

.savings-list i {
    color: var(--secondary);
}

.savings-image img {
    width: 100%;
    border-radius: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .savings-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .savings-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-nav, .nav-buttons {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* Add these smooth scroll and animation utilities */
html {
    scroll-behavior: smooth;
}

/* Enhanced animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Smoother transitions for all interactive elements */
a, button, input, .tab {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Navigation */
.main-nav a {
    position: relative;
    padding: 8px 16px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::after {
    width: 80%;
}

/* Smoother dropdown */
.dropdown-content {
    transform-origin: top;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Enhanced Cards */
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Smoother Quote Box */
.quote-box {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
    transition: all 0.3s ease;
}

.quote-tabs {
    background: var(--neutral-100);
    padding: 4px;
    border-radius: 12px;
    display: inline-flex;
    margin-bottom: 24px;
}

.tab {
    position: relative;
    z-index: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    font-weight: 500;
    cursor: pointer;
}

.tab.active {
    color: var(--white);
}

.tab.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 8px;
    z-index: -1;
    transition: all 0.3s ease;
}

/* Enhanced Input Fields */
.input-group input {
    transition: all 0.3s ease;
    border: 2px solid var(--neutral-200);
}

.input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,82,204,0.1);
    outline: none;
}

/* Enhanced CTA Buttons */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.cta-button:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Enhanced Trust Badges */
.trust-badges span {
    padding: 8px 16px;
    background: var(--neutral-100);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.trust-badges span:hover {
    background: var(--neutral-200);
    transform: translateY(-2px);
}

/* Smooth Scroll Animations */
.feature-card, .savings-content, .coverage-categories > div {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }

/* Enhanced Footer */
.footer-section a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    color: var(--text-secondary);
}

.footer-section a:hover {
    padding-left: 8px;
    color: var(--primary);
}

/* Loading State */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Mobile Menu Enhancement */
@media (max-width: 768px) {
    .nav-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255,255,255,0.95);
        padding: 12px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        backdrop-filter: blur(10px);
        z-index: 1000;
    }

    .quote-btn {
        background: var(--primary);
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
    }
}

/* Add to existing styles */
.quote-section {
    padding: 120px 0 80px;
}

.detailed-quote-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-section {
    margin-bottom: 32px;
}

.form-section h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--neutral-700);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--neutral-200);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,82,204,0.1);
    outline: none;
}

/* Add to existing styles */
.page-hero {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.page-hero h1 {
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-hero p {
    color: #FFFFFF;
    font-size: 1rem;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
    max-width: 600px;
    opacity: 0.9;
}

.about-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.about-content h2 {
    color: #0052CC;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-content h3 {
    color: #0052CC;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.about-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.values-list li {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8faff;
    border-radius: 12px;
    border: 1px solid rgba(0, 82, 204, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 82, 204, 0.12);
}

.values-list strong {
    color: #0052CC;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 1rem;
}

.values-list p {
    margin: 0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.mission-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-list li:before {
    content: "•";
    color: #0052CC;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 2rem 0;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    .about-grid {
        padding: 0 1.5rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
        margin: 2.5rem 0 1.25rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }

    .values-list li {
        padding: 1.5rem;
    }
    
    .values-list strong {
        font-size: 1.2rem;
    }
    
    .values-list p {
        font-size: 1rem;
    }
    
    .mission-list li {
        font-size: 1rem;
    }
}

/* Coverage options */
.coverage-options {
    padding: 80px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.option-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.option-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}

.option-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--neutral-900);
}

.option-card p {
    color: var(--neutral-700);
}

/* Claims Section Styles */
.claims-section {
    padding: 80px 0;
}

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

.claims-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.claims-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.claims-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}

.claims-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--neutral-900);
}

.claims-card p {
    color: var(--neutral-700);
    margin-bottom: 24px;
}

.claim-form-section,
.claim-tracking-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.claim-form-section h2,
.claim-tracking-section h2 {
    margin-bottom: 32px;
}

.claim-form .form-section {
    margin-bottom: 32px;
}

.claim-form .form-section h3 {
    margin-bottom: 24px;
    color: var(--neutral-900);
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--neutral-200);
    border-radius: 8px;
    font-family: inherit;
    resize: vertical;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--neutral-200);
    border-radius: 8px;
    font-family: inherit;
    background: var(--white);
}

.form-group input[type="file"] {
    border: none;
    padding: 0;
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: var(--neutral-500);
}

.tracking-form {
    max-width: 400px;
    margin: 0 auto;
}

/* Modern Footer Styles */
footer {
    background: var(--gray-100);
    color: var(--text-primary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    gap: var(--spacing-xs);
}

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 450;
    transition: opacity 0.2s ease;
}

.footer-section a:hover {
    opacity: 0.7;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-text);
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 1;
}

/* How it works section */
.how-it-works {
    padding: var(--section-spacing) 0;
    background: var(--gray-50);
}

.how-it-works h2 {
    font-size: var(--h2-size);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.step {
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin: 0 auto var(--spacing-sm);
}

.step h3 {
    font-size: var(--h3-size);
    margin-bottom: var(--spacing-xs);
}

/* Coverage Section */
.coverage-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.coverage-section h2 {
    font-size: var(--h2-size);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.coverage-card {
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12);
}

.coverage-card h3 {
    font-size: var(--h3-size);
    margin-bottom: var(--spacing-xs);
}

/* Rating Section */
.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars img {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

/* Hero Section Enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 720px;
}

.phone-mockup {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.bg-pattern {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    z-index: 1;
    opacity: 0.1;
}

/* Step Images */
.step-image {
    height: 160px;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image img {
    max-width: 100%;
    height: auto;
}

/* Coverage Icons */
.coverage-icon {
    margin-bottom: 24px;
    height: 64px;
    display: flex;
    align-items: center;
}

.coverage-icon svg {
    fill: var(--primary);
}

.coverage-illustration {
    margin-top: 80px;
    text-align: center;
}

.coverage-illustration img {
    max-width: 800px;
    width: 100%;
    height: auto;
}

/* App Store Buttons */
.app-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.app-store-btn, .play-store-btn {
    height: 48px;
}

.app-store-btn img, .play-store-btn img {
    height: 100%;
    width: auto;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars img {
    width: 16px;
    height: 16px;
}

/* Responsive typography */
h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

p {
    font-size: var(--body-size);
}

/* Mobile-first responsive design */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-fluid-lg) 0;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 40px auto 0;
    }

    .hero-stats {
        justify-content: center;
    }

    .steps-grid,
    .coverage-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-fluid-md);
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: clamp(24px, 4vw, 48px);
    }
    
    .feature-card,
    .coverage-card,
    .review-card {
        padding: var(--spacing-sm);
    }
    
    .hero-content h1 {
        font-size: clamp(28px, 4vw, 40px);
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 2vw, 16px);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-cta .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Fluid typography and spacing */
:root {
    /* Fluid typography */
    --base-size: clamp(14px, 1vw + 12px, 16px);
    --h1-size: clamp(32px, 4vw, 56px);
    --h2-size: clamp(24px, 3vw, 40px);
    --h3-size: clamp(18px, 2vw, 28px);
    
    /* Fluid spacing */
    --section-spacing: clamp(32px, 6vw, 64px);
    --container-padding: clamp(12px, 3vw, 24px);
    --grid-gap: clamp(12px, 2vw, 20px);
}

/* Flexible container */
.container {
    width: var(--container-width);
    max-width: 3200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Responsive navigation */
@media (max-width: 1024px) {
    .menu-button {
        display: block;
    }

    .main-nav, 
    .nav-buttons {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: var(--spacing-fluid-md);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .main-nav.active,
    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-fluid-sm);
    }

    .main-nav a,
    .nav-buttons a {
        width: 100%;
        text-align: center;
        padding: var(--spacing-fluid-sm);
    }
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Add this JavaScript to handle mobile menu */

/* Search functionality */
.nav-search {
    margin-left: auto;
    margin-right: 24px;
}

.search-trigger {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.search-trigger:hover {
    color: var(--primary);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: flex;
    opacity: 1;
}

.search-modal-content {
    background: var(--white);
    width: 100%;
    max-width: 680px;
    margin: 80px auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-header {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 16px;
}

.search-input {
    width: 100%;
    border: none;
    font-size: 16px;
    padding: 8px;
    background: none;
}

.search-input:focus {
    outline: none;
}

.search-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.search-close:hover {
    color: var(--primary);
}

.search-results {
    padding: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background: var(--gray-50);
}

.search-result-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.search-result-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 8px;
    padding: 16px 0;
    border: 1px solid var(--gray-100);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px;
    min-width: 480px;
    max-width: 560px;
}

.dropdown-section h4 {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 0 16px;
}

.dropdown-section a {
    display: block;
    padding: 8px 16px;
    color: var(--text-primary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-section a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-content:not(.dropdown-grid) {
    min-width: 200px;
}

.dropdown-content:not(.dropdown-grid) a {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-content:not(.dropdown-grid) a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        opacity: 0;
        visibility: hidden;
        height: 0;
        padding: 0;
        margin: 0;
        border: none;
    }

    .dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        height: auto;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        min-width: 100%;
        padding: 16px;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1920px) {
    .container {
        max-width: 1800px;
    }
    
    .search-input-wrapper {
        width: 224px;
    }
}

@media (max-width: 1440px) {
    .container {
        max-width: 1280px;
    }
    
    .search-input-wrapper {
        width: 160px;
    }
}

/* Update button styles */
.nav-buttons a, 
.main-nav a,
.dropdown-trigger,
.cta-button {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Improve button hover/active states */
.quote-btn {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.quote-btn:active {
    transform: translateY(1px) translateZ(0);
}

.login-btn:active,
.main-nav a:active,
.dropdown-trigger:active {
    transform: translateY(1px);
}

/* Improve dropdown interaction */
.dropdown-content {
    transform-origin: top center;
    transition: 
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.3s cubic-bezier(0.21, 1.11, 0.7, 1.1);
}

.dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Search input improvements */
.search-input-wrapper {
    position: relative;
}

.search-input-wrapper:focus-within svg {
    color: var(--primary);
}

.search-input {
    caret-color: var(--primary);
}

/* Contact form styles */
.contact-form-wrapper {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
}

.contact-form .error-message {
    color: var(--error);
    font-size: 14px;
    margin-top: 4px;
    min-height: 20px;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form button:hover {
    background: var(--primary-dark);
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spinner animation */
.spinner {
    animation: spin 1s linear infinite;
    width: 20px;
    height: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Add these styles to your existing CSS */
.main-nav a.active {
    color: var(--primary);
    background: var(--gray-50);
}

.main-nav a:hover,
.main-nav a.active:hover {
    color: var(--primary);
    background: var(--gray-100);
}

/* About page specific styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: var(--spacing-2xl) 0;
    margin-top: var(--nav-height);
}

.about-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: var(--h1-size);
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.about-hero .hero-subtitle {
    font-size: var(--h3-size);
    color: var(--white);
    opacity: 0.9;
}

.company-overview {
    padding: var(--section-spacing) 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-card {
    background: var(--gray-50);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--h2-size);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--text-secondary);
    font-size: var(--body-size);
}

.rounded-image {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.value-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-icon {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.value-icon svg {
    width: 64px;
    height: 64px;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: var(--h3-size);
}

.value-card p {
    color: var(--text-secondary);
    font-size: var(--body-size);
    line-height: 1.5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8faff;
    border-radius: 16px;
    border: 1px solid rgba(0, 82, 204, 0.1);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 24px rgba(0, 82, 204, 0.12);
}

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

.team-member h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-title {
    color: #0052CC;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-bio {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .team-section {
        padding: 0 0 4rem;
    }

    .team-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .team-grid {
        padding: 0 1.5rem;
    }

    .member-image {
        width: 100px;
        height: 100px;
    }

    .team-member h3 {
        font-size: 1.3rem;
    }

    .member-title {
        font-size: 1rem;
    }

    .member-bio {
        font-size: 1rem;
    }
}

/* About page refinements */
.bg-light {
    background-color: var(--gray-50);
}

.bg-primary {
    background-color: var(--primary);
    color: var(--white);
}

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

.section-padding {
    padding: var(--spacing-xl) 0;
}

.about-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: var(--spacing-2xl) 0;
    margin-top: var(--nav-height);
}

.about-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: var(--h1-size);
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.about-hero .hero-subtitle {
    font-size: var(--h3-size);
    color: var(--white);
    opacity: 0.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.value-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.button-light {
    background: var(--white);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: var(--spacing-md);
    transition: all 0.2s ease;
}

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

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* Add these contact page styles to your existing CSS */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-method {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
}

.method-icon {
    margin-bottom: var(--spacing-md);
}

.contact-method h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-method a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: var(--body-size);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* Add these quote page styles */
.quote-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.form-section {
    margin-bottom: var(--spacing-xl);
}

.form-section h2 {
    font-size: var(--h3-size);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.button-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: var(--body-size);
    transition: all 0.2s ease;
}

.button-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.15);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.rating-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.trustpilot-logo {
    height: 48px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.trustpilot-logo:hover {
    opacity: 1;
}

/* Our Story Section */
.our-story-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

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

.story-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.story-text {
    text-align: left;
    line-height: 1.8;
    color: #444;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.founder-image:hover img {
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .our-story-section {
        padding: 4rem 0;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .founder-image {
        max-width: 300px;
    }
}

.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 82, 204, 0.1);
    border-bottom: 1px solid rgba(0, 82, 204, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 82, 204, 0.08);
    border: 1px solid rgba(0, 82, 204, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card h3 {
    color: #0052CC;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.about-content h2 {
    color: #0052CC;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-content h3 {
    color: #0052CC;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.about-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

@media (max-width: 768px) {
    .about-grid {
        padding: 0 1rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
}

.team-section {
    padding: 0 0 6rem;
    margin-top: -3rem;
    background: white;
    text-align: center;
}

.team-section h2 {
    color: #0052CC;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.team-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8faff;
    border-radius: 16px;
    border: 1px solid rgba(0, 82, 204, 0.1);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 24px rgba(0, 82, 204, 0.12);
}

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

.team-member h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-title {
    color: #0052CC;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-bio {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .team-section {
        padding: 0 0 4rem;
    }

    .team-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .team-grid {
        padding: 0 1.5rem;
    }

    .member-image {
        width: 100px;
        height: 100px;
    }

    .team-member h3 {
        font-size: 1.3rem;
    }

    .member-title {
        font-size: 1rem;
    }

    .member-bio {
        font-size: 1rem;
    }
} 