/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 106px; /* 70px navbar + 36px top bar */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
main.container.blog-list {
    padding-top: 37px;
}
/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent text size adjustment on mobile */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Color Scheme - Professional locksmith branding with dark green */
:root {
    --primary-color: #1D3C2E;        /* Dark green */
    --secondary-color: #2d5a42;      /* Medium green */
    --accent-color: #f50b0b;         /* Golden yellow */
    --dark-color: #1f2937;           /* Dark gray */
    --light-color: #f8fafc;          /* Light gray */
    --white: #ffffff;
    --text-dark: #374151;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #000000;
    color: #ffffff;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.top-bar-item i {
    margin-right: 5px;
    color: var(--accent-color);
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.social-icon {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 36px; /* Height of top-bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 94px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-top: 4px;
    background: transparent;
}

/* Hide logo image if it fails to load, show text instead */
.logo-img[src="images/logo.png"]:not([src*="data:"]) {
    background: url('images/logo.png') no-repeat center;
    background-size: contain;
}

.logo-img:not([src]):after,
.logo-img[src=""]:after {
    content: "";
    display: none;
}

/* Logo Placeholder Styles */
.logo-placeholder {
    display: none;
    flex-direction: column;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: transparent;
}

.metro-text {
    color: #000;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    background: transparent;
}

.locksmith-text {
    color: #f59e0b;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
}

.footer-logo-placeholder {
    width: 45px;
    height: 45px;
    font-size: 1rem;
}

/* Hide placeholder when logo loads successfully */
.logo-img:not([style*="display: none"]) + .logo-placeholder,
.footer-logo-img:not([style*="display: none"]) + .footer-logo-placeholder {
    display: none;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.consultation-cta {
    display: flex;
    align-items: center;
    margin-left: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.consultation-cta:hover .consultation-phone {
    color: #e68a00;
}

.consultation-icon {
    color: var(--accent-color);
    font-size: 2rem;
    margin-right: 10px;
}

.consultation-text {
    display: flex;
    flex-direction: column;
}

.consultation-title {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.consultation-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.8em;
    margin-left: 0.5rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    z-index: 1000;
    border: 1px solid var(--border-color);
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    display: grid;
}

.nav-dropdown:hover .service-areas-mega {
    display: flex !important;
}

.dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-section h6 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.3rem;
}

.dropdown-section a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-section a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 1rem;
}

/* Service Areas mega menu styles */
.service-areas-mega {
    min-width: 1100px;
    max-width: 1300px;
    display: none;
    flex-direction: row;
    grid-template-columns: none !important;
    padding: 2rem;
    left: -550px;
    right: auto;
    transform-origin: top center;
}

.areas-main-content {
    display: flex;
    flex: 3;
    gap: 2rem;
}

.areas-main-content .dropdown-section {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.area-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.8rem 0 0 0;
    line-height: 1.4;
    font-style: italic;
    background: #f8f9fa;
    padding: 0.6rem;
    border-radius: 5px;
    border-left: 3px solid var(--accent-color);
}

.virginia-counties {
    margin: 0.8rem 0;
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 6px;
}

.county-group,
.city-group {
    margin-bottom: 1rem;
}

.county-group strong,
.city-group strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.county-group a,
.city-group a {
    display: block;
    margin-left: 0.8rem;
    font-size: 0.9rem;
    padding: 0.2rem 0;
    transition: color 0.3s ease;
}

.county-group a:hover,
.city-group a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.areas-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.8rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-left: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coverage-stats {
    margin-bottom: 1.5rem;
}

.coverage-stats h6 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0 0 0.8rem 0;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.3rem;
}

.coverage-stats .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 0.8rem;
    margin-bottom: 0.6rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.coverage-stats .stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.coverage-stats .stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.coverage-stats .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.quick-contact h6 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0 0 0.6rem 0;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.3rem;
}

.quick-contact p {
    margin: 0 0 0.8rem 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.contact-btn {
    display: block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.6rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.quote-btn {
    display: block;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.6rem 0.8rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: var(--primary-color);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1003;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 0; /* Already accounted for in body padding */
    overflow: hidden;
    background: url('../images/24x7.jpg') center/cover no-repeat; /* Fallback background */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 60, 46, 0.6);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 60, 46, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 200px;
    white-space: nowrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: var(--white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.welcome-images {
    position: relative;
    display: flex;
    gap: 1rem;
}

.main-image {
    flex: 2;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.locksmith-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), transparent);
}

.secondary-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.key-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.yellow-accent {
    height: 200px;
    background: var(--accent-color);
    border-radius: 10px;
    position: relative;
}

.yellow-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.welcome-text {
    padding-left: 2rem;
}

.section-tag {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
}

.section-tag::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.welcome-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.welcome-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.welcome-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.welcome-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.welcome-benefits .benefit-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    padding: 8px;
}

.welcome-benefits .benefit-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.welcome-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.welcome-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.feature-link:hover {
    border-bottom-color: var(--accent-color);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0 40px;
    /* margin-top: 70px; */
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Specific Styles */
.about-content {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-weight: 600;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-section {
    padding: 80px 0;
    background: var(--light-color);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.8rem;
}

.mission-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-overview {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-category {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.service-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-category ul {
    list-style: none;
}

.service-category li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.service-category li:last-child {
    border-bottom: none;
}

.how-we-work {
    padding: 80px 0;
    background: var(--light-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
}

/* Service Areas Page Styles */
.service-areas {
    padding: 80px 0;
    background: var(--white);
}

.intro-text {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.area-section {
    margin-bottom: 3rem;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.area-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.area-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.area-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.area-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-weight: 600;
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.county-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.county-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin-top: 1rem;
}

.service-list li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.virginia-areas {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.county-group {
    margin-bottom: 2rem;
}

.county-group h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.city-item {
    background: var(--light-color);
    padding: 0.8rem;
    border-radius: 5px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
}

.service-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.service-highlights span {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.city-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.city-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.coverage-info {
    padding: 80px 0;
    background: var(--light-color);
}

.coverage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coverage-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.coverage-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card,
.contact-form-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card h2,
.contact-form-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-info h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.method-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.emergency-notice {
    background: var(--danger-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.emergency-text h4 {
    margin-bottom: 0.5rem;
}

.emergency-text a {
    color: var(--white);
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
}

.map-section {
    padding: 80px 0;
    background: var(--light-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.coverage-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
}

.coverage-item i {
    color: var(--success-color);
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 45px;
    width: 45px;
    max-width: 45px;
    object-fit: contain;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 0;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #9ca3af;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom p {
    color: #6b7280;
    margin: 0;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.28);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(37,211,102,0.35); }
.whatsapp-float i { font-size: 1.6rem; }

@media (max-width: 576px) {
    .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Body adjustments for mobile */
    body {
        padding-top: 139px; /* Adjusted for mobile top bar height + navbar */
        font-size: 16px; /* Prevent zoom on input focus */
        overflow-x: hidden;
    }
    
    /* Top Bar Mobile Styles */
    .top-bar {
        padding: 8px 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1001;
        background: #000000;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 15px;
        align-items: center;
    }
    
    .top-bar-left {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        width: 100%;
        text-align: center;
    }
    
    .top-bar-item {
        font-size: 0.75rem;
        margin-right: 0;
        margin-bottom: 0.2rem;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
    }
    
    .top-bar-item i {
        margin-right: 5px;
        flex-shrink: 0;
    }
    
    .top-bar-right {
        justify-content: center;
        width: 100%;
        margin-top: 0.3rem;
        display: flex;
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
        margin: 0 5px;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Navigation Mobile Styles */
    .navbar {
        top: 74px; /* Adjusted for mobile top bar */
        height: 65px;
        position: fixed;
        width: 100%;
        z-index: 1000;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        height: 65px;
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .hamburger {
        display: flex;
        z-index: 1003;
        order: 3;
        margin-left: auto;
    }
    
    .hamburger {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: var(--primary-color);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background: var(--primary-color);
    }
    
    .hamburger:focus {
        outline: none;
    }
    
    .hamburger:active {
        background: transparent;
    }
    
    .nav-menu {
        position: fixed;
        top: 139px; /* Below navbar + top bar */
        left: -100%;
        width: 100%;
        height: calc(100vh - 139px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 1.5rem 0;
        transition: left 0.3s ease;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        will-change: left;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        margin: 0;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        width: 100%;
    }
    
    .nav-link:hover {
        background: var(--light-color);
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: 1rem;
        padding: 0 1.5rem;
    }
    
    /* Navigation Dropdown Mobile */
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    /* Consultation CTA Mobile */
    .consultation-cta {
        display: flex;
        margin-left: 10px;
        margin-right: 10px;
        order: 2;
        flex-shrink: 0;
        align-items: center;
    }
    
    .consultation-icon {
        font-size: 1.3rem;
        margin-right: 6px;
        flex-shrink: 0;
    }
    
    .consultation-text {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }
    
    .consultation-title {
        font-size: 0.7rem;
        white-space: nowrap;
    }
    
    .consultation-phone {
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        min-width: auto;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0.5rem 0;
        background: #f8f9fa;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        grid-template-columns: 1fr;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu.mobile-active {
        display: grid;
        max-height: 1000px;
    }
    
    .service-areas-mega {
        flex-direction: column;
        min-width: auto;
        padding: 1rem;
        left: 0;
    }
    
    .areas-main-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .areas-main-content .dropdown-section {
        max-width: 100%;
    }
    
    .areas-sidebar {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .virginia-counties {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .coverage-stats .stat-item {
        flex-direction: row;
        text-align: left;
        padding: 0.6rem;
    }
    
    .coverage-stats .stat-number {
        margin-right: 0.5rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        height: 60vh;
        min-height: 500px;
        margin-top: 0;
    }
    
    .hero-video-bg {
        object-position: center;
    }
    
    .video-overlay {
        background: rgba(29, 60, 46, 0.75);
    }
    
    .hero-overlay {
        background: rgba(29, 60, 46, 0.75);
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        min-width: 250px;
        width: 100%;
        max-width: 300px;
    }
    
    /* Buttons Mobile */
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Welcome Section Mobile */
    .welcome-section {
        padding: 3rem 0;
    }
    
    .welcome-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .welcome-images {
        width: 100%;
        height: 300px;
    }
    
    .welcome-text {
        width: 100%;
    }
    
    .welcome-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefit-item {
        justify-content: flex-start;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    /* Grid Layouts Mobile */
    .about-grid,
    .contact-grid,
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 3rem 0;
        min-height: 250px;
    }
    
    .page-header h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Logo Mobile */
    .nav-logo {
        order: 1;
        flex-shrink: 0;
        background: transparent;
    }
    
    .nav-logo a {
        display: flex;
        align-items: center;
        background: transparent;
        text-decoration: none;
    }
    
    .logo-img {
        height: 50px;
        width: auto;
        max-width: 85px;
        background: transparent;
        border: none;
        outline: none;
    }
    
    .logo-img[style*="display: none"] + .logo-placeholder {
        display: flex !important;
    }
    
    .logo-placeholder {
        display: none;
        flex-direction: column;
        background: transparent;
    }
    
    .metro-text {
        font-size: 1.4rem;
        line-height: 1.1;
        background: transparent;
    }
    
    .locksmith-text {
        font-size: 0.9rem;
        line-height: 1.1;
        background: transparent;
    }
    
    /* Area Pages Mobile */
    .area-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .area-highlights {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .area-highlight {
        min-width: 140px;
    }
    
    /* Contact Info Cards Mobile */
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-link {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
    
    /* Forms Mobile */
    .contact-form-card,
    .quote-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet screens (769px - 991px) */
@media (max-width: 991px) and (min-width: 769px) {
    /* Top bar adjustments */
    .top-bar-item {
        font-size: 0.75rem;
        margin-right: 15px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Navigation */
    .nav-menu {
        gap: 1.5rem;
    }
    
    .consultation-icon {
        font-size: 1.8rem;
    }
    
    .consultation-title {
        font-size: 0.9rem;
    }
    
    .consultation-phone {
        font-size: 1.1rem;
    }
    
    /* Hero section */
    .hero-content h1 {
        font-size: 3rem;
    }
    
    /* Welcome section */
    .welcome-content {
        gap: 3rem;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Benefits grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Service areas dropdown */
    .service-areas-mega {
        min-width: 900px;
        left: -400px;
    }
}

@media (max-width: 480px) {
    /* Body adjustments for very small screens */
    body {
        padding-top: 126px; /* Reduced for very small screens */
        overflow-x: hidden;
    }
    
    /* Extra Small Mobile - Top Bar */
    .top-bar {
        padding: 6px 0;
    }
    
    .top-bar .container {
        padding: 0 10px;
        gap: 0.4rem;
    }
    
    .top-bar-item {
        font-size: 0.7rem;
    }
    
    .top-bar-item i {
        margin-right: 4px;
        font-size: 0.8rem;
    }
    
    /* Hide address on very small screens but show phone and email */
    .top-bar-left .top-bar-item:nth-child(3) {
        display: none;
    }
    
    /* Prevent horizontal scroll on small screens */
    .top-bar-left, .top-bar-right {
        overflow: hidden;
    }
    
    .top-bar-item {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        margin: 0 3px;
    }
    
    /* Navigation adjustments */
    .navbar {
        top: 66px; /* Adjusted for smaller top bar */
        height: 60px;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 10px;
    }
    
    .nav-menu {
        top: 126px; /* navbar top + navbar height */
        height: calc(100vh - 126px);
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.85rem 1rem;
        font-size: 1rem;
    }
    
    /* Simplify consultation CTA on very small screens */
    .consultation-cta {
        margin-right: 5px;
    }
    
    .consultation-icon {
        font-size: 1.2rem;
        margin-right: 4px;
    }
    
    .consultation-text {
        /* display: none; */
    }
    
    /* Show just icon with tooltip behavior */
    .consultation-cta::after {
        content: 'Call Now';
        position: absolute;
        bottom: -25px;
        right: 0;
        background: var(--dark-color);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.7rem;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .consultation-cta:active::after {
        opacity: 1;
    }
    
    .logo-img {
               height: 102px;
        width: auto;
        max-width: 78px;
    }
    
    .metro-text {
        font-size: 1.2rem;
    }
    
    .locksmith-text {
        font-size: 0.8rem;
    }
    
    /* Hero adjustments */
    .hero {
        height: 55vh;
        min-height: 450px;
    }
    
    .hero-video-bg {
        object-position: center;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    /* Page headers */
    .page-header {
        padding: 2.5rem 0;
        min-height: 220px;
    }
        .page-header {
        padding: 2.5rem 0;
        min-height: 220px;
        padding-top: 76px;
    }
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Cards and forms */
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    /* Grids */
    .counties-grid,
    .faq-grid,
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Stats */
    .coverage-stats {
        flex-direction: column;
    }
    
    .coverage-stats .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Welcome section */
    .welcome-section {
        padding: 2rem 0;
    }
    
    .welcome-images {
        height: 665px;
    }
    
    /* Dropdown sections */
    .dropdown-section {
        padding: 0.5rem;
    }
    
    .dropdown-section h6 {
        font-size: 0.85rem;
    }
    
    .dropdown-section a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Area highlights */
    .area-highlight {
        min-width: 120px;
        padding: 0.5rem;
    }
    
    .area-highlight i {
        font-size: 1.2rem;
    }
    
    /* Contact links */
    .contact-link {
        font-size: 0.9rem;
        padding: 0.65rem;
    }
    
    /* Footer */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    /* Utility: hide on mobile */
    .hide-mobile {
        display: none !important;
    }
    
    /* Process steps mobile */
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Mission items */
    .mission-item {
        padding: 1.5rem;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
    }
}

/* Animation and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.benefit-item,
.mission-item,
.county-card,
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Prevent horizontal overflow on mobile */
body, html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Remove any default button styling */
button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

button:focus {
    outline: none;
}

/* Ensure no weird backgrounds on touch */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.contact-link:focus,
.hamburger:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    body {
        padding-top: 100px;
    }
    
    .top-bar {
        padding: 4px 0;
    }
    
    .top-bar .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .top-bar-left {
        flex-direction: row;
        gap: 1rem;
    }
    
    .navbar {
        top: 50px;
        height: 50px;
    }
    
    .nav-container {
        height: 50px;
    }
    
    .nav-menu {
        top: 100px;
        height: calc(100vh - 100px);
    }
    
    .hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-video-bg {
        object-position: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .logo-img {
        height: 40px;
    }
}

/* Enhanced touch targets for mobile */
@media (max-width: 768px) {
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
    
    .btn {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        touch-action: manipulation;
    }
    
    /* Improve dropdown touch experience */
    .dropdown-item {
        min-height: 44px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
    
    /* Mobile contact links */
    .phone-link,
    .email-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
    
    /* Prevent zoom on form inputs (iOS) */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px;
        transform: scale(1);
    }
}

/* Area Page Styles */
.breadcrumb {
    background: var(--light-color);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb nav a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 0.5rem;
}

.breadcrumb nav a:hover {
    text-decoration: underline;
}

.breadcrumb nav span {
    color: var(--text-light);
    font-weight: 500;
}

.area-content {
    padding: 80px 0;
    background: var(--white);
}

.area-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.area-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.area-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.response-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.area-info h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.neighborhoods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.neighborhood-group ul {
    list-style: none;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.neighborhood-group li {
    padding: 0.3rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.neighborhood-group li:last-child {
    border-bottom: none;
}

.services-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.services-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
}

.service-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.cta-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.cta-box h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-box .btn {
    margin: 0.5rem;
    display: inline-block;
}

.why-choose-local {
    padding: 80px 0;
    background: var(--light-color);
}

.why-choose-local h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.local-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.benefit h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Styles for Area Pages */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 100vw;
        left: -20px;
        right: -20px;
        grid-template-columns: 1fr;
    }
    
    .area-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-card {
        position: static;
    }
    
    .response-stats {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .neighborhoods {
        grid-template-columns: 1fr;
    }
    
    .local-benefits {
        grid-template-columns: 1fr;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: none; /* Disable hover on mobile */
    }
    
    .dropdown-menu.mobile-active {
        display: grid !important;
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--light-color);
        margin: 1rem 0;
    }
}

/* Universal Responsive Image Styles */
img {
    max-width: 100%;
    height: auto;
}

.locksmith-image,
.key-image,
.about-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Tables */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

@media (max-width: 600px) {
    table {
        font-size: 0.8rem;
    }
}

/* Responsive Video and Iframes */
iframe,
video,
object,
embed {
    max-width: 100%;
    height: auto;
}

/* Flexible Container for Embedded Content */
.video-container,
.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Enhanced Mobile Typography */
@media (max-width: 600px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 0.7rem;
    }
    
    h4 {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 0.6rem;
    }
    
    p, li {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    /* Adjust padding and margins for mobile */
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    /* Make buttons more touch-friendly */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    /* Improve form inputs for mobile */
    input,
    textarea,
    select {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        border-radius: 8px;
    }
    
    /* Stack elements vertically on mobile */
    .row {
        flex-direction: column;
    }
    
    .col-md-6,
    .col-lg-4,
    .col-lg-6,
    .col-lg-8 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Adjust spacing for mobile cards */
    .card,
    .service-card,
    .feature-card {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    /* Force single column layouts on mobile */
    .about-grid,
    .contact-grid,
    .features-grid,
    .benefits-grid,
    .services-grid,
    .coverage-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Optimize hero section for mobile */
    .hero {
        min-height: 60vh;
        text-align: center;
    }
    
    .hero-video-bg {
        object-position: center center;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    /* Mobile-friendly navigation spacing */
    .nav-menu {
        padding: 1rem;
    }
        .navbar {
        top: 110px;
        height: 60px;
    }
    .nav-link {
        padding: 1rem;
        font-size: 1rem;
        
        border-bottom: 1px solid var(--border-color);
    }
    
    /* Improve mobile footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }
    
    /* Mobile contact forms */
    .contact-form {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    /* Touch-friendly social icons */
    .social-icon {
        min-width: 40px;
        min-height: 40px;
        margin: 0 5px;
    }
    
    /* Mobile-optimized stats display */
    .stats-container,
    .coverage-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        text-align: center;
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
}

/* Extra Small Devices (phones in landscape, less than 576px) */
@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Extra small screen optimizations */
    .container {
        padding: 0 0.75rem;
    }
    
    .top-bar {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
    
    .top-bar-content {
        gap: 0.25rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    /* Compact service areas dropdown */
    .dropdown-menu {
        padding: 0.5rem;
    }
    
    .dropdown-item {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Mobile-first approach for very small screens */
    .mission-grid,
    .faq-grid {
        gap: 1rem;
    }
    
    .mission-item,
    .faq-item {
        padding: 1rem;
    }
}

/* Landscape phones and small tablets (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn-group {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cta-section {
        display: none;
    }
    
    .hero {
        margin-top: 0;
        height: auto;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .page-header {
        margin-top: 0;
    }
    
    /* Make printed content more readable */
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}

/* Media gallery and lightbox */
.media-hero { padding: 60px 0 40px; text-align: center; background: linear-gradient(135deg, rgba(29,60,46,0.06), transparent); }
.media-hero h1 { color: var(--primary-color); font-size: 2.2rem; margin-bottom: 0.5rem; }
.media-hero p { color: var(--text-light); margin-bottom: 0; }

.gallery-grid, .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: start; margin: 40px 0; }
.gallery-item, .video-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.gallery-item img, .video-thumb { width: 100%; height: 220px; object-fit: cover; display: block; }
.gallery-item figcaption, .video-card h3 { padding: 0.8rem 1rem; color: var(--primary-color); font-weight: 700; }

.lightbox-trigger { cursor: pointer; display: block; }

/* Lightbox modal */
.lightbox-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.8); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 20px; }
.lightbox-modal.active { display: flex; }
.lightbox-content { max-width: 1100px; width: 100%; max-height: 90vh; overflow: hidden; border-radius: 8px; background: #000; position: relative; }
.lightbox-body { display:flex; align-items:center; justify-content:center; width:100%; height:100%; }
.lightbox-img { max-width: 100%; max-height: 85vh; display:block; }
.lightbox-video { width:100%; height:100%; max-height:85vh; }
.lightbox-close { position: absolute; right: 8px; top: 8px; background: rgba(255,255,255,0.08); color: #fff; border: none; padding: 8px 10px; border-radius: 6px; cursor: pointer; font-size: 1rem; }

@media (max-width: 991px) {
    .gallery-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item img, .video-thumb { height: 160px; }
}

@media (max-width: 575px) {
    .gallery-grid, .video-grid { grid-template-columns: 1fr; }
    .gallery-item img, .video-thumb { height: 200px; }
}

/* Blog list: responsive multi-column posts */
.blog-list .posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-list .post {
    background: var(--card-bg, #ffffff);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(20,20,20,0.06);
    display: flex;
    flex-direction: column;
}

.blog-list .post-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-list .post-body {
    padding: 16px;
    flex: 1 1 auto;
}

.blog-list .post h2 { margin-top: 0.25rem; }

/* Two columns on medium screens */
@media (min-width: 700px) {
    .blog-list .posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Three columns on large screens */
@media (min-width: 1100px) {
    .blog-list .posts {
        grid-template-columns: repeat(3, 1fr);
    }
}