/* Reset and Global Styles (No changes here) */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #21211cd6; /* MAKE HEADER BACKGROUND TRANSPARENT */
    padding: 0.5rem 0; /* Reduced padding */
    border-bottom: 1px solid #2e2e2e;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.header-logo img, .header-logo .fallback-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header-logo .fallback-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

.header-nav {
    display: flex; 
    align-items: center; /* Vertically align items in header-nav */
}

.nav-toggle {
    display: none; /* Hide hamburger by default on larger screens */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 1.5rem; /* Size of hamburger icon */
    color: #fff;
}

.nav-toggle i {
    pointer-events: none; /* To prevent icon from interfering with button click */
}


.header-nav ul {
    list-style: none;
    display: flex;
}

.header-nav li {
    margin-left: 2rem;
}

.header-nav a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.header-nav a:hover {
    opacity: 1;
    color: #00e08e;
}

.header-nav a.active {
    color: #00e08e;
    opacity: 1;
    font-weight: 500;
}

/* Main Content (No changes here) */
main {
    flex: 1;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.container-no-width {
    text-align: center;
    padding: 2rem;
}

/* Hero Section (No changes here) */
#hero {
    padding-top: 6rem;
    margin-bottom: 4rem;
}

.hero-logo {
    margin-bottom: 2rem;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    animation: logoPulse 2s infinite alternate;
}

@keyframes logoPulse {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.05); opacity: 1; }
}

.hero-logo img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-logo .fallback-logo {
    width: 100%;
    height: 100%;
}

.hero-logo .fallback-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: bold;
}


.hero-title {
    color: #00e08e;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: fadeInTitle 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInTitle {
    to { opacity: 1; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInSubtitle 1.5s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

@keyframes fadeInSubtitle {
    to { opacity: 1; }
}

/* Services Section (No changes here) */
#services {
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.6s;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 4rem;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.services-title, .clients-title, .brands-title {
    color: #00e08e;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.service-item {
    background-color: #333;
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: #00e08e;
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.service-description {
    color: #888;
    font-size: 1rem;
    line-height: 1.5;
}

/* Clients Section (No changes here) */
#clients {
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.9s;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 4rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Grid for client cards */
    gap: 2rem;
}

.client-item {
    background-color: #252525; /* Card background */
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.client-card-logo {
    width: 80px; /* Size of logo in card */
    height: 80px;
    margin: 0 auto 1.5rem;
}

.client-card-logo img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%); /* Initially grayscale */
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.client-item:hover .client-card-logo img {
    opacity: 1;
    filter: grayscale(0%); /* Color on hover */
}


.client-card-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #fff; /* Client name color */
}

.client-card-description {
    color: #aaa; /* Description color */
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.client-website-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #FFD700;
    color: #1a1a1a;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.client-website-link:hover {
    background-color: #FFA500;
    color: #fff;
}

/* Brands Section */
.brands-section {
    width: 100%;
    overflow: hidden;
    padding: 2.5rem 0;
    background-color: #252525;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
}

.scroll-content {
    display: flex;
    animation: scrollBrands 30s linear infinite;
    gap: 2rem;
}

.brand-item {
    flex: 0 0 auto;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%) brightness(1);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.scroll-container:hover .scroll-content {
    animation-play-state: paused;
}

/* CTA Section */
#cta {
    background: linear-gradient(145deg, #1c1c1c, #252525);
    padding: 4rem 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    animation-delay: 1.2s;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    opacity: 0.03;
    pointer-events: none;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: left;
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cta-image:hover img {
    transform: scale(1.02);
}

.cta-title {
    color: #00e08e;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    padding-bottom: 0.75rem;
}

.cta-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #00e08e;
    border-radius: 3px;
}

.cta-description {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #00e08e;
    color: #1a1a1a;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #00e08e;
    gap: 0.5rem;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: #00e08e;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 224, 142, 0.3);
}

.cta-button:hover i {
    transform: translateX(4px);
}

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

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

.cta-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00e08e;
    margin-bottom: 0.2rem;
    display: block;
}

.cta-stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #ddd;
    padding: 0.5rem 0;
}

.cta-feature i {
    color: #00e08e;
    font-size: 1.1rem;
    background-color: rgba(0, 224, 142, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 940px) {
    .cta-container {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        text-align: center;
        order: 2;
    }
    
    .cta-image {
        order: 1;
    }
    
    .cta-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        justify-content: center;
    }
}

/* Social Links (Footer Section) (No changes here) */
footer {
    background-color: #1c1c1c;
    padding: 4rem 0 2rem;
    border-top: 1px solid #2e2e2e;
    text-align: center;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-column {
    text-align: left;
}

.footer-column:last-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #00e08e;
}

.footer-column p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.8rem;
    color: #00e08e;
}

.footer-links a:hover {
    color: #00e08e;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #aaa;
}

.footer-contact-item i {
    color: #00e08e;
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: #aaa;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    background-color: #252525;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #1a1a1a;
    background-color: #00e08e;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

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

@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-column:last-child {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        text-align: left;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-column:last-child {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column h3::after {
        left: 0;
        transform: none;
    }
    
    .footer-contact-item {
        justify-content: flex-start;
    }
    
    .footer-social {
        justify-content: flex-start;
    }

    .footer-links {
        margin-bottom: 1.5rem;
    }
}

/* Media Queries for Responsive Header */
@media (max-width: 768px) { /* Example breakpoint, adjust as needed */
    header {
        padding: 0 0; /* Reduced padding */
    }

    .header-container {
        flex-direction: column; /* Stack header elements vertically on smaller screens */
        align-items: center; /* Center items horizontally within header container */
    }

    .header-brand-container { /* NEW CONTAINER STYLES */
        display: flex;        /* Enable flexbox for brand container */
        justify-content: space-between; /* Space between logo and toggle */
        align-items: center;    /* Vertically align logo and toggle */
        width: 100%;          /* Take full width of header container */
        margin-bottom: 0rem;   /* Reduced margin below brand section */
        padding: 0.5rem 0;
    }

    .header-logo {
        height: 80px;
        margin: 0;
    }

    .header-logo img {
        height: 100%;
        width: auto;
    }

    .nav-toggle {
        display: block; /* Show hamburger icon on smaller screens */
        position: static; /* Position static within brand container */
        top: auto;       /* Reset top */
        right: auto;     /* Reset right */
    }

    .header-nav {
        width: 100%; /* Make nav take full width */
        flex-direction: column; /* Stack nav items vertically */
        align-items: flex-start; /* Align nav items to the start */
    }

    .header-nav ul {
        display: none; /* Initially hide nav list on smaller screens */
        flex-direction: column; /* Stack list items vertically */
        width: 100%; /* Make nav ul take full width */
        margin-top: 2rem; /* Add some space below the brand section */
        border-top: 1px solid #2e2e2e; /* Separator for nav menu */
        padding: 1rem 2rem; /* Add padding inside nav menu */
    }

    .header-nav.open ul {
        display: flex; /* Show nav list when open class is added */
    }

    .header-nav li {
        margin-left: 0; /* Remove horizontal spacing between nav items */
        margin-bottom: 1.5rem; /* Add vertical spacing between nav items */
    }

    .header-nav li:last-child {
        margin-bottom: 0; /* Remove bottom margin from last nav item */
    }
}

/* Contact Page Styles */
#contact {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

#contact h1 {
    color: #00e08e;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

#contact form {
    background: #252525;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

#contact label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1rem;
    text-align: left;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #444;
    border-radius: 4px;
    background: #333;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact textarea {
    min-height: 150px;
    resize: vertical;
}

#contact input:focus,
#contact textarea:focus {
    outline: none;
    border-color: #00e08e;
    box-shadow: 0 0 0 2px rgba(0, 224, 142, 0.2);
}

#contact button[type="submit"] {
    background: #00e08e;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#contact button[type="submit"]:hover {
    background: #00c07a;
    transform: translateY(-2px);
}

#contact button[type="submit"]:active {
    transform: translateY(0);
}

/* Success Message Styling */
#contact p {
    text-align: center;
    padding: 2rem;
    background: #2e462e;
    border-radius: 8px;
    color: #90EE90;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #contact {
        padding: 2rem 1rem;
    }
    
    #contact form {
        padding: 1.5rem;
    }
    
    #contact h1 {
        font-size: 2rem;
    }
}

/* Audit Form Styles */
.audit-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.audit-form {
    background-color: #252525;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.audit-title {
    color: #00e08e;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.audit-description {
    color: #aaa;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

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

.audit-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    text-align: left;
}

.audit-form input,
.audit-form textarea,
.audit-form select {
    width: 100%;
    padding: 0.8rem;
    background: #333;
    border: 1px solid #444;
    border-radius: 4px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.audit-form input:focus,
.audit-form textarea:focus,
.audit-form select:focus {
    border-color: #00e08e;
    box-shadow: 0 0 0 2px rgba(0, 224, 142, 0.1);
    outline: none;
}

.audit-form select {
    cursor: pointer;
}

.audit-form button {
    background: #00e08e;
    color: #1a1a1a;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audit-form button:hover {
    background: #00c07a;
    transform: translateY(-2px);
}

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

.audit-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.audit-feature i {
    color: #00e08e;
}

@media (max-width: 768px) {
    .audit-form-container {
        padding: 2rem 1rem;
    }
    
    .audit-title {
        font-size: 1.8rem;
    }
    
    .audit-features {
        grid-template-columns: 1fr;
    }
}

/* Phone field with country code */
.phone-field-container {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    flex: 0 0 80px;
}

.phone-number {
    flex: 1;
}

/* 404 Error Page Styles */
#error-404 {
    min-height: calc(100vh - 200px); /* Adjust for header/footer */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    margin: 0 auto;
}

.error-content {
    max-width: 600px;
    width: 100%;
}

.error-content h1 {
    font-size: 6rem;
    color: #00e08e;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.error-content p {
    color: #aaa;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .error-content h1 {
        font-size: 4rem;
    }
    
    .error-content h2 {
        font-size: 1.5rem;
    }
}

/* City Pages Styles */
.city-hero {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.city-hero .container {
    position: relative;
    z-index: 1;
}

.contact-card {
    background: linear-gradient(145deg, #252525, #2a2a2a);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
    z-index: 10;
}

.contact-card h3 {
    color: #00e08e;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    position: relative;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00e08e;
    border-radius: 3px;
}

.contact-card address {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-card address i {
    color: #00e08e;
    margin-right: 10px;
    width: 16px;
}

.contact-card a {
    color: #fff;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #00e08e;
}

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(51, 51, 51, 0.6);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    background: rgba(51, 51, 51, 0.8);
    transform: translateX(5px);
}

.contact-info i {
    color: #00e08e;
    font-size: 1.1rem;
}

.contact-card .btn {
    display: inline-block;
    width: 100%;
    background: #00e08e;
    color: #1a1a1a;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #00e08e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.contact-card .btn:hover {
    background: transparent;
    color: #00e08e;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 224, 142, 0.2);
}

.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.service-areas .badge {
    font-size: 0.9em;
    padding: 8px 15px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    color: #007bff;
    position: absolute;
    left: 0;
    top: 10px;
}

/* City Pages Layout */
.city-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
}

.city-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
}

.city-main {
    position: relative;
}

/* Consolidated city-sidebar styles with sticky scrolling */
.city-sidebar {
    position: sticky;
    top: 100px; /* Distance from top when sticky */
    height: fit-content;
    max-height: calc(100vh - 120px); /* Account for header height */
    overflow-y: auto; /* Allow scrolling if content is too tall */
    align-self: start; /* Align to the start of the grid */
    z-index: 10;
    transition: all 0.3s ease;
}

.city-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.city-lead {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1rem;
    line-height: 1.6;
}

.city-section {
    margin-bottom: 3rem;
}

.city-section h2 {
    color: #00e08e;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.city-section p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlights-section {
    background: #252525;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.highlights-section h3 {
    color: #00e08e;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.area-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 224, 142, 0.1);
    color: #00e08e;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 224, 142, 0.2);
}

.area-badge:hover {
    transform: translateY(-2px);
    background: rgba(0, 224, 142, 0.2);
    box-shadow: 0 4px 12px rgba(0, 224, 142, 0.1);
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .city-grid {
        grid-template-columns: 1fr;
    }

    .city-sidebar {
        position: relative;
        top: auto;
        order: -1; /* Move sidebar to top on mobile */
        max-height: none; /* Remove max-height constraint on mobile */
        overflow-y: visible; /* Remove scroll on mobile */
    }

    .contact-card {
        position: relative; /* Remove sticky positioning on mobile */
        top: 0;
        margin: 0 auto 2rem;
        max-width: 600px;
    }

    .city-container {
        padding: 2rem 1rem;
    }

    .city-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .city-content {
        padding: 1rem;
    }

    .city-lead {
        font-size: 1.1rem;
    }

    .highlights-section {
        padding: 1.5rem;
    }
}

/* Cities Container Styles */
.cities-container {
    background: #252525;
    padding: 4rem 2rem;
    margin-bottom: 0;
    text-align: center;
}

.cities-title {
    color: #00e08e;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.city-services-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #333;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.city-services-group:hover {
    transform: translateY(-5px);
}

.city-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.city-link.main-city {
    font-size: 1.25rem;
    font-weight: 500;
    color: #00e08e;
    border-bottom: 1px solid #444;
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
}

.city-link.service-link {
    color: #aaa;
    font-size: 0.9rem;
    padding: 0.75rem;
}

.city-link.service-link:hover {
    background: #404040;
    color: #fff;
}

@media (max-width: 768px) {
    .cities-container {
        padding: 3rem 1rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .city-services-group {
        padding: 1rem;
    }
}

/* Update city page title styles */
.city-hero .city-container h1 {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.city-hero .city-container .city-lead {
    text-align: center;
    margin: 1rem auto 0;
    max-width: 800px;
}

@media (max-width: 768px) {
    .cities-container {
        padding: 3rem 1rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* City Service Page Styles */
.service-features {
    background: linear-gradient(145deg, #252525, #2a2a2a);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-item {
    background: rgba(51, 51, 51, 0.6);
    padding: 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 224, 142, 0.15);
    background: rgba(51, 51, 51, 0.8);
}

.feature-item i {
    color: #00e08e;
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

.local-expertise {
    background: linear-gradient(145deg, #252525, #2a2a2a);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.local-expertise h2 {
    color: #00e08e;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.local-expertise h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #00e08e;
    border-radius: 3px;
}

.local-expertise ul {
    list-style: none;
    padding: 0;
}

.local-expertise li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(51, 51, 51, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.local-expertise li:hover {
    transform: translateX(5px);
    background: rgba(51, 51, 51, 0.8);
}

.local-expertise li i {
    color: #FFD700;
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(51, 51, 51, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.area-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 224, 142, 0.1);
    color: #00e08e;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 224, 142, 0.2);
}

.area-badge:hover {
    transform: translateY(-2px);
    background: rgba(0, 224, 142, 0.2);
    box-shadow: 0 4px 12px rgba(0, 224, 142, 0.1);
}

.contact-card .btn {
    display: inline-block;
    width: 100%;
    background: #00e08e;
    color: #1a1a1a;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #00e08e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.contact-card .btn:hover {
    background: transparent;
    color: #00e08e;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 224, 142, 0.2);
}

@media (max-width: 768px) {
    .service-features,
    .local-expertise,
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card {
        position: static;
        margin-top: 2rem;
    }
    
    .feature-item,
    .local-expertise li {
        padding: 1rem;
    }
}

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

.service-intro {
    margin: 2rem 0;
}

.service-intro .lead {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
}

/* Update existing city page styles */
.city-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.city-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    position: relative;
}

/* Enhanced mobile responsiveness */
@media (max-width: 968px) {
    .city-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .city-sidebar {
        order: -1;
    }

    .contact-card {
        position: relative;
        top: 0;
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    .service-areas {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .city-content {
        padding: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .city-main h1 {
        font-size: 2rem;
    }

    .service-intro .lead {
        font-size: 1.1rem;
    }

    .service-areas {
        padding: 1rem;
        gap: 0.5rem;
    }

    .area-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .city-main h1 {
        font-size: 1.75rem;
    }

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

    .service-features,
    .local-expertise {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Cards */
.service-card {
    background: linear-gradient(145deg, #252525, #2a2a2a);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 224, 142, 0.15);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(0, 224, 142, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: rgba(0, 224, 142, 0.2);
    transform: scale(1.1);
}

.service-icon-wrapper i {
    font-size: 1.8rem;
    color: #00e08e;
}

.service-title-link {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 1rem 0;
    display: block;
    transition: color 0.3s ease;
}

.service-title-link:hover {
    color: #00e08e;
}

.service-card p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00e08e;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(0, 224, 142, 0.1);
}

.service-cta i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-cta:hover {
    background: rgba(0, 224, 142, 0.2);
}

.service-cta:hover i {
    transform: translateX(4px);
}

.services-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00e08e;
    border-radius: 3px;
}

/* Responsive adjustments for service cards */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .service-title-link {
        font-size: 1.2rem;
    }

    .service-cta {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Why Choose Us Section */
.local-expertise {
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.section-intro {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.expertise-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.expertise-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.expertise-card p {
    margin: 0;
    line-height: 1.5;
}