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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top {
    background: white;
    color: #333;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 2px solid #e5e7eb;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bbb-badge-header {
    display: flex;
    align-items: center;
}

.bbb-logo-header {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 80px;
    width: auto;
}

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

.footer-logo-and-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo-and-title h3 {
    margin-bottom: 0;
}

.brand-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.brand-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
    background-color: #f3f4f6;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1e3a8a;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.8)), 
                url('https://images.pexels.com/photos/442150/pexels-photo-442150.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.hero-cta-buttons .btn-primary,
.hero-cta-buttons .btn-secondary {
    min-width: 140px;
    text-align: center;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f9fafb;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

.service-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    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.12);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Services Detail Page */
.services-detail {
    padding: 60px 0;
}

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

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

.service-card .service-image {
    height: 300px;
    overflow: hidden;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card .service-content {
    padding: 2rem;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-left: 0;
}

.service-card ul li {
    padding: 6px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Services CTA */
.services-cta {
    text-align: center;
    background: #1e3a8a;
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

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

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

.services-cta .btn-secondary {
    color: white;
    border-color: white;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* About Page Specific Styles */
.about-content {
    padding: 60px 0;
}

.about-main {
    max-width: 1000px;
    margin: 0 auto;
}

.about-main h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: center;
}

.about-main h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 3rem 0 1.5rem 0;
}

.about-story .story-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

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

.value-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

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

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

.expertise-column h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.expertise-column ul {
    list-style: none;
}

.expertise-column ul li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

.expertise-column ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.about-commitment p,
.about-community p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.bbb-section {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.bbb-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.bbb-logo-large .bbb-accredited {
    height: 120px;
    width: auto;
}

.bbb-text ul {
    list-style: none;
    margin-top: 1rem;
}

.bbb-text ul li {
    padding: 6px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

.bbb-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.about-cta {
    text-align: center;
    background: #1e3a8a;
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.about-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ffffff !important;
    opacity: 1;
}

/* Service Area Preview */
.service-area-preview {
    padding: 60px 0;
    background: #f9fafb;
}

.service-area-preview h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.service-area-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-area-map-left {
    flex: 1;
}

.service-area-map-left iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-area-content-right {
    flex: 1;
}

.service-areas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.area-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0;
}

.area-list ul li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

.area-list ul li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

/* Service Area Page Styles */
.service-area-content {
    padding: 60px 0;
}

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

.area-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.area-intro p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.area-details {
    max-width: 1000px;
    margin: 0 auto;
}

.map-section {
    margin-bottom: 4rem;
}

.map-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

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

.map-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.map-link a:hover {
    text-decoration: underline;
}

.service-areas h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

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

.area-column h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.area-column ul {
    list-style: none;
}

.area-column ul li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

.area-column ul li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

.service-commitment {
    margin: 4rem 0;
}

.service-commitment h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

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

.feature {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

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

.service-radius {
    margin: 4rem 0;
}

.service-radius h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.service-radius p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-cta {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-cta h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 60px 0;
}

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

.contact-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.contact-form-section h3,
.contact-info-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.contact-form {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

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

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

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

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

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
}

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

.emergency-note {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.credentials-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    text-align: center;
}

.credentials-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.credentials {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bbb-contact-logo {
    height: 60px;
    width: auto;
}

.emergency-section {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.emergency-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1rem;
}

.emergency-section p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

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

.emergency-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.emergency-feature p {
    color: #6b7280;
    font-size: 0.9rem;
}

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

.service-area-reminder h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-area-reminder p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-areas-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 1rem 0;
}

.service-areas-list ul li {
    padding: 4px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

.service-areas-list ul li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background: #f8fafc;
    color: #374151;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e5e7eb;
}

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

.footer-section h3,
.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.footer-section p,
.footer-section ul li {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.credentials {
    color: #34d399;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 250px;
    }
    
    .bbb-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        justify-content: center;
        text-align: center;
    }
    
    .service-area-split {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-area-map-left,
    .service-area-content-right {
        flex: none;
        width: 100%;
    }
}

/* Mobile Blank Screen Override */
@media (max-width: 768px) {
    /* Hide all content on mobile */
    body * {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Set body to blank white */
    body {
        background: #ffffff !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        overflow: hidden !important;
    }
    
    /* Ensure html is also white */
    html {
        background: #ffffff !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }
}

@media (max-width: 768px) {
    /* All mobile styles are overridden by blank screen above */
}

@media (max-width: 480px) {
    .hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .brand-text h1 {
        font-size: 18px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .about-main h2,
    .about-main h3 {
        font-size: 1.8rem;
    }
    
    .contact-form,
    .contact-details {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-toggle,
    .cta-buttons {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .service-item {
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Styles for Better Accessibility */
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .service-item {
        border: 2px solid #374151;
    }
    
    .btn-primary,
    .btn-secondary {
        border-width: 3px;
    }
}