/* 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: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Lead Focused */
.main-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid #22c55e;
}

.header-top {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 12px 0;
    box-shadow: 0 2px 5px rgba(34,197,94,0.3);
    width: 100%;
}

.header-top-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-logo-small a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.header-logo-small a:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.header-contact {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.header-contact a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 5px;
    transition: all 0.3s;
}

.header-contact a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    font-weight: bold;
    transition: color 0.3s;
}

.logo a:hover {
    color: #22c55e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #22c55e;
    background: rgba(34,197,94,0.1);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 300px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ccc;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #22c55e;
    color: #fff;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
}

.btn-outline {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-outline:hover {
    background: #22c55e;
    color: #fff;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Lead Capture Section */
.lead-capture-section {
    background: #fff;
    padding: 40px 0;
    margin: 30px 0;
}

.lead-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #22c55e;
}

.lead-form-wrapper h2 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.lead-form-wrapper p {
    margin-bottom: 30px;
    color: #666;
}

.lead-form {
    background: #fff;
    padding: 0;
    border-radius: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
}

/* Services Section */
.services-preview,
.services-listing {
    padding: 40px 0;
    background: #fff;
}

.services-preview h2,
.services-listing h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.2);
    border-color: #22c55e;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h2,
.service-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card h2 a,
.service-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.service-card h2 a:hover,
.service-card h3 a:hover {
    color: #22c55e;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Why Choose Us */
.why-choose-us {
    padding: 40px 0;
    background: #fff;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.feature-item h3 {
    color: #22c55e;
    margin-bottom: 10px;
}

/* Locations */
.locations-preview,
.locations-listing {
    padding: 40px 0;
    background: #fff;
}

.locations-preview h2,
.locations-listing h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.location-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.2);
    border-color: #22c55e;
}

.location-card h2,
.location-card h3 {
    margin-bottom: 15px;
}

.location-card h2 a,
.location-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.location-card h2 a:hover,
.location-card h3 a:hover {
    color: #22c55e;
}

.location-address,
.location-phone,
.location-hours {
    margin-bottom: 10px;
    color: #666;
}

/* Blog */
.blog-preview,
.blog-listing {
    padding: 40px 0;
    background: #fff;
}

.blog-preview h2,
.blog-listing h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.blog-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.2);
    border-color: #22c55e;
}

.blog-card h2,
.blog-card h3 {
    margin-bottom: 15px;
}

.blog-card h2 a,
.blog-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
    color: #22c55e;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #999;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Page Header with Background Image */
.page-header-with-image {
    background-size: cover !important;
    background-position: center !important;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.page-header-with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(45,45,45,0.75) 100%);
    z-index: 1;
}

.page-header-with-image .container {
    position: relative;
    z-index: 2;
}

.page-header-with-image h1 {
    font-size: 48px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.header-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #22c55e;
}

/* Service Detail */
.service-detail,
.location-detail,
.blog-detail {
    padding: 20px 0;
    background: #fff;
}

.service-detail-content,
.location-detail-content,
.blog-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.service-main,
.location-main,
.blog-post {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.service-content,
.location-info,
.blog-content {
    margin-top: 15px;
}

.service-content h3,
.location-info h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #22c55e;
}

.service-content ul {
    margin-left: 20px;
    margin-top: 10px;
}

.service-content li {
    margin-bottom: 8px;
}

.service-sidebar,
.location-sidebar,
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lead-form-compact {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #22c55e;
    box-shadow: 0 5px 20px rgba(34,197,94,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-form-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34,197,94,0.3);
}

.lead-form-compact h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #22c55e;
}

.lead-form-compact .form-group {
    margin-bottom: 15px;
}

.lead-form-compact .form-group input,
.lead-form-compact .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.lead-form-compact .form-group input:focus,
.lead-form-compact .form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

.lead-form-compact .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.lead-form-compact .btn-primary {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34,197,94,0.3);
}

.lead-form-compact .btn-primary:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 6px 20px rgba(34,197,94,0.4);
    transform: translateY(-2px);
}

.contact-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.contact-box h3 {
    margin-bottom: 15px;
}

.phone-link-large {
    font-size: 24px;
    color: #22c55e;
    text-decoration: none;
    font-weight: bold;
}

.phone-link-large:hover {
    text-decoration: underline;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    color: #22c55e;
    margin-bottom: 10px;
}

.services-list {
    list-style: none;
}

.services-list li {
    margin-bottom: 10px;
}

.services-list a {
    color: #1a1a1a;
    text-decoration: none;
}

.services-list a:hover {
    color: #22c55e;
}

.blog-meta-header {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
    font-size: 14px;
    color: #ccc;
}

.blog-excerpt-box {
    background: #fff;
    padding: 20px;
    border-left: 4px solid #22c55e;
    margin-bottom: 30px;
    font-style: italic;
}

.blog-cta {
    background: #1a1a1a;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.blog-cta h3 {
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.related-services,
.related-locations,
.related-posts {
    padding: 30px 0;
    background: #f9f9f9;
}

.related-services h2,
.related-locations h2,
.related-posts h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Contact Page - Lead Focused */
.contact-page {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #22c55e 0%, #4ade80 50%, #22c55e 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 700;
    border-bottom: 3px solid #22c55e;
    padding-bottom: 15px;
}

.contact-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #22c55e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(34,197,94,0.2);
}

.contact-item h3 {
    color: #22c55e;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
}

.contact-item a:hover {
    color: #22c55e;
}

.contact-form-wrapper {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid #22c55e;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #22c55e 0%, #4ade80 50%, #22c55e 100%);
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    border-bottom: 3px solid #22c55e;
    padding-bottom: 15px;
}

/* Thank You Page */
.thank-you-page {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.thank-you-content h1 {
    font-size: 48px;
    color: #22c55e;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 20px;
    margin-bottom: 20px;
    color: #666;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    background: #fff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    color: #22c55e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* Related Links */
.related-links {
    padding: 30px 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.related-links-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
}

.related-links-list a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
}

.related-links-list a:hover {
    color: #22c55e;
}

/* Footer - Lead Focused */
.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    padding: 50px 0 25px;
    border-top: 4px solid #22c55e;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e 0%, #4ade80 50%, #22c55e 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #22c55e;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    padding: 2px 0;
}

.footer-section a:hover {
    color: #22c55e;
    transform: translateX(5px);
    font-weight: 600;
}

.footer-contact p {
    margin-bottom: 12px;
    color: #e0e0e0;
    font-size: 15px;
}

.footer-contact a {
    color: #22c55e;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-contact a:hover {
    color: #4ade80;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid #333;
    color: #999;
    background: rgba(34,197,94,0.05);
    margin-top: 20px;
    padding-bottom: 15px;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    display: none;
}

.sticky-cta-bar.show {
    display: block;
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-cta-text {
    flex: 1;
}

.sticky-cta-buttons {
    display: flex;
    gap: 10px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.hero-urgency {
    margin-top: 20px;
    font-size: 16px;
    color: #ccc;
}

/* Trust Signals */
.trust-signals {
    padding: 40px 0;
    background: #fff;
    border-top: 3px solid #22c55e;
    border-bottom: 3px solid #22c55e;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.trust-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.2);
    border-color: #22c55e;
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.trust-item h3 {
    color: #22c55e;
    margin-bottom: 8px;
    font-size: 18px;
}

.trust-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.trust-header {
    text-align: center;
    margin-bottom: 25px;
}

.trust-header h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.trust-header p {
    color: #666;
    font-size: 16px;
}

/* Lead Form Enhancements */
.lead-form-header {
    margin-bottom: 30px;
}

.lead-form-subtitle {
    color: #666;
    margin-bottom: 15px;
}

.lead-form-benefits {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.lead-form-benefits span {
    color: #22c55e;
    font-weight: 600;
}

.lead-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-privacy {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.form-privacy a {
    color: #22c55e;
    text-decoration: none;
}

.lead-form-alternative {
    margin-top: 20px;
    text-align: center;
    color: #666;
}

.lead-form-alternative a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.phone-icon {
    margin-right: 8px;
}

/* Urgency Box */
.urgency-box {
    background: #22c55e;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.urgency-box h3 {
    color: #fff;
    margin-bottom: 10px;
}

.urgency-box p {
    color: #fff;
    margin-bottom: 15px;
}

.urgency-box .btn-primary {
    background: #fff;
    color: #22c55e;
}

.urgency-box .btn-primary:hover {
    background: #f0f0f0;
}

/* Contact Box Enhancements */
.contact-address,
.contact-hours {
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.8;
}

/* Location Details */
.location-details {
    margin: 20px 0;
}

.location-cta {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 25px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 30px 0;
    background: #fff;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.2);
    border-color: #22c55e;
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-size: 16px;
}

.testimonial-service {
    color: #999;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ccc;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-section {
    padding: 40px 0;
    background: #22c55e;
    color: #fff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #fff;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-section .btn {
    border-color: #fff;
}

.final-cta-section .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.final-cta-section .btn-outline:hover {
    background: #fff;
    color: #22c55e;
}

/* Related Services Section */
.related-services-section {
    padding: 30px 0;
    background: #fff;
}

.related-services-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
}

/* Related Locations Section */
.related-locations-section {
    padding: 30px 0;
    background: #f9f9f9;
}

.related-locations-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
}

/* States Preview Section */
.states-preview-section {
    padding: 40px 0;
    background: #fff;
}

.states-preview-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
}

.states-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 25px;
}

.state-item {
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.state-item:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(34,197,94,0.3);
    border-color: #22c55e;
}

.state-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    display: block;
    font-size: 14px;
}

.state-item:hover a {
    color: #fff;
}

/* Cities Preview Section */
.cities-preview-section {
    padding: 40px 0;
    background: #fff;
}

.cities-preview-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
}

.cities-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 25px;
}

.city-item {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.city-item:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(34,197,94,0.3);
    border-color: #22c55e;
}

.city-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    display: block;
    font-weight: 500;
}

.city-item:hover a {
    color: #fff;
}

/* Service Locations Preview */
.service-locations-preview-section {
    padding: 40px 0;
    background: #fff;
}

.service-locations-preview-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
}

.service-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.service-location-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-location-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.2);
    border-color: #22c55e;
}

.service-location-item h4 {
    margin-bottom: 15px;
}

.service-location-item h4 a {
    color: #1a1a1a;
    text-decoration: none;
}

.service-location-item h4 a:hover {
    color: #22c55e;
}

/* State Detail Page */
.state-detail,
.city-detail,
.service-location-detail {
    padding: 30px 0;
    background: #fff;
}

.state-content,
.city-content,
.service-location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.state-main,
.city-main,
.service-location-main {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.city-card {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.city-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(34,197,94,0.2);
    border-color: #22c55e;
}

.city-card h4 {
    margin-bottom: 10px;
}

.city-card h4 a {
    color: #1a1a1a;
    text-decoration: none;
}

.city-card h4 a:hover {
    color: #22c55e;
}

.state-stats {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.state-sidebar,
.city-sidebar,
.service-location-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-location-content-text {
    line-height: 1.8;
}

.service-location-content-text h3 {
    color: #22c55e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-location-content-text ul {
    margin-left: 20px;
    margin-top: 10px;
}

.service-location-content-text li {
    margin-bottom: 8px;
}

/* Service Image Box */
.service-image-box {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Intro Box */
.intro-box {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(34,197,94,0.3);
    border-left: 5px solid #fff;
}

.intro-box .lead-text {
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.intro-box .lead-text strong {
    font-weight: 700;
}

/* Benefits Box */
.benefits-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefits-box h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.2);
    border-color: #22c55e;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: #22c55e;
    margin-bottom: 10px;
    font-size: 18px;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Process Box */
.process-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #22c55e;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #22c55e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.process-box h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 24px;
}

.process-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Contact Features */
.contact-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-features p {
    margin: 8px 0;
    font-size: 14px;
    color: #fff;
}

/* Trust Badge Box */
.trust-badge-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.trust-badge-box h4 {
    color: #22c55e;
    margin-bottom: 15px;
    font-size: 20px;
}

.trust-badge-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-badge-box li {
    margin-bottom: 10px;
    font-size: 14px;
    padding-left: 5px;
}

/* Form Note */
.form-note {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #22c55e;
    font-weight: 600;
}

/* Responsive Images */
@media (max-width: 768px) {
    .service-featured-image {
        height: 250px;
    }
    
    .page-header-with-image {
        padding: 60px 0;
    }
    
    .page-header-with-image h1 {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-box .lead-text {
        font-size: 18px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

/* States Listing Professional Design */
.states-listing-header {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 10px;
    margin-top: 20px;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.trust-indicator-item {
    color: #fff;
    padding: 15px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.trust-indicator-item strong {
    display: block;
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: 700;
}

.states-grid-compact-listing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.state-item-listing {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.state-item-listing:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.2);
    border-color: #22c55e;
}

.state-code-badge {
    background: #22c55e;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.state-info {
    flex: 1;
}

.state-info h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.state-info h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.state-info h3 a:hover {
    color: #22c55e;
}

.state-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
}

.state-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.state-link-btn {
    background: #f9f9f9;
    color: #22c55e;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.state-link-btn:hover {
    background: #22c55e;
    color: #fff;
    border-color: #22c55e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .service-detail-content,
    .location-detail-content,
    .blog-detail-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .locations-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-logo-small {
        width: 100%;
        text-align: center;
    }
    
    .header-contact {
        justify-content: center;
        font-size: 12px;
        width: 100%;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sticky-cta-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .lead-form-benefits {
        flex-direction: column;
    }
    
    .location-cta {
        flex-direction: column;
    }
    
    .location-cta .btn {
        width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2,
    .final-cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p,
    .final-cta-content p {
        font-size: 18px;
    }
    
    .cta-buttons,
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn,
    .final-cta-buttons .btn {
        width: 100%;
    }
    
    .states-grid-compact {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .cities-grid-compact {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .state-content,
    .city-content,
    .service-location-content {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Urgency and Lead Generation Elements */
.urgency-banner {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    animation: pulse-urgency 2s infinite;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes pulse-urgency {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.urgency-message {
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Offer Cards */
.offer-card {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(34,197,94,0.4);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: 'SPECIAL OFFER';
    position: absolute;
    top: -10px;
    right: -30px;
    background: rgba(0,0,0,0.3);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}

.offer-card h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #fff;
}

.offer-card .offer-discount {
    font-size: 48px;
    font-weight: 900;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.offer-card .offer-details {
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.6;
}

.offer-card .offer-code {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    margin: 15px 0;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
}

.timer-unit {
    background: rgba(0,0,0,0.3);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 70px;
}

.timer-value {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.timer-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.9;
}

.timer-separator {
    font-size: 24px;
    font-weight: bold;
    align-self: center;
}

.timer-expired {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

/* Limited Availability Badge */
.limited-availability {
    background: #ff0000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Form View Count */
.form-view-count {
    background: #22c55e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    display: none;
    margin-bottom: 10px;
}

/* Urgency CTA */
.urgency-cta {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
    animation: pulse-red-bg 2s infinite;
}

@keyframes pulse-red-bg {
    0%, 100% { box-shadow: 0 4px 15px rgba(255,0,0,0.3); }
    50% { box-shadow: 0 4px 25px rgba(255,0,0,0.5); }
}

.urgency-cta h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 24px;
}

.urgency-cta p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Trust Badge with Urgency */
.trust-badge-urgent {
    background: #fff;
    border: 3px solid #22c55e;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(34,197,94,0.2);
}

.trust-badge-urgent .badge-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.trust-badge-urgent h4 {
    color: #22c55e;
    margin-bottom: 8px;
    font-size: 18px;
}

.trust-badge-urgent p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Special Offer Section */
.special-offer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 40px 0;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.special-offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.special-offer-content {
    position: relative;
    z-index: 2;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff0000;
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255,0,0,0.4);
    z-index: 10;
}

.discount-badge .discount-percent {
    font-size: 24px;
    line-height: 1;
}

.discount-badge .discount-text {
    font-size: 10px;
    text-transform: uppercase;
}

/* Lead Form with Urgency */
.lead-form-urgent {
    border: 3px solid #22c55e;
    box-shadow: 0 0 20px rgba(34,197,94,0.3);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(34,197,94,0.3); }
    50% { box-shadow: 0 0 30px rgba(34,197,94,0.5); }
}

/* Service Card with Offer */
.service-card-offer {
    position: relative;
    overflow: visible;
}

.service-card-offer .offer-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff0000;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Phone CTA Urgent */
.phone-cta-urgent {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(34,197,94,0.4);
}

.phone-cta-urgent .phone-number {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
    display: block;
}

.phone-cta-urgent .phone-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #22c55e;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(34,197,94,0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    animation: float-bounce 2s infinite;
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-cta:hover {
    background: #16a34a;
    color: #fff;
    transform: scale(1.05);
}

.floating-cta-icon {
    font-size: 24px;
}

/* Responsive Urgency Elements */
@media (max-width: 768px) {
    .offer-card h3 {
        font-size: 24px;
    }
    
    .offer-card .offer-discount {
        font-size: 36px;
    }
    
    .countdown-timer {
        gap: 5px;
    }
    
    .timer-unit {
        padding: 8px 10px;
        min-width: 60px;
    }
    
    .timer-value {
        font-size: 20px;
    }
    
    .floating-cta {
        bottom: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Enhanced State Page Styles */
.state-detail {
    background: #f8f9fa;
    padding: 40px 0;
}

.state-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.state-main {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.state-main h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
    border-bottom: 3px solid #22c55e;
    padding-bottom: 10px;
}

.state-main h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.state-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Enhanced City Cards on State Page */
.state-main .cities-grid .city-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.state-main .cities-grid .city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(34,197,94,0.3);
    border-color: #22c55e;
}

.state-main .cities-grid .city-card h4 a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.state-main .cities-grid .city-card:hover h4 a {
    color: #22c55e;
}

/* Enhanced Service Cards on State Page */
.state-main .services-grid .service-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.state-main .services-grid .service-card::before {
    content: 'NEW';
    position: absolute;
    top: 0;
    right: 0;
    background: #22c55e;
    color: #fff;
    padding: 5px 15px;
    border-radius: 0 10px 0 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.state-main .services-grid .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34,197,94,0.3);
    border-color: #22c55e;
}

.state-main .services-grid .service-card .read-more {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.state-main .services-grid .service-card .read-more:hover {
    background: #16a34a;
    transform: scale(1.05);
}

/* Enhanced Sidebar on State Page */
.state-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.state-sidebar .lead-form-compact {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(34,197,94,0.2);
    border: 3px solid #22c55e;
    position: relative;
}

.state-sidebar .lead-form-compact h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.state-sidebar .lead-form-compact .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.state-sidebar .contact-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.state-sidebar .contact-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.state-sidebar .contact-box .phone-link-large {
    color: #22c55e;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    display: block;
    margin: 15px 0;
    transition: color 0.3s;
}

.state-sidebar .contact-box .phone-link-large:hover {
    color: #fff;
}

/* Responsive State Page */
@media (max-width: 768px) {
    .state-content {
        grid-template-columns: 1fr;
    }
    
    .state-sidebar {
        order: -1;
    }
    
    .state-main .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .state-main .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog-Style Homepage Styles */
.hero-section-blog {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero-content-blog h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content-blog .hero-subtitle {
    font-size: 20px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

.featured-posts {
    padding: 50px 0;
    background: #fff;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.featured-post-large {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.post-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.post-content {
    padding: 30px;
}

.post-category {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.post-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.post-content h2 a {
    color: #1a1a1a;
    text-decoration: none;
}

.post-content h2 a:hover {
    color: #22c55e;
}

.post-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.featured-post-small {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-post-small article {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.post-image-small {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.post-content-small {
    padding: 20px;
}

.post-content-small h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.post-content-small h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.post-content-small h3 a:hover {
    color: #22c55e;
}

.post-excerpt-small {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.post-meta-small {
    color: #999;
    font-size: 12px;
}

.latest-posts {
    padding: 50px 0;
    background: #f9f9f9;
}

.posts-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.posts-main h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.post-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.post-thumbnail {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    flex-shrink: 0;
}

.post-details {
    flex: 1;
}

.post-category-tag {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.post-details h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.post-details h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.post-details h3 a:hover {
    color: #22c55e;
}

.post-excerpt-item {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #999;
    font-size: 14px;
}

.read-more-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    margin-left: auto;
}

.read-more-link:hover {
    text-decoration: underline;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.sidebar-widget h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 3px solid #22c55e;
    padding-bottom: 12px;
    font-weight: 700;
}

.related-services-sidebar {
    background: #ffffff;
    border: 2px solid #22c55e;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(34,197,94,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.related-services-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 50%, #22c55e 100%);
}

.related-services-sidebar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34,197,94,0.3);
}

.related-services-sidebar h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #1a1a1a;
    padding-bottom: 15px;
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.related-services-sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #22c55e 50%, transparent 100%);
    border-radius: 2px;
}

.related-services-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-services-sidebar ul li {
    margin: 0;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

.related-services-sidebar ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-services-sidebar ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e0e0;
    border-left: 4px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.related-services-sidebar ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #22c55e;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.related-services-sidebar ul li a::after {
    content: "→";
    color: #22c55e;
    margin-left: auto;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.related-services-sidebar ul li:hover {
    padding-left: 0;
}

.related-services-sidebar ul li a:hover {
    color: #16a34a;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #22c55e;
    border-left-color: #22c55e;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(34,197,94,0.3);
}

.related-services-sidebar ul li a:hover::before {
    transform: scaleY(1);
}

.related-services-sidebar ul li a:hover::after {
    transform: translateX(5px);
    color: #16a34a;
}

.sidebar-widget.cta-widget {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 2px solid #22c55e;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(34,197,94,0.2);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.sidebar-widget.cta-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 50%, #22c55e 100%);
}

.sidebar-widget.cta-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34,197,94,0.3);
}

.sidebar-widget.cta-widget h3 {
    color: #22c55e;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #22c55e;
    position: relative;
}

.sidebar-widget.cta-widget p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
}

.sidebar-widget.cta-widget .btn {
    margin-bottom: 12px;
    text-align: center;
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.sidebar-widget.cta-widget .btn:last-child {
    margin-bottom: 0;
}

.sidebar-widget.cta-widget .btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(34,197,94,0.4);
    position: relative;
    overflow: hidden;
}

.sidebar-widget.cta-widget .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.sidebar-widget.cta-widget .btn-primary:hover::before {
    left: 100%;
}

.sidebar-widget.cta-widget .btn-primary:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 6px 25px rgba(34,197,94,0.5);
    transform: translateY(-3px);
}

.sidebar-widget.cta-widget .btn-outline {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
    font-weight: 600;
}

.sidebar-widget.cta-widget .btn-outline:hover {
    background: #22c55e;
    color: #fff;
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34,197,94,0.3);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s;
}

.category-list a:hover {
    color: #22c55e;
    padding-left: 10px;
}

.popular-posts {
    list-style: none;
}

.popular-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.popular-posts li:last-child {
    border-bottom: none;
}

.popular-posts a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.popular-posts a:hover {
    color: #22c55e;
}

.post-date {
    color: #999;
    font-size: 12px;
    display: block;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s;
}

.resource-item:hover {
    background: #22c55e;
    color: #fff;
    transform: translateX(5px);
}

.resource-icon {
    font-size: 24px;
}

.newsletter-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter-box p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #16a34a;
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-layout {
        grid-template-columns: 1fr;
    }
    
    .post-item {
        flex-direction: column;
    }
    
    .post-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* New Homepage Styles - PHP/WordPress Fix Theme */

/* Hero Section Fix */
.hero-section-fix {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section-fix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50">💻</text></svg>') repeat;
    opacity: 0.05;
    z-index: 0;
}

.hero-content-fix {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-fix h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content-fix .hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.6;
}

.hero-search-box {
    max-width: 700px;
    margin: 30px auto;
}

.search-form {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.search-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.search-btn {
    padding: 15px 30px;
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #16a34a;
    transform: scale(1.05);
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-badge {
    background: rgba(34,197,94,0.2);
    color: #22c55e;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(34,197,94,0.3);
}

/* Problem Categories */
.problem-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid #22c55e;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34,197,94,0.2);
}

.category-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.category-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.category-card h3 a:hover {
    color: #22c55e;
}

.category-card > p {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-links {
    list-style: none;
    margin: 20px 0;
}

.category-links li {
    margin-bottom: 10px;
}

.category-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

.category-links a:hover {
    color: #22c55e;
    padding-left: 10px;
}

.category-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 12px 20px;
    background: #22c55e;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.category-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* Featured Fixes */
.featured-fixes {
    padding: 80px 0;
    background: #fff;
}

.fixes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fix-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.fix-card:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34,197,94,0.15);
    transform: translateY(-5px);
}

.fix-icon {
    font-size: 50px;
    text-align: center;
    margin-bottom: 15px;
}

.fix-category {
    display: inline-block;
    background: #e0e0e0;
    color: #555;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.fix-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.fix-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.fix-content h3 a:hover {
    color: #22c55e;
}

.fix-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.fix-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.read-fix-btn {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.read-fix-btn:hover {
    color: #16a34a;
    text-decoration: underline;
}

/* Lead Capture Main */
.lead-capture-main {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.lead-form-main-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.lead-form-header-main {
    text-align: center;
    margin-bottom: 40px;
}

.lead-form-header-main h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.lead-form-subtitle-main {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.lead-form-benefits-main {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lead-form-benefits-main span {
    background: #f0fdf4;
    color: #22c55e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.lead-form-content-main {
    margin-top: 30px;
}

.main-lead-form {
    margin-bottom: 30px;
}

.form-row-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-main {
    margin-bottom: 20px;
}

.form-group-main label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group-main input,
.form-group-main select,
.form-group-main textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group-main input:focus,
.form-group-main select:focus,
.form-group-main textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

.form-group-main textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy-main {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 15px;
}

.form-privacy-main a {
    color: #22c55e;
    text-decoration: none;
}

.phone-cta-main {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.phone-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.phone-number-main {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #22c55e;
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s;
}

.phone-number-main:hover {
    color: #16a34a;
}

.phone-subtitle-main {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

/* Latest Fixes */
.latest-fixes {
    padding: 80px 0;
    background: #f8f9fa;
}

.fixes-list-main {
    margin-top: 40px;
}

.fix-item-main {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 25px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.fix-item-main:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34,197,94,0.15);
    transform: translateX(5px);
}

.fix-thumbnail-main {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.fix-details-main {
    flex: 1;
}

.fix-tag-main {
    display: inline-block;
    background: #e0e0e0;
    color: #555;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.fix-details-main h3 {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.fix-details-main h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.fix-details-main h3 a:hover {
    color: #22c55e;
}

.fix-excerpt-main {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

.fix-meta-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.author-main {
    color: #555;
    font-weight: 500;
}

.date-main {
    color: #999;
}

.read-more-main {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.read-more-main:hover {
    color: #16a34a;
    text-decoration: underline;
}

/* Expert Help Section */
.expert-help-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

.expert-help-box {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.expert-help-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.expert-help-content > p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.expert-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expert-feature {
    display: flex;
    gap: 15px;
    align-items: start;
}

.feature-icon {
    font-size: 30px;
    flex-shrink: 0;
}

.expert-feature strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.expert-feature p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.expert-help-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expert-help-cta .btn {
    width: 100%;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content-fix h1 {
        font-size: 38px;
    }
    
    .hero-content-fix .hero-subtitle {
        font-size: 18px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .fixes-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .form-row-main {
        grid-template-columns: 1fr;
    }
    
    .expert-help-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content-fix h1 {
        font-size: 32px;
    }
    
    .hero-content-fix .hero-subtitle {
        font-size: 16px;
    }
    
    .search-form {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .search-input,
    .search-btn {
        border-radius: 10px;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .fixes-grid {
        grid-template-columns: 1fr;
    }
    
    .lead-form-main-wrapper {
        padding: 30px 20px;
    }
    
    .lead-form-header-main h2 {
        font-size: 28px;
    }
    
    .fix-item-main {
        flex-direction: column;
    }
    
    .fix-thumbnail-main {
        width: 100%;
        height: 150px;
    }
    
    .expert-help-content h2 {
        font-size: 28px;
    }
}

