/* Expert Witness RICS - Main Stylesheet */

/* CSS Variables for Consistent Theming */
:root {
    --primary-color: #003d82;
    --secondary-color: #0066cc;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition-speed: 0.3s;
    --max-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-color);
}

a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header,
.site-header {
    background: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    width: 100%;
}

.nav-container,
.header-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
}

.logo h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo a span {
    color: var(--secondary-color);
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition-speed);
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: var(--secondary-color);
}

.cta-nav {
    background: var(--secondary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
}

.cta-nav:hover {
    background: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Video Background */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.85) 0%, rgba(0, 102, 204, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

.feature-badge .icon {
    font-size: 1.25rem;
    color: var(--success-color);
}

.feature-badge span:last-child {
    font-weight: 600;
    color: white;
}

/* Hero Form */
.hero-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

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

.form-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

/* Services Overview Section */
.services-overview {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem 1rem;
    font-size: 0.95rem;
}

.service-card .btn-secondary {
    margin: 0 1.5rem 1.5rem;
}

/* Statistics Section */
.statistics {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
}

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

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

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

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform var(--transition-speed);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 0 1.5rem 0;
}

/* Bottom CTA Section */
.bottom-cta {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.cta-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-features {
    list-style: none;
    margin-top: 1.5rem;
}

.cta-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.cta-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* Video Showcase */
.video-showcase {
    padding: 5rem 0;
    background: white;
}

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

.video-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

.video-caption {
    padding: 1rem;
    background: white;
}

.video-caption h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.video-caption p {
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

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

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    background: var(--secondary-color);
    padding: 0.375rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        padding: 4rem 20px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-intro {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    header, footer, .hero-video, .bottom-cta, .video-showcase {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: black;
    }
    
    a {
        text-decoration: underline;
        color: black;
    }
    
    .container {
        max-width: 100%;
    }
}

/* HubSpot Form Styling */
.hs-form-field {
    margin-bottom: 1rem;
}

.hs-form-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.hs-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.hs-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.hs-button {
    background: var(--secondary-color);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-speed);
}

.hs-button:hover {
    background: var(--primary-color);
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 1rem 0;
    background: var(--background-light);
    margin-top: var(--header-height);
    position: relative;
    z-index: 1;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li::after {
    content: "›";
    margin: 0 0.5rem;
    color: var(--text-light);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb li:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Focus Indicators for Accessibility */
:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero .hero-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Services Detailed Section */
.services-detailed {
    padding: 5rem 0;
}

.service-detail {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-text h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-text ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-text ul li strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.service-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* Technology Features */
.tech-features {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.tech-features h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Why Choose Services */
.why-choose-services {
    background: var(--background-light);
    padding: 5rem 0;
}

.why-choose-services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* Service CTA Section */
.service-cta-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.service-cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.service-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Blog Listing */
.blog-listing {
    padding: 5rem 0;
}

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

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.blog-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--primary-color);
}

/* Blog Article - Consolidated below with Blog Article Styles section */

.article-featured-image {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.article-featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.7;
}

.key-takeaways {
    background: var(--background-light);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.key-takeaways h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Blog Article Styles */
.blog-article {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background: white;
}

.breadcrumb {
    padding: 1rem 0;
    background: var(--background-light);
    margin-top: 0;
}

.blog-article .container {
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.article-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    padding-top: 1rem;
}

.article-header h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.article-featured-image {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.article-featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 2rem;
}

.article-content h2 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.article-content h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.8;
}

.article-content li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.article-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--primary-color);
}

.key-takeaways {
    background: var(--background-light);
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 5px;
}

.key-takeaways h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.key-takeaways ul {
    margin: 0;
}

.key-takeaways li {
    color: var(--text-dark);
    font-weight: 500;
}

.article-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.article-cta h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.article-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.article-cta .btn-primary:hover {
    background: var(--background-light);
}

/* Related Articles */
.related-articles {
    background: var(--background-light);
    padding: 4rem 0;
    margin-top: 4rem;
}

.related-articles h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

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

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.area-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.area-card h4 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.area-card ul {
    list-style: none;
    margin: 1rem 0;
}

.area-card ul li {
    padding: 0.375rem 0;
    color: var(--text-light);
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* About Us - Our Story */
.our-story {
    padding: 5rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.member-photo {
    width: 100%;
    max-width: 300px;
}

.member-photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.member-bio {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Credentials Section */
.credentials-section {
    padding: 5rem 0;
    background: white;
}

.credentials-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.credential-item {
    padding: 2rem;
    background: var(--background-light);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.credential-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.credential-item p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Why Choose About */
.why-choose-about {
    padding: 5rem 0;
    background: var(--background-light);
}

.why-choose-about h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-side h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h3 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-container {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.form-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Contact Services */
.contact-services {
    padding: 5rem 0;
    background: var(--background-light);
}

.contact-services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* What to Expect */
.what-to-expect {
    padding: 5rem 0;
    background: white;
}

.what-to-expect h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Why Contact */
.why-contact {
    padding: 5rem 0;
    background: var(--background-light);
}

.why-contact h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* Regional Importance */
.regional-importance {
    padding: 5rem 0;
    background: white;
}

.regional-importance h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* Response Times - Enhanced Interactive Design */
.response-times {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.response-times h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.response-times .section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

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

.response-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.response-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.response-card:hover::before {
    transform: scaleX(1);
}

.response-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 61, 130, 0.15);
}

.response-card.emergency {
    border-top-color: #ff6b35;
}

.response-card.standard {
    border-top-color: var(--secondary-color);
}

.response-card.normal {
    border-top-color: var(--success-color);
}

.response-card.report {
    border-top-color: var(--primary-color);
}

.response-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.response-time {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.time-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.time-unit {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
}

.response-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.response-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.response-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.response-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.response-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.response-note-box {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.note-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.note-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.note-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.coverage-cta {
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 61, 130, 0.2);
}

.coverage-cta h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
}

.coverage-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.coverage-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.coverage-cta .btn-primary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

.response-note {
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
    color: var(--text-light);
    font-style: italic;
}

/* Travel Section */
.travel-section {
    padding: 5rem 0;
    background: white;
}

.travel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.travel-text h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.travel-text h3:first-child {
    margin-top: 0;
}

.travel-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.travel-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* Responsive Adjustments for New Sections */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-content .service-image {
        order: -1;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .travel-content {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .response-timeline {
        grid-template-columns: 1fr;
    }
    
    .response-card {
        padding: 2rem 1.5rem;
    }
    
    .time-value {
        font-size: 2.5rem;
    }
    
    .response-note-box {
        flex-direction: column;
        text-align: center;
    }
    
    .note-icon {
        font-size: 3rem;
    }
}