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

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

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    gap: 3rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-logo h2 {
    color: #0066cc;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Dropdown Navigation Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown .nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section h4 {
    color: #0066cc;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-section li {
    margin-bottom: 0.5rem;
}

.dropdown-section a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
    border-radius: 4px;
    padding-left: 0.5rem;
}

.dropdown-section a:hover {
    color: #0066cc;
    background: #f8f9fa;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner Section */
.hero {
    position: relative;
    overflow: hidden;
    height: 500px;
}

/* Life Insurance Hero Section */
.life-insurance-hero {
    padding-top: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

/* Auto Insurance Hero Section */
.auto-insurance-hero {
    padding-top: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

/* Home Insurance Hero Section */
.home-insurance-hero {
    padding-top: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

/* Life Insurance Hero Specific Styling */
.life-insurance-hero .hero-subtitle {
    color: #000 !important;
}

.life-insurance-hero p:not(.hero-subtitle) {
    color: #000 !important;
}

.life-insurance-hero .btn-outline {
    background-color: #0066cc !important;
    color: white !important;
    border-color: #0066cc !important;
}

/* Auto Insurance Hero Specific Styling */
.auto-insurance-hero .hero-subtitle {
    color: #000 !important;
}

.auto-insurance-hero p:not(.hero-subtitle) {
    color: #000 !important;
}

.auto-insurance-hero .btn-outline {
    background-color: #0066cc !important;
    color: white !important;
    border-color: #0066cc !important;
}

/* Home Insurance Hero Specific Styling */
.home-insurance-hero .hero-subtitle {
    color: #000 !important;
}

.home-insurance-hero p:not(.hero-subtitle) {
    color: #000 !important;
}

.home-insurance-hero .btn-outline {
    background-color: #0066cc !important;
    color: white !important;
    border-color: #0066cc !important;
}

/* Contacts Page Hero Section */
.contacts-hero {
    padding-top: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 100px 0 80px 0;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero Content Section */
.hero-content-section {
    background: #e6f3ff;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #333;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #666;
    line-height: 1.6;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #004499;
    color: white;
    border: 2px solid #004499;
}

.btn-secondary:hover {
    background: #003366;
    border-color: #003366;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: #0066cc;
    color: white;
}

/* Hero Card */
.hero-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: #333;
}

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

.card-header h3 {
    color: #0066cc;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: #666;
    font-size: 0.9rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group select,
.form-group input {
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

/* Trust Indicators Section */
.trust-indicators {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.5rem;
    color: white;
}

.badge-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.badge-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.partner-logos {
    text-align: center;
    margin-bottom: 4rem;
}

.partner-logos h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.partner-logo img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

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

.video-testimonials h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-testimonial {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    cursor: pointer;
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.video-placeholder p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.testimonial-info {
    padding: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.testimonial-info p:first-of-type {
    color: #0066cc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.testimonial-info p:last-of-type {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #0066cc;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
}

/* Good to Know Section */
.good-to-know {
    background: #f8f9fa;
    padding: 80px 0;
}

.good-to-know h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.section-intro a:hover {
    text-decoration: underline;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-item a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Local Insights Styles */
.local-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Coverage List Styles */
.coverage-list {
    margin: 2rem 0;
}

.coverage-list h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.coverage-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.coverage-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.coverage-list li i {
    color: #0066cc;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.coverage-list li strong {
    color: #333;
    font-weight: 600;
}

.coverage-list li p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Benefits Styles */
.benefits {
    margin: 2rem 0;
}

.benefits h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.benefits li i {
    color: #ffc107;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.benefits li span {
    color: #666;
    line-height: 1.5;
}

/* Coverage Guide Styles */
.coverage-guide {
    padding: 4rem 0;
    background: #f8f9fa;
}

.coverage-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.coverage-section {
    background: white;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.coverage-section h3 {
    color: #0066cc;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coverage-section h3 i {
    color: #0066cc;
}

.coverage-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.coverage-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.coverage-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.coverage-minimums {
    margin: 1rem 0;
}

.coverage-minimums h5 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.coverage-minimums ul {
    list-style: none;
    padding-left: 0;
}

.coverage-minimums li {
    padding: 0.25rem 0;
    color: #666;
}

.texas-rules {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.texas-rules p {
    margin-bottom: 0.5rem;
}

.coverage-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.coverage-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.coverage-table th {
    background: #0066cc;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.coverage-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.coverage-table tr:hover {
    background: #f8f9fa;
}

.risk-exposures {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.risk-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #ff9800;
}

.risk-item h5 {
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.risk-item h5 i {
    color: #ff9800;
}

.cost-tips {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.tip-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #4caf50;
}

.tip-item h5 {
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-item h5 i {
    color: #4caf50;
}

.claims-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.claims-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.claims-table th {
    background: #333;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.claims-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.documentation-list ul {
    list-style: none;
    padding-left: 0;
}

.documentation-list li {
    padding: 0.5rem 0;
    color: #666;
    line-height: 1.6;
}

.pro-tip {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.pro-tip p {
    margin: 0;
    color: #856404;
}

.penalties-list ul {
    list-style: none;
    padding-left: 0;
}

.penalties-list li {
    padding: 0.75rem 0;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #e9ecef;
}

.penalties-list li:last-child {
    border-bottom: none;
}

/* Next Steps Section */
.next-steps {
    padding: 4rem 0;
    background: white;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

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

.step-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.step-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Spanish Page Sections */
.about-section,
.help-section,
.privacy-section,
.terms-section {
    padding: 4rem 0;
}

.about-section {
    background: white;
}

.help-section {
    background: #f8f9fa;
}

.privacy-section {
    background: white;
}

.terms-section {
    background: #f8f9fa;
}

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

.service-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

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

.help-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.help-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.help-item ul {
    list-style: none;
    padding-left: 0;
}

.help-item li {
    padding: 0.5rem 0;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #e9ecef;
}

.help-item li:last-child {
    border-bottom: none;
}

.privacy-content,
.terms-content {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.privacy-item,
.terms-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.privacy-item h3,
.terms-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.privacy-item ul,
.terms-item ul {
    list-style: none;
    padding-left: 0;
}

.privacy-item li,
.terms-item li {
    padding: 0.5rem 0;
    color: #666;
    line-height: 1.6;
}

.terms-contact {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.terms-contact a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.terms-contact a:hover {
    text-decoration: underline;
}

/* Quick Quote Page Styles */
.quick-quote-hero {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.quick-quote-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature i {
    font-size: 1.2rem;
}

.quick-quote-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.quote-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
}

.quick-quote-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: #0066cc;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

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

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

.form-group input.error {
    border-color: #dc3545;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.radio-label:hover,
.checkbox-label:hover {
    background-color: #f8f9fa;
}

.radio-label input,
.checkbox-label input {
    width: auto;
    margin: 0;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-card li:last-child {
    border-bottom: none;
}

.sidebar-card i {
    color: #0066cc;
    width: 16px;
}

.sidebar-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: white;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.trust-item i {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.trust-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.trust-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions button {
        width: 100%;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FAQ Styles */
.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0066cc;
}

.faq-item h4 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Links */
.cta-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-links .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Industry Coverage Styles */
.industry-coverage {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.industry-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.industry-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-card .btn {
    margin-top: auto;
}

.local-insight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0066cc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.local-insight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.local-insight-card h4 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.local-insight-card h4 i {
    font-size: 1rem;
}

.local-insight-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.local-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.local-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Why Choose Dhuka Insurance Section */
.why-choose-dhuka {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 80px 0;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.why-choose-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(255, 255, 255, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0066cc;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #0066cc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-nav {
    padding: 40px 0;
    background: #f8f9fa;
}

.services-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-nav-item i {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background: #f8f9fa;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-detail-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.coverage-list,
.benefits {
    margin-bottom: 2rem;
}

.coverage-list h3,
.benefits h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.coverage-list ul,
.benefits ul {
    list-style: none;
}

.coverage-list li,
.benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.coverage-list i,
.benefits i {
    color: #0066cc;
    margin-right: 0.5rem;
    width: 20px;
}

.image-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: #333;
}

.image-card i {
    color: #0066cc;
    margin-bottom: 1rem;
}

.image-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0066cc;
}

.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-choose-icon i {
    font-size: 2rem;
    color: white;
}

.why-choose-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
}

.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
}

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

.quote-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quote-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.quote-form-large {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-categories {
    padding: 40px 0;
    background: #f8f9fa;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-item {
    padding: 12px 24px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-item:hover,
.category-item.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.featured-post {
    padding: 80px 0;
}

.featured-post-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-post-image {
    position: relative;
}

.featured-post-image img {
    width: 100%;
    border-radius: 12px;
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured-post-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.featured-post-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-date {
    color: #666;
}

.post-category-tag {
    color: #0066cc;
    font-weight: 600;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.post-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.post-author h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.post-author p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.blog-posts {
    padding: 80px 0;
    background: #f8f9fa;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image {
    position: relative;
}

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

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.post-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #004499;
}

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

.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

/* Team Page Styles */
.team-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.team-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.leadership-team {
    padding: 80px 0;
}

.leadership-team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.member-image {
    position: relative;
}

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

.member-social {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    text-decoration: none;
    transition: background 0.3s ease;
}

.member-social a:hover {
    background: #0066cc;
    color: white;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

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

.member-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.member-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.member-contact a,
.agent-contact a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-contact a:hover,
.agent-contact a:hover {
    color: #004499;
    text-decoration: underline;
}

.department-heads {
    padding: 80px 0;
    background: #f8f9fa;
}

.department-heads h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.department-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.department-member .member-image img {
    height: 250px;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.expertise-tag {
    background: #f0f8ff;
    color: #0066cc;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.insurance-agents {
    padding: 80px 0;
}

.insurance-agents h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.agent-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.agent-card:hover {
    transform: translateY(-5px);
}

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

.agent-info {
    padding: 2rem;
}

.agent-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.agent-title {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.agent-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.agent-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.agent-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.agent-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    background: #f0f8ff;
    color: #0066cc;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.company-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.company-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.join-team {
    padding: 80px 0;
}

.join-team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.join-team p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.career-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.career-item:hover {
    transform: translateY(-5px);
}

.career-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.career-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Statistics Section */
.statistics {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: auto;
        padding: 0;
        display: block;
        background: transparent;
        margin-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .dropdown-section {
        margin-bottom: 1rem;
    }
    
    .dropdown-section h4 {
        color: #0066cc;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .dropdown-section a {
        color: #666;
        padding: 0.25rem 0;
        font-size: 0.85rem;
    }
    
    .nav-dropdown .nav-link i {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-logo a {
        gap: 0;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-post-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid,
    .department-grid,
    .agents-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .virtual-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .find-office-form .form-group {
        flex-direction: column;
    }

    .office-features {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .good-to-know h2 {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .why-choose-header h2 {
        font-size: 2rem;
    }
    
    .why-choose-header p {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-badge {
        padding: 1rem;
        gap: 1rem;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
    }
    
    .badge-icon i {
        font-size: 1.2rem;
    }
    
    .logo-grid {
        gap: 1.5rem;
    }
    
    .partner-logo {
        padding: 0.75rem;
    }
    
    .partner-logo img {
        height: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-placeholder {
        height: 150px;
    }
    
    .video-placeholder i {
        font-size: 2.5rem;
    }
    
    .testimonial-info {
        padding: 1rem;
    }
    
    /* City-Specific Landing Page Styles */
    .city-hero {
        background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
        color: white;
        padding: 120px 0 80px;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }
    
    .city-hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .city-hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        color: white;
    }
    
    .city-hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
    }
    
    .city-hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .city-hero-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    
    .local-risks {
        background: #f8f9fa;
        padding: 80px 0;
    }
    
    .local-risks h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #333;
    }
    
    .risks-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .risk-card {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border: 1px solid #e9ecef;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .risk-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .risk-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .risk-icon i {
        font-size: 1.5rem;
        color: white;
    }
    
    .risk-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #333;
        font-weight: 600;
    }
    
    .risk-card p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .risk-card ul {
        list-style: none;
        padding: 0;
    }
    
    .risk-card li {
        color: #0066cc;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
        font-weight: 500;
    }
    
    .risk-card li:last-child {
        border-bottom: none;
    }
    
    .office-location {
        background: white;
        padding: 80px 0;
    }
    
    .location-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
    
    .location-info h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #333;
    }
    
    .office-details {
        background: #f8f9fa;
        padding: 2rem;
        border-radius: 12px;
        border: 1px solid #e9ecef;
    }
    
    .office-address {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .office-address i {
        font-size: 1.5rem;
        color: #0066cc;
        margin-top: 0.25rem;
    }
    
    .office-address h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: #333;
    }
    
    .office-address p {
        color: #666;
        line-height: 1.6;
        margin: 0;
    }
    
    .office-contact {
        margin-bottom: 2rem;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        color: #0066cc;
        width: 20px;
    }
    
    .contact-item span {
        color: #666;
        line-height: 1.6;
    }
    
    .office-services h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #333;
    }
    
    .office-services ul {
        list-style: none;
        padding: 0;
    }
    
    .office-services li {
        color: #666;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .office-services li:last-child {
        border-bottom: none;
    }
    
    .location-map {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .local-testimonials {
        background: #f8f9fa;
        padding: 80px 0;
    }
    
    .local-testimonials h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #333;
    }
    
    .local-stats {
        background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
        color: white;
        padding: 60px 0;
    }
    
    .local-stats .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
    }
    
    .local-stats .stat-item h3 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        color: white;
    }
    
    .local-stats .stat-item p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
    }
    
    /* Mobile Responsive for City Pages */
    @media (max-width: 768px) {
        .city-hero .container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .city-hero-content h1 {
            font-size: 2.5rem;
        }
        
        .city-hero-content p {
            font-size: 1.1rem;
        }
        
        .city-hero-buttons {
            flex-direction: column;
        }
        
        .risks-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .risk-card {
            padding: 1.5rem;
        }
        
        .location-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .office-details {
            padding: 1.5rem;
        }
        
        .local-stats .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .local-stats .stat-item h3 {
            font-size: 2rem;
        }
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features h2,
    .services-preview h2,
    .testimonials h2,
    .cta h2 {
        font-size: 2rem;
    }

    .categories-grid {
        flex-direction: column;
        align-items: center;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Locations Page Styles */
.locations-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.locations-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.locations-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-areas {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.area-icon i {
    font-size: 2rem;
    color: white;
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.area-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.area-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #0066cc;
    font-weight: 500;
}

.area-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-offices {
    padding: 80px 0;
}

.main-offices h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.office-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
}

.office-image {
    position: relative;
}

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

.office-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.office-info {
    padding: 2rem;
}

.office-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.office-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.office-address i {
    color: #0066cc;
    margin-top: 0.25rem;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.office-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-contact a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-contact a:hover {
    color: #004499;
    text-decoration: underline;
}

.office-hours {
    margin-bottom: 1.5rem;
}

.office-hours h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.office-hours p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.office-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    background: #f0f8ff;
    color: #0066cc;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.find-office {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-align: center;
}

.find-office h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.find-office p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.find-office-form {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.find-office-form .form-group {
    display: flex;
    gap: 1rem;
}

.find-office-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

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

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

.feature-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.virtual-appointments {
    padding: 80px 0;
    background: #f8f9fa;
}

.virtual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.virtual-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.virtual-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

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

.virtual-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.virtual-benefits i {
    color: #0066cc;
    width: 20px;
}

.virtual-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-info {
    padding: 80px 0;
}

.contact-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #004499;
    text-decoration: underline;
} 

/* Tagline Section */
.tagline-section {
    background: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0066cc;
    margin: 0;
    font-style: italic;
}

/* Our Team Section */
.our-team {
    padding: 80px 0;
    background: #f8f9fa;
}

.our-team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.our-team .section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.our-team .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.our-team .team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.our-team .team-member:hover {
    transform: translateY(-5px);
}

.our-team .member-image {
    text-align: center;
    padding: 2rem 2rem 1rem;
}

.our-team .member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.our-team .member-info {
    padding: 0 2rem 2rem;
    text-align: center;
}

.our-team .member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.our-team .member-title {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.our-team .member-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Hero Banner Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    
    .hero-content-section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }
    
    .hero-content-section {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* Accessibility helpers */
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{position:static;width:auto;height:auto;background:#0066cc;color:#fff;padding:8px 12px;border-radius:6px}
:focus-visible{outline:2px dashed #0066cc;outline-offset:2px} 

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.modal-body {
  padding: 1.5rem;
}

/* Step Indicator */
.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 8px;
}

.step {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  background: white;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}

.step.active {
  background: #0066cc;
  color: white;
  border-color: #0066cc;
}

.step.completed {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

.form-actions .btn {
  min-width: 120px;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.success-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
  animation: successSlideIn 0.3s ease-out;
}

@keyframes successSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-content h3 {
  color: #10b981;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.success-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Mobile Responsive Modals */
@media (max-width: 768px) {
  .modal {
    padding: 0.5rem;
  }
  
  .modal-content {
    max-height: 95vh;
    border-radius: 8px;
  }
  
  .modal-header {
    padding: 1rem 1rem 0.75rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
  
  .step-indicator {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .step {
    width: 100%;
    text-align: center;
  }
}

/* Enhanced form styling for modals */
.modal .quote-form {
  margin: 0;
}

.modal .form-group {
  margin-bottom: 1rem;
}

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

.modal .form-group input,
.modal .form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.modal .form-group input:focus,
.modal .form-group select:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.modal .form-group input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

/* Product fields styling */
.modal [data-fields] {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.modal [data-fields] input,
.modal [data-fields] select {
  width: 100%;
}

/* Status message styling */
#step1_status,
#step2_status {
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

#step1_status:not(:empty),
#step2_status:not(:empty) {
  margin-top: 1rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

/* Restaurant FAQ Page Styles */
.restaurant-faq-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.restaurant-faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.restaurant-faq-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.restaurant-faq-hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.faq-section {
    padding: 4rem 0;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.faq-intro p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-category {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-category h3 {
    background: #0066cc;
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-category h3 i {
    font-size: 1.2rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: #0066cc;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
    background: #f8f9fa;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
}

.faq-answer li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    color: #555;
}

.faq-answer li:last-child {
    border-bottom: none;
}

.faq-answer strong {
    color: #0066cc;
}

.location-advice {
    margin-top: 4rem;
    padding: 3rem 0;
    background: #f8f9fa;
    border-radius: 12px;
}

.location-advice h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #0066cc;
}

.location-card h4 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-card ul {
    list-style: none;
    padding: 0;
}

.location-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 0.95rem;
}

.location-card li:last-child {
    border-bottom: none;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    border-radius: 12px;
}

.faq-cta h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.faq-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: #0066cc;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #0066cc;
}

@media (max-width: 768px) {
    .restaurant-faq-hero h1 {
        font-size: 2rem;
    }
    
    .faq-intro h2 {
        font-size: 2rem;
    }
    
    .faq-category h3 {
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* FAQ Styles */
.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0066cc;
}

.faq-item h4 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Links */
.cta-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-links .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
} 