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

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

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

/* Navigation */
.navbar {
    background-color: #1a365d;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: visible;
    height: auto;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.nav-logo h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-logo .logo {
    height: 90px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #4299e1;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2d3748;
    min-width: 220px;
    width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1001;
    top: 100%;
    left: 0;
    border-radius: 5px;
    list-style: none;
    white-space: nowrap;
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #4a5568;
    color: #4299e1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu Toggle - Hidden on desktop, only visible on mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    z-index: 1001;
    position: relative;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    align-items: center;
}

/* Ensure desktop navigation is always visible */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        background: none !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        gap: 2rem !important;
    }
    
    /* Remove CSS-generated arrows on desktop since we have them in HTML */
    .dropdown > a::after {
        display: none !important;
    }
}

.hamburger-line {
    width: 28px;
    height: 4px;
    background-color: #ffffff !important;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block !important;
    position: relative !important;
}

.mobile-menu-toggle.active .hamburger-line:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:last-child {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb nav {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

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

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb a {
    color: #4299e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #3182ce;
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: #6c757d;
    font-weight: 500;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(rgba(26, 54, 93, 0.8), rgba(45, 55, 72, 0.8)),
        url('local-seo-hero-banner.svg') center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 15px;
}

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

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4299e1;
    font-weight: normal;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4299e1;
    color: white;
    border: 2px solid #4299e1;
}

.btn-primary:hover {
    background-color: #3182ce;
    border-color: #3182ce;
}

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

.btn-secondary:hover {
    background-color: white;
    color: #1a365d;
}

/* Services Overview */
.services-overview {
    padding: 80px 20px;
    background: 
        linear-gradient(rgba(247, 250, 252, 0.92), rgba(247, 250, 252, 0.92)),
        url('homepage-services-google-map.svg') center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.services-overview > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.service-card p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-card a {
    color: #4299e1;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-card a:hover {
    color: #3182ce;
}

/* Locations Served */
.locations-served {
    padding: 80px 20px;
}

.locations-served h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.locations-served > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.locations-with-image {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.locations-image {
    flex: 0 0 45%;
    max-width: 500px;
}

.locations-image .areas-map {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.locations-image .areas-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.locations-grid {
    flex: 0 0 55%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.location-card {
    background: linear-gradient(135deg, #e2e8f0 0%, #f7fafc 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #4299e1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.location-card p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.location-card a {
    color: #4299e1;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.location-card a:hover {
    color: #3182ce;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #fff;
}

.about-with-image {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 0 0 60%;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.highlight h4 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.highlight p {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 0;
}

.about-image {
    flex: 0 0 40%;
    max-width: 400px;
}

.about-image .team-photo {
    width: 400px;
    height: 300px;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.about-image .team-photo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 20px;
    background: 
        linear-gradient(rgba(247, 250, 252, 0.90), rgba(247, 250, 252, 0.90)),
        url('why-choose-us-background.svg') center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

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

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    filter: brightness(1.1);
}

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

.feature p {
    color: #4a5568;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: 
        linear-gradient(rgba(26, 54, 93, 0.85), rgba(45, 55, 72, 0.85)),
        url('contact-section-background.svg') center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-method .contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* Remove the white filter that's causing white boxes */
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    filter: brightness(1.2); /* Simple brightness increase on hover */
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #4299e1;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.contact-form button {
    background-color: #4299e1;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #3182ce;
}

/* Footer */
footer {
    background-color: #1a202c;
    color: white;
    padding: 40px 20px 20px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4299e1;
}

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

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

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

.footer-section ul li a:hover {
    color: #4299e1;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #718096;
    font-size: 0.9rem;
}

/* Additional Styling for New Pages */

/* Page Hero Sections */
.page-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    margin-bottom: 4rem;
}

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

/* Fix for h1 font-size warning in sectioning elements */
section h1, article h1, aside h1, nav h1 {
    font-size: 2.5rem;
}

/* Layout Shift Prevention - Stable Image Dimensions */
.nav-logo .logo {
    width: 400px;
    height: 90px;
    object-fit: contain;
    display: block;
}

.locations-image .areas-map {
    width: 500px;
    height: 400px;
    object-fit: contain;
    display: block;
}

/* Prevent layout shifts during image loading */
img {
    display: block;
}

img[loading="lazy"] {
    min-height: 1px;
}

/* Additional layout shift prevention */
.btn-primary, .btn-secondary {
    min-height: 50px;
    box-sizing: border-box;
}

/* Ensure consistent container heights */
.nav-container {
    min-height: 80px;
}

/* Prevent font loading shifts */
body {
    font-display: swap;
}

/* Stable main content area */
main {
    min-height: 100vh;
}

/* Sleek Related Services Design */
.related-services {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px 0;
    margin: 60px 0 0 0;
    border-top: 3px solid #4299e1;
    position: relative;
}

/* Reset all link styling within related services */
.related-services a {
    color: inherit !important;
    text-decoration: none !important;
}

/* Additional specificity to ensure card styling */
.related-services .container .related-links .related-link {
    background: white !important;
    border-radius: 12px !important;
    padding: 24px !important;
    text-decoration: none !important;
    color: #2d3748 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(66, 153, 225, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    margin-bottom: 0 !important;
}

.related-services .container .related-links .related-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(66, 153, 225, 0.15) !important;
    border-color: rgba(66, 153, 225, 0.3) !important;
    text-decoration: none !important;
    color: #2d3748 !important;
}

.related-services .container .related-links .related-link h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}

.related-services .container .related-links .related-link p {
    font-size: 0.9rem !important;
    color: #718096 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.related-services .container .related-links .related-link:hover h3 {
    color: #4299e1 !important;
}

.related-services .container .related-links .related-link:hover p {
    color: #4a5568 !important;
}

.related-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4299e1, transparent);
}

.related-services h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.related-services h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #4299e1;
    border-radius: 2px;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.related-services .related-link {
    background: white !important;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(66, 153, 225, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.related-services .related-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.related-services .related-link:hover::before {
    transform: scaleX(1);
}

.related-services .related-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(66, 153, 225, 0.15);
    border-color: rgba(66, 153, 225, 0.3);
    text-decoration: none !important;
    color: inherit !important;
}

.related-services .related-link h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-services .related-link p {
    font-size: 0.9rem !important;
    color: #718096 !important;
    margin: 0;
    line-height: 1.5;
}

.related-services .related-link:hover h3 {
    color: #4299e1 !important;
}

.related-services .related-link:hover p {
    color: #4a5568 !important;
}

/* Enhanced Related Services Section */
.related-services-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    margin: 60px 0 0 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.related-services-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.12)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

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

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.card-icon {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    background: rgba(66, 153, 225, 0.15);
    transform: rotate(5deg) scale(1.1);
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-cta {
    font-weight: 600;
    color: #4299e1;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-card:hover .card-cta {
    color: #3182ce;
    transform: translateX(5px);
}

.cta-banner {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f7fafc;
}

/* Compact mobile design */
@media (max-width: 768px) {
    .related-services {
        padding: 30px 0;
        margin: 40px 0 0 0;
    }
    
    .related-services h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .related-links {
        gap: 15px;
        grid-template-columns: 1fr;
    }
    
    .related-services .related-link {
        padding: 20px;
    }
    
    .related-services .related-link h3 {
        font-size: 1.1rem !important;
    }
    
    .related-services .related-link p {
        font-size: 0.85rem !important;
    }

    .related-services-enhanced {
        padding: 60px 0;
        margin: 40px 0 0 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 25px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }

    .cta-banner {
        padding: 30px 20px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

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

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Image optimization and compression */
img {
    image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
}

/* WebP support detection and fallback */
@supports (background-image: url('data:image/webp;base64,UklGRjoAAABXRUJQVlA4IC4AAACyAgCdASoCAAIALmk0mk0iIiIiIgBoSygABc6WWgAA/veff/0PP8bA//LwYAAA')) {
    .webp-supported {
        background-image: url('about-team-photo.webp');
    }
}

/* Responsive image sizes */
@media (max-width: 768px) {
    .about-image .team-photo {
        width: 300px;
        height: 225px;
    }
    
    .nav-logo .logo {
        width: 320px;
        height: 72px;
    }
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #e2e8f0;
}

/* Enhanced CTA Buttons for Service Pages */
.page-hero .cta-buttons {
    margin-top: 2rem;
}

.page-hero .btn-primary,
.page-hero .btn-secondary {
    font-size: 1.1rem;
    padding: 16px 32px;
    margin: 0 10px 10px 0;
}

/* Section Dividers and Visual Enhancements */
.what-is-local-seo,
.benefits,
.local-insights {
    background: #f8fafc;
}

.local-seo-services,
.case-studies,
.how-it-works {
    background: white;
}

/* Alternating section backgrounds for better visual separation */
.content-section:nth-child(even) {
    background: #f8fafc;
}

.content-section:nth-child(odd) {
    background: white;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a365d;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section > .container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    text-align: center;
    color: #4a5568;
}

/* Service and Location Page Specific Sections */
.what-is-local-seo,
.local-seo-services,
.local-insights,
.case-studies,
.how-it-works,
.benefits,
.local-business-marketing {
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 2rem;
}

.what-is-local-seo h2,
.local-seo-services h2,
.local-insights h2,
.case-studies h2,
.how-it-works h2,
.benefits h2,
.local-business-marketing h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a365d;
    text-align: center;
}

.what-is-local-seo > .container > p,
.local-seo-services > .container > p,
.local-insights > .container > p,
.case-studies > .container > p,
.how-it-works > .container > p,
.benefits > .container > p,
.local-business-marketing > .container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    text-align: center;
    color: #4a5568;
}

/* Service Detail Pages */
.services-detailed,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.service-detail {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
    text-align: center;
}

.service-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-detail ul {
    margin-top: 1.5rem;
    padding-left: 0;
    text-align: left;
    list-style: none;
}

.service-detail ul li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail ul li:before {
    content: "✓";
    color: #4299e1;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Desktop-only: 2-column layout for service detail checkmarks */
@media (min-width: 769px) {
    .service-detail ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        column-gap: 1.5rem;
    }
    
    .service-detail ul li {
        margin-bottom: 0.8rem;
        break-inside: avoid;
    }
}

/* Benefit Cards and Insight Cards */
.local-seo-benefits,
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.benefit-card,
.insight {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #4299e1;
}

.benefit-card:hover,
.insight:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-card h3,
.insight h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a365d;
}

.benefit-card p,
.insight p {
    color: #4a5568;
    line-height: 1.7;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-number {
    background: #4299e1;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin: 0 auto 1rem auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.15);
    border-color: #4299e1;
}

.step-content {
    text-align: center;
    width: 100%;
}

/* Mobile: Stack vertically with more space */
@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-step {
        padding: 1.2rem;
    }
}


.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a365d;
}

/* Success Stories and Case Studies */
.success-stories,
.case-study {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.success-story,
.case-study {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #4299e1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.success-story:hover,
.case-study:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.success-story h3,
.case-study h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
    text-align: center;
}

.success-story p,
.case-study p {
    color: #4a5568;
    line-height: 1.8;
    text-align: center;
}

.results {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.result {
    background: #4299e1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Package Styling */
.packages-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.package.featured {
    border-color: #4299e1;
    transform: scale(1.05);
}

.popular-badge {
    background: #4299e1;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 0 0 15px;
}

.package-header {
    background: #f7fafc;
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a365d;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4299e1;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #718096;
}

.package-features {
    padding: 2rem;
}

.package-features h4 {
    margin-bottom: 1rem;
    color: #1a365d;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-features ul li:before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-ideal {
    padding: 1rem 2rem;
    background: #edf2f7;
    font-size: 0.9rem;
}

.package-cta {
    display: block;
    background: #4299e1;
    color: white;
    text-align: center;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.package-cta:hover {
    background: #3182ce;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

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

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #1a365d;
    color: white;
    font-weight: bold;
}

.comparison-table th span {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    color: #4299e1;
}

/* Add-on Services */
.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.add-on {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.add-on h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a365d;
}

.add-on-price {
    color: #4299e1;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* Guide Content Styling */
.guide-content {
    padding: 40px 20px;
}

.guide-section {
    margin: 3rem 0;
}

.guide-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a365d;
    border-bottom: 2px solid #4299e1;
    padding-bottom: 0.5rem;
}

.guide-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    color: #2d3748;
}

.guide-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.guide-section ul li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.guide-cta {
    background: #f7fafc;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.guide-cta h2 {
    margin-bottom: 1rem;
}

/* Contact Info Box */
.contact-info-box {
    background: #1a365d;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-info-box h3 {
    color: #4299e1;
    margin-bottom: 1rem;
}

/* Contact section styling for Local SEO Services page */
.contact-section h2 {
    text-align: center;
}

.contact-section > .container > p {
    text-align: center;
}

.contact-section .contact-grid .contact-info h3 {
    text-align: center;
}

.contact-section .contact-grid .contact-info ul {
    list-style: none;
    padding-left: 0;
}

/* Small Business SEO Section Styling */
.why-small-business-seo .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-small-business-seo .section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    color: #4a5568;
}

.digital-reality-section {
    margin-bottom: 4rem;
}

.subsection-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a365d;
}

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

.reality-stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.reality-stat-card .stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

.reality-stat-card .stat-description {
    font-size: 1.1rem;
    line-height: 1.5;
}

.challenges-solutions-section {
    margin-bottom: 4rem;
}

.challenge-solution-cards {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.challenge-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #4299e1;
}

.challenge-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.challenge-header .challenge-icon {
    font-size: 2rem;
}

.challenge-header h4 {
    color: #1a365d;
    font-size: 1.4rem;
    margin: 0;
}

.challenge-problem {
    background: #fef5e7;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ed8936;
    line-height: 1.6;
}

.challenge-solution {
    background: #f0fff4;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #38a169;
    line-height: 1.6;
}

.solution-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.solution-highlights .highlight {
    background: #4299e1;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.action-cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.action-cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.action-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.primary-cta-button {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.primary-cta-button:hover {
    transform: translateY(-2px);
}

/* Simplified SEO Packages Section */
.seo-packages {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 4rem 0;
}

.packages-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.packages-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.packages-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.custom-package-cta {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.3);
}

.custom-package-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.4);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .reality-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-header {
        flex-direction: column;
        text-align: center;
    }
    
    .solution-highlights {
        justify-content: center;
    }
    
    .packages-header h2 {
        font-size: 2rem;
    }
    
    .packages-intro {
        font-size: 1.1rem;
    }
    
    .custom-package-cta {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Metrics and Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 10px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #4299e1;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Desktop layout for metrics grid - 2 rows of 4 */
@media (min-width: 769px) {
    .website-performance-metrics .metrics-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.5rem;
    }
    
    .website-performance-metrics .metric-card {
        min-height: 200px;
    }
}

.metric-card, .benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.metric-card:hover, .benefit-card:hover {
    transform: translateY(-3px);
}

.metric-card h3, .benefit-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* Google Business Profile Stats and Benefits Redesign */
.gbp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gbp-stats .stat {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gbp-stats .stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.gbp-stats .stat .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.gbp-stats .stat h3 {
    font-size: 3rem;
    font-weight: bold;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1;
}

.gbp-stats .stat p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

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

.gbp-benefits .benefit {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gbp-benefits .benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.gbp-benefits .benefit .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.gbp-benefits .benefit h3 {
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.gbp-benefits .benefit .highlight-tag {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.gbp-benefits .benefit p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* GBP Features Redesign - 4+3 Layout */

.gbp-features .feature {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.gbp-features .feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.gbp-features .feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.gbp-features .feature h3 {
    color: #1a365d;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gbp-features .feature p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Bottom row (last 3 features) - properly spaced and centered */
.gbp-features .features-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Top row - each spans 2 columns */
.gbp-features .feature:nth-child(1) { grid-column: 1 / 3; }
.gbp-features .feature:nth-child(2) { grid-column: 3 / 5; }
.gbp-features .feature:nth-child(3) { grid-column: 5 / 7; }
.gbp-features .feature:nth-child(4) { grid-column: 7 / 9; }

/* Bottom row - centered, each spans 2 columns */
.gbp-features .feature:nth-child(5) { grid-column: 2 / 4; }
.gbp-features .feature:nth-child(6) { grid-column: 4 / 6; }
.gbp-features .feature:nth-child(7) { grid-column: 6 / 8; }

/* Mobile responsive for GBP features */
@media (max-width: 768px) {
    .gbp-features .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gbp-features .feature:nth-child(n+5) {
        grid-column: span 1;
        transform: none;
    }
}

/* Guarantee Box */
.guarantee-box {
    background: #e6fffa;
    border: 2px solid #38b2ac;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.guarantee-box h4 {
    color: #234e52;
    margin-bottom: 0.5rem;
}

/* Industry Showcase Redesign */
.industry-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

/* Industry Success Showcase - 3x3 Grid - Updated 2025 */
.industry-success-showcase {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin: 2rem auto !important;
    max-width: 1200px !important;
}

.industry-card.premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card.premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    border-color: #4299e1;
}

.industry-header {
    margin-bottom: 1rem;
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.industry-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: #2d3748;
    line-height: 1.3;
}

.industry-success-badge {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.industry-examples {
    margin: 0.8rem 0;
}

.industry-examples p {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.4;
    margin: 0;
}

.industry-strategies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
    margin: 0.8rem 0;
}

/* Override for GBP industry strategy sections */
.gbp-industry-specific .industry-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

.gbp-industry-specific .industry-strategy {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gbp-industry-specific .industry-strategy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gbp-industry-specific .industry-strategy h3 {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4299e1;
}

.gbp-industry-specific .industry-strategy ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gbp-industry-specific .industry-strategy li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    line-height: 1.5;
}

.gbp-industry-specific .industry-strategy li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

@media (max-width: 768px) {
    .gbp-industry-specific .industry-strategies {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gbp-industry-specific .industry-strategy {
        padding: 1.2rem;
    }
}

/* Modern GBP Success Metrics Section */
.gbp-success-metrics-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    margin: 2rem 0;
}

.metrics-header {
    text-align: center;
    margin-bottom: 3rem;
}

.metrics-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-text {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metrics-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.success-metrics-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1400px;
}

.metric-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4299e1, #3182ce);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #4299e1;
}

.metric-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    margin-bottom: 1.5rem;
}

.metric-icon {
    font-size: 1.8rem;
    filter: grayscale(1) brightness(10);
}

.metric-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.metric-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.metric-benefit {
    background: linear-gradient(135deg, #e6fffa, #b2f5ea);
    color: #2d3748;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    border: 1px solid #81e6d9;
}

.metrics-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.summary-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.summary-card h3 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.summary-card p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gbp-success-metrics-modern {
        padding: 3rem 0;
    }
    
    .metrics-header h2 {
        font-size: 2rem;
    }
    
    .metrics-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .success-metrics-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto;
    }
    
    .metric-card {
        padding: 1.5rem;
    }
    
    .metric-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .metric-icon {
        font-size: 1.5rem;
    }
    
    .metrics-summary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .metric-card {
        padding: 1.2rem;
    }
    
    .metric-content h3 {
        font-size: 1.1rem;
    }
    
    .summary-card {
        padding: 1.2rem;
    }
}

.strategy-tag {
    background: #edf2f7;
    color: #2d3748;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
}

.local-focus {
    font-size: 0.75rem;
    color: #4a5568;
    line-height: 1.3;
    margin-top: 0.8rem;
    text-align: left;
}

@media (max-width: 768px) {
    .industry-success-showcase {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

.industry-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-stats {
    margin: 1rem 0;
}

.stat-highlight {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

.strategy-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.highlight-tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid #e2e8f0;
}

/* Online Visibility Services Redesign */
.visibility-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
}

.visibility-service.premium {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.visibility-service.premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #4299e1;
}

.service-header {
    margin-bottom: 1rem;
}

.visibility-service.premium h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a365d;
    font-weight: 600;
}

.visibility-service.premium p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.growth-badge {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.feature-point {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid #cbd5e0;
}

/* Ranking Roadmap Redesign */
.ranking-roadmap {
    margin: 3rem auto;
    max-width: 800px;
}

.roadmap-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.roadmap-step:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.step-indicator {
    flex-shrink: 0;
    text-align: center;
}

.step-number {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.priority-label {
    font-size: 0.8rem;
    color: #4299e1;
    font-weight: bold;
    text-transform: uppercase;
}

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

.action-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.checklist-item {
    background: #f0fff4;
    color: #22543d;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    border: 1px solid #9ae6b4;
}

.professional-cta {
    background: linear-gradient(135deg, #1a365d, #2d3748);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

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

.professional-cta p {
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.cta-button {
    background: #4299e1;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.4);
}

/* Advantages Showcase - Reuse same styling patterns */
.advantages-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.advantage-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-stats {
    margin: 1rem 0;
}

.advantage-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Desktop - ensure hamburger is completely hidden */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo .logo {
        height: 65px;
        max-width: 320px;
    }
    
    /* Mobile menu toggle - make it visible and clickable */
    .mobile-menu-toggle {
        display: flex !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 6px !important;
        pointer-events: auto !important;
        z-index: 999999 !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2) !important;
        min-width: 50px !important;
        min-height: 50px !important;
        padding: 10px !important;
        position: relative !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
    
    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus {
        background: rgba(255, 255, 255, 0.3) !important;
        border-color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .mobile-menu-toggle:active {
        background: rgba(255, 255, 255, 0.4) !important;
        transform: scale(0.95) !important;
    }
    
    /* Mobile navigation menu - Force override all desktop styles */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: #1a365d !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 100px 0 0 0 !important;
        margin: 0 !important;
        z-index: 999999 !important;
        gap: 0 !important;
        box-shadow: 0 0 20px rgba(0,0,0,0.5) !important;
        
        /* Hidden by default - slide from left */
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        
        /* Force display and ensure clickability */
        display: flex !important;
        list-style: none !important;
        pointer-events: auto !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-touch-callout: none !important;
    }
    
    /* Show menu when active */
    .nav-menu.active {
        transform: translateX(0) !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 999999 !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        text-align: center !important;
        list-style: none !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 20px !important;
        font-size: 18px !important;
        color: white !important;
        text-decoration: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
        font-weight: 500 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2) !important;
        position: relative !important;
        z-index: 1000000 !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        min-height: 60px !important;
    }
    
    .nav-menu a:hover {
        background-color: rgba(255,255,255,0.1) !important;
        color: white !important;
    }
    
    .dropdown-content {
        position: static !important;
        background-color: #2d3748 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100% !important;
        display: block !important;
    }
    
    .dropdown.active .dropdown-content {
        max-height: 500px;
        display: block !important;
    }
    
    .dropdown-content li {
        border-bottom: 1px solid #4a5568;
    }
    
    .dropdown-content a {
        padding: 0.8rem 3rem !important;
        font-size: 1rem !important;
        color: #e2e8f0 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        position: relative !important;
        z-index: 1000001 !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2) !important;
    }
    
    .dropdown-content a:hover {
        background-color: rgba(255,255,255,0.1) !important;
        color: white !important;
    }
    
    /* Visual indicator for active dropdown */
    .dropdown.active > a {
        background-color: rgba(255,255,255,0.1) !important;
        color: white !important;
    }
}

@media (max-width: 480px) {
    .nav-logo .logo {
        height: 55px;
        max-width: 280px;
    }
    
    /* Extra small mobile optimizations */
    .service-card .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .feature .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-method .contact-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-image {
        max-width: 280px;
    }
    
    .locations-image .areas-map {
        max-height: 160px;
    }
    
    .about-image {
        max-width: 280px;
    }
    
    .about-image .team-photo {
        max-height: 200px;
    }
}

/* Social Media Benefits 2x2 Grid */
    .hero {
        background-attachment: scroll; /* Fixed backgrounds can cause issues on mobile */
        min-height: 400px;
        padding: 60px 20px;
    }
    
    .hero-content {
        padding: 30px 20px;
        backdrop-filter: blur(5px); /* Reduce blur on mobile for better performance */
    }
    
    
    .hero h1, .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-overview,
    .why-choose-us,
    .contact {
        background-attachment: scroll; /* Fixed backgrounds can cause issues on mobile */
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }
    
    .service-card {
        text-align: center;
    }
    
    .service-card .service-icon {
        margin: 0 auto 1.5rem auto;
        width: 64px;
        height: 64px;
    }
    
    .locations-with-image {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .locations-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .locations-image .areas-map {
        width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: contain;
    }
    
    
    .about-with-image {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .about-content,
    .about-image {
        flex: none;
        max-width: none;
    }
    
    .about-image {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .about-image .team-photo {
        max-height: 240px;
        object-fit: cover;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-detailed,
    .services-grid,
    .local-seo-benefits,
    .insights-grid,
    .packages-comparison,
    .success-stories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto;
    }
    
    .service-detail,
    .benefit-card,
    .insight,
    .success-story,
    .case-study {
        padding: 1.5rem;
        text-align: center;
    }
    
    .content-section,
    .what-is-local-seo,
    .local-seo-services,
    .local-insights,
    .case-studies,
    .how-it-works,
    .benefits,
    .local-business-marketing {
        padding: 60px 15px;
    }
    
    /* Mobile responsive for new redesigned sections */
    .industry-showcase,
    .visibility-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto;
    }
    
    .industry-card.featured,
    .visibility-service.premium {
        padding: 1.5rem;
    }
    
    .strategy-highlights,
    .service-features {
        justify-content: flex-start;
    }
    
    .roadmap-step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .step-indicator {
        align-self: center;
    }
    
    .action-checklist {
        justify-content: center;
    }
    
    .professional-cta {
        padding: 2rem;
    }
    
    /* Apply same styles to advantage showcase */
    .advantages-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto;
    }
    
    .advantage-card.featured {
        padding: 1.5rem;
    }
    
    .feature .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    
    .contact-method .contact-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }
    
    .package.featured {
        transform: none;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .stats-grid,
    .metrics-grid,
    .add-ons-grid {
        grid-template-columns: 1fr;
    }
}

/* New Small Business SEO Tips Section Styles */
.implementation-promise {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.promise-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.promise-stat {
    text-align: center;
}

.promise-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.promise-stat p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.seo-tips-modern {
    margin: 3rem 0;
}

.tip-category {
    margin: 3rem 0;
}

.tip-category h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 10px;
    border-left: 5px solid #4299e1;
}

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tip-card.featured {
    border: 2px solid #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.15);
}

/* Social Media Benefits 2x2 Grid */
.social-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.social-benefits .benefit.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.social-benefits .benefit.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.social-benefits .benefit.featured .card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.social-benefits .benefit.featured h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-benefits .benefit.featured .stat-highlight {
    background: linear-gradient(135deg, #4299e1, #63b3ed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.social-benefits .benefit.featured p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Mobile responsive for social benefits */
@media (max-width: 768px) {
    .social-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-benefits .benefit.featured {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }
    
    .social-benefits .benefit.featured .card-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .social-benefits .benefit.featured h3 {
        font-size: 1.3rem;
    }
}

/* Digital Marketing Benefits 2x2 Grid */
.digital-marketing-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.digital-marketing-benefits .benefit.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.digital-marketing-benefits .benefit.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.digital-marketing-benefits .benefit.featured .card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.digital-marketing-benefits .benefit.featured h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.digital-marketing-benefits .benefit.featured .stat-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.digital-marketing-benefits .benefit.featured p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Mobile menu body scroll prevention */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Mobile responsive for digital marketing benefits */
@media (max-width: 768px) {
    .digital-marketing-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .digital-marketing-benefits .benefit.featured {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }
    
    .digital-marketing-benefits .benefit.featured .card-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .digital-marketing-benefits .benefit.featured h3 {
        font-size: 1.3rem;
    }
}

/* Local Search Ranking Factors Enhanced Section */
.local-search-ranking-factors {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 4rem 0;
    margin: 4rem 0;
}

.ranking-factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ranking-factor.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ranking-factor.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.factor-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ranking-factor.featured h3 {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.factor-weight {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.ranking-factor.featured p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.factor-strategies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: auto;
}

.strategy-point {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Mobile responsive for ranking factors */
@media (max-width: 768px) {
    .ranking-factors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ranking-factor.featured {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }
    
    .factor-icon {
        font-size: 3rem;
    }
    
    .ranking-factor.featured h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .ranking-factors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tip-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4299e1, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-header h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin: 0;
    flex-grow: 1;
}

.impact-badge {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.tip-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.action-steps {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.action-steps p {
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.action-steps ul {
    margin: 0;
    padding-left: 1.5rem;
}

.action-steps li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.local-focus {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.example-box {
    background: #edf2f7;
    border-left: 4px solid #4299e1;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.pro-tip {
    background: linear-gradient(135deg, #9f7aea, #805ad5);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.implementation-warning {
    background: #fed7d7;
    border: 2px solid #fc8181;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
}

.implementation-warning h3 {
    color: #c53030;
    margin-bottom: 1.5rem;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.warning-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f56565;
}

.warning-item h4 {
    color: #c53030;
    margin-bottom: 0.5rem;
}

.warning-item p {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
}

.professional-support-cta {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

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

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

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #4299e1;
    margin-bottom: 0.5rem;
}

.cta-stat p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.professional-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4299e1, #667eea);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.professional-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
}

/* Mobile Responsive Styles for New Tips Section */
@media (max-width: 768px) {
    .promise-stats,
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tip-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .tip-header h4 {
        font-size: 1.1rem;
    }
    
    .tip-icon {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .warning-grid {
        grid-template-columns: 1fr;
    }
    
    .professional-support-cta {
        padding: 2rem 1rem;
    }
    
    .cta-stat .stat-number {
        font-size: 2rem;
    }
    
    .promise-stat .stat-number {
        font-size: 2rem;
    }
}