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

:root {
    /* Colors */
    --primary-color: #00C300;        /* Growth Green - for branding */
    --primary-dark: #00A300;
    --primary-light: #33D633;
    --secondary-color: #2563eb;      /* Trust Blue - for support elements */
    --secondary-dark: #1d4ed8;
    --accent-color: #00C300;         /* Same as primary for consistency */
    --success-color: #00C300;        /* Results Green */
    --cta-color: #00A300;            /* Action Green */
    --cta-hover: #008A00;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn--primary:hover {
    background-color: var(--cta-hover);
    box-shadow: var(--shadow-medium);
}

.btn--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.btn--large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.nav__logo {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 30px;
    width: auto;
    /* max-width: 150px; */
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    margin: 0;
}

.nav__link {
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--text-dark);
}

.nav__link.active {
    color: var(--text-dark);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-large);
    min-width: 220px;
    padding: var(--spacing-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-link {
    display: block;
    padding: var(--spacing-sm) var(--spacing-lg);
    color: var(--text-dark);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    border: none;
}

.nav__dropdown-link:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.nav__link i {
    font-size: var(--font-size-xs);
    margin-left: var(--spacing-xs);
    transition: transform 0.3s ease;
}

.nav__dropdown:hover .nav__link i {
    transform: rotate(180deg);
}

.nav__buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 var(--spacing-3xl);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
}

.hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.hero__highlight {
    color: var(--primary-color);
    position: relative;
}

.hero__highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 2px;
}

.hero__description {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-3xl);
}

.hero__stats {
    display: flex;
    gap: var(--spacing-xl);
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.stat__label {
    font-size: var(--font-size-sm);
    color: var(--text-dark);
}

/* Hero Visual */
.hero__visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__graphic {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
}

/* Hero Service Cards */
.hero__card {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border: 1px solid var(--border-color);
}

.hero__card-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.hero__card-description {
    font-size: var(--font-size-sm);
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.service__icon {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); */
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.service__icon i {
    font-size: var(--font-size-2xl);
    color: var(--text-white);
}

.service__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.service__description {
    font-size: var(--font-size-sm);
    color: var(--text-dark);
    line-height: 1.5;
}

/* Background subtle elements */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 195, 0, 0.02) 0%, rgba(37, 99, 235, 0.02) 100%);
    border-radius: var(--border-radius-lg);
}

/* Sections */
section {
    padding: var(--spacing-3xl) 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section__title {
    font-size: var(--font-size-3xl);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* Our Clients Section */
.clients {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-primary);
}

.clients .section__header {
    margin-bottom: var(--spacing-2xl);
}

.clients__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.client__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.6;
}

.client__img {
    max-height: 50px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
}

/* Testimonial Section */
.testimonial {
    padding: var(--spacing-3xl) 0;
    /* background-color: var(--bg-secondary); */
}

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

.testimonial__quote {
    margin-bottom: var(--spacing-xl);
}

.testimonial__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-lg) auto;
    display: block;
}

.testimonial__text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    font-weight: var(--font-weight-medium);
}

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

.testimonial__name {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.testimonial__title {
    font-size: var(--font-size-base);
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    margin: 0;
}

/* Services Section */
.services {
    background-color: var(--bg-primary);
}

.services__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1000px;
    margin: var(--spacing-3xl) auto;
}

.service__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    padding: 0;
    margin: 0 0 var(--spacing-2xl) 0;
}

.services__list .service__row:last-child {
    margin-bottom: 0;
}

.service__row--reverse {
    /* No special styling needed - HTML order handles the layout */
}

.service__visual, .service__content {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service__visual {
    /* No extra styles needed, just fill cell */
}

.service__image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #e5e7eb;
    border-radius: var(--border-radius-lg);
    border: none;
    margin: 0;
    padding: 0;
}

.service__title {
    color: var(--text-dark);
    font-size: var(--font-size-2xl);
    margin: 0;
    font-weight: var(--font-weight-semibold);
}

.service__description {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: var(--font-size-base);
    margin: 0;
}

.service__features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0 0 0;
    display: flex;
    flex-direction: column;
}

.service__features li {
    position: relative;
    padding: var(--spacing-sm) 0;
    color: var(--text-dark);
    font-size: var(--font-size-sm);
    border-bottom: 1px solid #e2e8f0;
}

.service__features li:last-child {
    border-bottom: none;
}

/* Why Choose Us */
.why-choose {
    background-color: var(--bg-primary);
    padding: var(--spacing-3xl) 0;
}

.why-choose__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.features__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature {
    display: flex;
    gap: var(--spacing-md);
}

.feature__icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature__icon i {
    color: var(--text-white);
    font-size: var(--font-size-lg);
}

.feature__content h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.feature__content p {
    margin: 0;
}

/* Mock Browser Window */
.dashboard__mockup {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.mockup__header {
    background: #f5f5f5;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.mockup__controls {
    display: flex;
    gap: var(--spacing-xs);
}

.mockup__controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.mockup__controls span:nth-child(1) {
    background: #ff5f57;
}

.mockup__controls span:nth-child(2) {
    background: #ffbd2e;
}

.mockup__controls span:nth-child(3) {
    background: #28ca42;
}

.mockup__title {
    color: var(--text-dark);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.mockup__content {
    padding: 0;
}

/* Analytics Chart Styles */
.analytics__chart {
    background: var(--bg-primary);
    border-radius: 0;
    padding: var(--spacing-lg);
    border: none;
    box-shadow: none;
}

.chart__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.chart__title {
    color: var(--text-dark);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin: 0;
}

.chart__period {
    color: var(--text-dark);
    font-size: var(--font-size-sm);
}

.line__chart {
    height: 200px;
    position: relative;
}

.chart__grid {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px 0;
}

.chart__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.data__point {
    position: absolute;
    z-index: 2;
}

.point__dot {
    display: block;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    transform: translate(-50%, 50%);
    box-shadow: 0 2px 8px rgba(0, 195, 0, 0.3);
}

.point__label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--font-size-sm);
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

.data__point::before {
    content: attr(data-value);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--bg-primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.data__point:hover::before {
    opacity: 1;
}

.data__point:hover .point__dot {
    background: var(--secondary-color);
    transform: translate(-50%, 50%) scale(1.2);
    transition: all 0.3s ease;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    text-align: center;
}

.cta__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.cta__title {
    color: var(--text-white);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
}

.cta__description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.cta .btn--primary {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.cta .btn--primary:hover {
    background-color: var(--bg-secondary);
    color: var(--cta-hover);
}

.cta .btn--secondary {
    border-color: var(--text-white);
    color: var(--text-white);
}

.cta .btn--secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-xl);
}

.footer__logo {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    display: block;
}

.footer__logo-img {
    height: 25px;
    width: auto;
    /* max-width: 140px; */
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

.footer__contact {
    margin-bottom: var(--spacing-lg);
}

.footer__contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer__contact a:hover {
    color: var(--primary-color);
}

.footer__social {
    display: flex;
    gap: var(--spacing-md);
}

.social__link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.social__link:hover {
    background: var(--primary-color);
}

.x-icon {
    font-size: var(--font-size-lg);
    font-weight: bold;
    display: inline-block;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.footer__title {
    color: var(--text-white);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: var(--spacing-sm);
}

.footer__list a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer__list a:hover {
    color: var(--primary-color);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer__legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.6);
}

.footer__legal a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav__menu.show {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .nav__link {
        font-size: var(--font-size-lg);
    }
    
    .nav__dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: var(--spacing-lg);
    }
    
    .nav__dropdown-link {
        font-size: var(--font-size-base);
        padding: var(--spacing-sm) 0;
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: var(--spacing-lg);
        right: var(--spacing-lg);
    }
    
    .nav__toggle {
        display: block;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .hero__title {
        font-size: var(--font-size-3xl);
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .hero__visual {
        height: 300px;
    }
    
    .clients__grid {
        gap: var(--spacing-lg);
        justify-content: space-around;
    }
    
    .client__img {
        max-height: 40px;
        max-width: 120px;
    }
    
    .service__row,
    .service__row--reverse {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
    .services__list .service__row:last-child {
        margin-bottom: 0;
    }
    .service__image-placeholder {
        width: 100%;
        height: 200px;
        max-width: 100%;
    }
    
    .why-choose__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

.service__content {
    padding: var(--spacing-2xl);
}

@media (max-width: 768px) {
    .service__content {
        padding: var(--spacing-lg);
    }
}

/* Full-width green stripe for services section */
.services__stripe {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #444444;
    color: #fff;
    padding: var(--spacing-3xl) 0 var(--spacing-3xl) 0;
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
    margin-top: 0;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .services__stripe {
        padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
        border-radius: 0;
    }
}
.services__stripe-inner {
    max-width: var(--container-max-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}
.services__stripe-title {
    text-align: left;
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.services__stripe-desc {
    text-align: left;
    margin: 0;
    width: 100%;
    max-width: none;
    color: #fff;
    opacity: 0.95;
    font-size: var(--font-size-lg);
}
@media (max-width: 768px) {
    .services__stripe-title {
        font-size: 2.25rem;
    }
    .services__stripe-desc {
        font-size: var(--font-size-base);
    }
}

/* SEO Page Specific Styles */
.seo-page {
    padding-top: 0;
}

.seo-page main {
    padding-top: 0;
}

.seo-page .page-content {
    padding-top: 0;
    padding-bottom: 0;
}

.seo-page .page-content .container {
    padding-top: 0;
    padding-bottom: 0;
}

.seo-page .page__content {
    padding-top: 0;
    padding-bottom: 0;
}

/* Local SEO Page Specific Styles */
.local-seo-page {
    padding-top: 0;
}

.local-seo-page main {
    padding-top: 0;
}

.local-seo-page .page-content {
    padding-top: 0;
    padding-bottom: 0;
}

.local-seo-page .page__content {
    padding-top: 0;
    padding-bottom: 0;
}

/* Local SEO Map Visualization */
.local-seo__map {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-large);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 400px;
}

.map__container {
    text-align: center;
}

.map__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.map__graphic {
    position: relative;
    height: 200px;
    background: #f8fafc;
    border-radius: var(--border-radius);
    margin-bottom: 0;
    overflow: hidden;
}

.map__graphic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/map.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    pointer-events: none;
}

.map__location {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map__location--primary {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.map__location--primary .location__pin {
    background: var(--primary-color);
    color: white;
    transform: scale(1.2);
    z-index: 3;
}

.location__pin {
    width: 30px;
    height: 30px;
    background: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.location__pin i {
    font-size: 14px;
}

.location__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    min-width: 80px;
}

.location__name {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
}

.location__rank {
    font-size: var(--font-size-xs);
    color: var(--text-dark);
}

.map__stats {
    display: flex;
    justify-content: space-around;
    gap: var(--spacing-md);
}

.map__stats .stat__item {
    text-align: center;
}

.map__stats .stat__number {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.map__stats .stat__label {
    font-size: var(--font-size-xs);
    color: var(--text-dark);
}

/* Local Benefits Section */
.local-benefits {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

.benefits__content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.benefits__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.benefit__stat {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit__stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.stat__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat__icon i {
    font-size: var(--font-size-xl);
    color: white;
}

.stat__content {
    display: flex;
    flex-direction: column;
}

.benefit__stat .stat__number {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat__description {
    font-size: var(--font-size-sm);
    color: var(--text-dark);
    line-height: 1.4;
}

/* Local SEO Services Section */
.local-seo__services {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

/* Local SEO Process Section */
.local-seo__process {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

/* Local SEO FAQ Section */
.local-seo__faq {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

/* Local SEO CTA Section */
.local-seo__cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--success-color) 100%);
    padding: var(--spacing-3xl) 0;
    color: white;
}

.local-seo__cta .cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.local-seo__cta .cta__content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: var(--spacing-lg);
}

.local-seo__cta .cta__content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
}

.local-seo__cta .cta__features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.local-seo__cta .cta__features .feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
}

.local-seo__cta .cta__features .feature i {
    color: rgba(255, 255, 255, 0.8);
}

.local-seo__cta .cta__features .feature span {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.local-seo__cta .cta__buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.local-seo__cta .btn--primary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.local-seo__cta .btn--primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.local-seo__cta .btn--secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.local-seo__cta .btn--secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.5;
    }
}

/* Responsive Design for Local SEO */
@media (max-width: 768px) {
    .benefits__stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .benefit__stat {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .local-seo__cta .cta__features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .local-seo__cta .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .local-seo__cta .cta__content h2 {
        font-size: var(--font-size-2xl);
    }
}

/* SEO Hero Section */
.seo__hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 var(--spacing-3xl);
    position: relative;
    overflow: hidden;
}

.seo__hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 195, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

/* SEO Hero Content - Specific to SEO page */
.seo__hero .hero__content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* SEO Hero Text Elements */
.seo__hero .hero__text h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.seo__hero .hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.seo__hero .hero__cta {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.seo__hero .hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo__chart {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-large);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 400px;
}

.chart__container {
    text-align: center;
}

.chart__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
}

.chart__graph {
    position: relative;
}

.chart__bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 200px;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--primary-light));
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.chart__labels {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-sm);
    color: var(--text-dark);
}

/* Trust Indicators */
.trust__indicators {
    background: var(--primary-color);
    padding: var(--spacing-xl) 0;
    color: white;
}

.trust__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.trust__item i {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
}

.trust__item span {
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
}

/* SEO Services Section */
.seo__services {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.service__card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    /* box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color); */
    transition: var(--transition);
    position: relative;
}

.service__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.service__icon i {
    font-size: var(--font-size-xl);
    color: white;
}

.service__card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.service__card p {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.service__features {
    list-style: none;
    padding: 0;
}

.service__features li {
    padding: var(--spacing-sm) 0;
    color: var(--text-dark);
    font-size: var(--font-size-sm);
    border-bottom: 1px solid #e2e8f0;
}

.service__features li:last-child {
    border-bottom: none;
}

/* Process Section */
.seo__process {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

.process__timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.process__step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xl);
    position: relative;
}

.step__number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step__content {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    flex: 1;
}

.step__content h3 {
    font-size: var(--font-size-xl);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.step__content p {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.step__deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.step__deliverables span {
    background: #f1f5f9;
    color: var(--text-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

/* FAQ Section */
.seo__faq {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

.faq__container {
    margin-top: var(--spacing-2xl);
}

.faq__item {
    background: white;
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq__question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq__question:hover {
    background: #f8fafc;
}

.faq__question h3 {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin: 0;
}

.faq__question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    display: none;
}

.faq__item.active .faq__answer {
    display: block;
}

.faq__answer p {
    color: var(--text-dark);
    margin: 0;
}

/* CTA Section */
.seo__cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta__content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.cta__content h2 {
    font-size: var(--font-size-4xl);
    color: white;
    margin-bottom: var(--spacing-lg);
}

.cta__content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
}

.cta__features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.cta__features .feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.cta__features .feature i {
    color: rgba(255, 255, 255, 0.9);
}

.cta__features .feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-medium);
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.seo__cta .btn--primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.seo__cta .btn--primary:hover {
    background: #f8fafc;
}

.seo__cta .btn--secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.seo__cta .btn--secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design for SEO Page */
@media (max-width: 768px) {
    .seo__hero .hero__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .seo__hero .hero__text h1 {
        font-size: var(--font-size-3xl);
    }
    
    .seo__hero .hero__cta {
        justify-content: center;
    }
    
    .trust__content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .process__timeline::before {
        display: none;
    }
    
    .process__step {
        flex-direction: column;
        text-align: center;
    }
    
    .cta__content h2 {
        font-size: var(--font-size-3xl);
    }
    
    .cta__features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Local Listing Management Page Styles */
.listing-management-page {
    background: #ffffff;
}

.listing-management-page main {
    padding-top: 0;
}

.listing-management-page .page-content {
    padding-top: 0;
    padding-bottom: 0;
}

.listing-management-page .page__content {
    padding-top: 0;
    padding-bottom: 0;
}

/* Listing Directories Visualization */
.listing__directories {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-large);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 400px;
}

.directories__container {
    text-align: center;
}

.directories__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.directories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.directory__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-sm);
    background: #f8fafc;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.directory__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.directory__logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
    border-radius: var(--border-radius);
}

.directory__item--google .directory__logo {
    background: linear-gradient(45deg, #4285f4, #34a853);
    color: white;
}

.directory__item--yelp .directory__logo {
    background: linear-gradient(45deg, #d32323, #ff1a1a);
    color: white;
}

.directory__item--facebook .directory__logo {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
    color: white;
}

.directory__item--apple .directory__logo {
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
}

.directory__item--bing .directory__logo {
    background: linear-gradient(45deg, #00809d, #0078d4);
    color: white;
}

.directory__item--foursquare .directory__logo {
    background: linear-gradient(45deg, #F94877, #FF6B9D);
    color: white;
}

.directory__logo i {
    font-size: 16px;
}

.directory__name {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.directory__status {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: var(--font-weight-bold);
}

.directory__status--verified {
    background: var(--primary-color);
    color: white;
}

.directories__summary {
    display: flex;
    justify-content: space-around;
    gap: var(--spacing-md);
}

.directories__summary .summary__item {
    text-align: center;
}

.directories__summary .summary__number {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.directories__summary .summary__label {
    font-size: var(--font-size-xs);
    color: var(--text-dark);
}

/* Listing Benefits Section */
.listing-benefits {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

/* Listing Services Section */
.listing__services {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

/* Listing Process Section */
.listing__process {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

/* Listing FAQ Section */
.listing__faq {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

/* Listing CTA Section */
.listing__cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
}

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

.listing__cta .cta__content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.listing__cta .cta__content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.listing__cta .cta__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.listing__cta .cta__features .feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

.listing__cta .cta__features .feature i {
    color: white;
}

.listing__cta .cta__features .feature span {
    color: white;
    font-weight: var(--font-weight-medium);
}

.listing__cta .cta__buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.listing__cta .btn--primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.listing__cta .btn--primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

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

.listing__cta .btn--secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Mobile adjustments for listing management */
@media (max-width: 768px) {
    .directories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .directory__item {
        padding: var(--spacing-xs);
    }
    
    .directory__name {
        font-size: 10px;
    }
    
    .listing__cta .cta__features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .listing__cta .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .listing__cta .cta__content h2 {
        font-size: var(--font-size-2xl);
    }
}

/* Listing Management Service Icons - Individual Colors */
.listing-management-page .service__icon {
    background: #f8fafc;
}

.listing-management-page .service__icon i {
    color: var(--primary-color);
}

/* Directory Submissions - Blue */
.listing-management-page .service__card:nth-child(1) .service__icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.listing-management-page .service__card:nth-child(1) .service__icon i {
    color: #1d4ed8;
}

/* NAP Consistency - Green */
.listing-management-page .service__card:nth-child(2) .service__icon {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.listing-management-page .service__card:nth-child(2) .service__icon i {
    color: #047857;
}

/* Listing Enhancement - Purple */
.listing-management-page .service__card:nth-child(3) .service__icon {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.listing-management-page .service__card:nth-child(3) .service__icon i {
    color: #6d28d9;
}

/* Monitoring & Protection - Orange */
.listing-management-page .service__card:nth-child(4) .service__icon {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}

.listing-management-page .service__card:nth-child(4) .service__icon i {
    color: #c2410c;
}

/* Review Management - Yellow/Gold */
.listing-management-page .service__card:nth-child(5) .service__icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.listing-management-page .service__card:nth-child(5) .service__icon i {
    color: #d97706;
}

/* Analytics & Reporting - Teal */
.listing-management-page .service__card:nth-child(6) .service__icon {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
}

.listing-management-page .service__card:nth-child(6) .service__icon i {
    color: #0f766e;
}

/* SEO Service Icons - Individual Colors */
.seo-page .service__icon {
    background: #f8fafc;
}

.seo-page .service__icon i {
    color: var(--primary-color);
}

/* Keyword Research - Red */
.seo-page .service__card:nth-child(1) .service__icon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.seo-page .service__card:nth-child(1) .service__icon i {
    color: #dc2626;
}

/* Technical SEO - Indigo */
.seo-page .service__card:nth-child(2) .service__icon {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.seo-page .service__card:nth-child(2) .service__icon i {
    color: #4338ca;
}

/* On-Page Optimization - Emerald */
.seo-page .service__card:nth-child(3) .service__icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.seo-page .service__card:nth-child(3) .service__icon i {
    color: #047857;
}

/* Link Building - Cyan */
.seo-page .service__card:nth-child(4) .service__icon {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
}

.seo-page .service__card:nth-child(4) .service__icon i {
    color: #0891b2;
}

/* Content Strategy - Pink */
.seo-page .service__card:nth-child(5) .service__icon {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.seo-page .service__card:nth-child(5) .service__icon i {
    color: #be185d;
}

/* Analytics & Reporting - Amber */
.seo-page .service__card:nth-child(6) .service__icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.seo-page .service__card:nth-child(6) .service__icon i {
    color: #d97706;
}

/* Removed checkmarks - using colored separator lines instead */

/* SEO Page - Colored Separator Lines to Match Service Icons */
.seo-page .service__card:nth-child(1) .service__features li {
    border-bottom-color: #ef4444;
}

.seo-page .service__card:nth-child(2) .service__features li {
    border-bottom-color: #6366f1;
}

.seo-page .service__card:nth-child(3) .service__features li {
    border-bottom-color: #10b981;
}

.seo-page .service__card:nth-child(4) .service__features li {
    border-bottom-color: #06b6d4;
}

.seo-page .service__card:nth-child(5) .service__features li {
    border-bottom-color: #ec4899;
}

.seo-page .service__card:nth-child(6) .service__features li {
    border-bottom-color: #f59e0b;
}

/* Listing Management Page - Colored Separator Lines to Match Service Icons */
.listing-management-page .service__card:nth-child(1) .service__features li {
    border-bottom-color: #3b82f6;
}

.listing-management-page .service__card:nth-child(2) .service__features li {
    border-bottom-color: #10b981;
}

.listing-management-page .service__card:nth-child(3) .service__features li {
    border-bottom-color: #8b5cf6;
}

.listing-management-page .service__card:nth-child(4) .service__features li {
    border-bottom-color: #f97316;
}

.listing-management-page .service__card:nth-child(5) .service__features li {
    border-bottom-color: #f59e0b;
}

.listing-management-page .service__card:nth-child(6) .service__features li {
    border-bottom-color: #14b8a6;
}

/* Local SEO Service Icons - Individual Colors */
.local-seo-page .service__icon {
    background: #f8fafc;
}

.local-seo-page .service__icon i {
    color: var(--primary-color);
}

/* Google My Business - Google Colors (Blue/Green) */
.local-seo-page .service__card:nth-child(1) .service__icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #1a73e8;
}

.local-seo-page .service__card:nth-child(1) .service__icon i {
    color: #1a73e8;
}

/* Local Citations - Purple */
.local-seo-page .service__card:nth-child(2) .service__icon {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.local-seo-page .service__card:nth-child(2) .service__icon i {
    color: #6d28d9;
}

/* Review Management - Gold/Yellow */
.local-seo-page .service__card:nth-child(3) .service__icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.local-seo-page .service__card:nth-child(3) .service__icon i {
    color: #d97706;
}

/* Local Link Building - Teal */
.local-seo-page .service__card:nth-child(4) .service__icon {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
}

.local-seo-page .service__card:nth-child(4) .service__icon i {
    color: #0f766e;
}

/* Local Keyword Optimization - Rose */
.local-seo-page .service__card:nth-child(5) .service__icon {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.local-seo-page .service__card:nth-child(5) .service__icon i {
    color: #be185d;
}

/* Local Analytics - Orange */
.local-seo-page .service__card:nth-child(6) .service__icon {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}

.local-seo-page .service__card:nth-child(6) .service__icon i {
    color: #c2410c;
}

/* Local SEO Page - Colored Separator Lines to Match Service Icons */
.local-seo-page .service__card:nth-child(1) .service__features li {
    border-bottom-color: #1a73e8;
}

.local-seo-page .service__card:nth-child(2) .service__features li {
    border-bottom-color: #8b5cf6;
}

.local-seo-page .service__card:nth-child(3) .service__features li {
    border-bottom-color: #f59e0b;
}

.local-seo-page .service__card:nth-child(4) .service__features li {
    border-bottom-color: #14b8a6;
}

.local-seo-page .service__card:nth-child(5) .service__features li {
    border-bottom-color: #ec4899;
}

.local-seo-page .service__card:nth-child(6) .service__features li {
    border-bottom-color: #f97316;
}

/* PPC Page Styling */
.ppc-page {
    background: #ffffff;
}

.ppc-page main {
    padding-top: 0;
}

.ppc-page .page-content {
    padding: 0;
}

.ppc-page .page__content {
    padding: 0;
    background: #ffffff;
}

/* PPC Hero Section */
.ppc__hero {
    padding: 120px 0 var(--spacing-3xl);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.ppc__hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 195, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.ppc__hero .hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

.ppc__hero .hero__text h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    line-height: 1.1;
}

.ppc__hero .hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.ppc__hero .hero__cta {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.ppc__hero .hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* PPC Dashboard Visual */
.ppc__dashboard {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.dashboard__container {
    width: 100%;
}

.dashboard__title {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid #f1f5f9;
    text-align: center;
}

.dashboard__title h3 {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin: 0;
}

.dashboard__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.metric__card {
    background: #f8fafc;
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    border: 1px solid #e2e8f0;
}

.metric__number {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: 2px;
}

.metric__label {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--text-dark);
}

/* PPC Benefits Section */
.ppc-benefits {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

/* PPC Services Section */
.ppc__services {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

/* PPC Process Section */
.ppc__process {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

/* PPC FAQ Section */
.ppc__faq {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

/* PPC CTA Section */
.ppc__cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

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

.ppc__cta .cta__content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.ppc__cta .cta__content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.ppc__cta .cta__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.ppc__cta .cta__features .feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

.ppc__cta .cta__features .feature i {
    color: white;
}

.ppc__cta .cta__features .feature span {
    color: white;
    font-weight: var(--font-weight-medium);
}

.ppc__cta .cta__buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.ppc__cta .btn--primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.ppc__cta .btn--primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

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

.ppc__cta .btn--secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* PPC Service Icons - Individual Colors */
.ppc-page .service__icon {
    background: #f8fafc;
}

.ppc-page .service__icon i {
    color: var(--primary-color);
}

/* Google Ads - Google Colors */
.ppc-page .service__card:nth-child(1) .service__icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #1a73e8;
}

.ppc-page .service__card:nth-child(1) .service__icon i {
    color: #1a73e8;
}

/* Campaign Strategy - Red */
.ppc-page .service__card:nth-child(2) .service__icon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #ef4444;
}

.ppc-page .service__card:nth-child(2) .service__icon i {
    color: #dc2626;
}

/* Campaign Optimization - Green */
.ppc-page .service__card:nth-child(3) .service__icon {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #10b981;
}

.ppc-page .service__card:nth-child(3) .service__icon i {
    color: #047857;
}

/* Conversion Tracking - Purple */
.ppc-page .service__card:nth-child(4) .service__icon {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-color: #8b5cf6;
}

.ppc-page .service__card:nth-child(4) .service__icon i {
    color: #6d28d9;
}

/* Reporting & Account Management - Orange */
.ppc-page .service__card:nth-child(5) .service__icon {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border-color: #f97316;
}

.ppc-page .service__card:nth-child(5) .service__icon i {
    color: #c2410c;
}

/* PPC Page - Colored Separator Lines to Match Service Icons */
.ppc-page .service__card:nth-child(1) .service__features li {
    border-bottom-color: #1a73e8;
}

.ppc-page .service__card:nth-child(2) .service__features li {
    border-bottom-color: #ef4444;
}

.ppc-page .service__card:nth-child(3) .service__features li {
    border-bottom-color: #10b981;
}

.ppc-page .service__card:nth-child(4) .service__features li {
    border-bottom-color: #8b5cf6;
}

.ppc-page .service__card:nth-child(5) .service__features li {
    border-bottom-color: #f97316;
}

/* Bing Ads - Microsoft Blue */
.ppc-page .service__card:nth-child(6) .service__icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #0078d4;
}

.ppc-page .service__card:nth-child(6) .service__icon i {
    color: #0078d4;
}

.ppc-page .service__card:nth-child(6) .service__features li {
    border-bottom-color: #0078d4;
}

/* Mobile adjustments for PPC page */
@media (max-width: 768px) {
    .ppc__hero .hero__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .ppc__hero .hero__text h1 {
        font-size: var(--font-size-2xl);
    }
    
    .ppc__hero .hero__cta {
        justify-content: center;
    }
    
    .dashboard__metrics {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .ppc__cta .cta__features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .ppc__cta .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ppc__cta .cta__content h2 {
        font-size: var(--font-size-2xl);
    }
}

/* Content Marketing Page Styles */
.content-marketing-page {
    background: #ffffff;
}

.content-marketing-page main {
    padding-top: 0;
}

.content-marketing-page .page-content {
    padding-top: 0;
    padding-bottom: 0;
}

.content-marketing-page .page__content {
    padding-top: 0;
    padding-bottom: 0;
}

.content-marketing__hero {
    padding: 120px 0 var(--spacing-3xl);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.content-marketing__hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 195, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.content-marketing__hero .hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.content-marketing__hero .hero__text h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    line-height: 1.1;
}

.content-marketing__hero .hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.content-marketing__hero .hero__cta {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.content-marketing__hero .hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Content Marketing Funnel Visualization */
.content__funnel {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-large);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 400px;
}

.funnel__container {
    text-align: center;
}

.funnel__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.funnel__stages {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.funnel__stage {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: #f8fafc;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.funnel__stage:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.stage__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: var(--font-size-lg);
}

.funnel__stage--awareness .stage__icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
}

.funnel__stage--consideration .stage__icon {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #be185d;
}

.funnel__stage--conversion .stage__icon {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #047857;
}

.stage__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.stage__name {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    font-size: var(--font-size-sm);
}

.stage__metric {
    font-size: var(--font-size-xs);
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

/* Content Benefits Section */
.content-benefits {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.content-marketing__services {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

.content-marketing__process {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.content-marketing__faq {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

.content-marketing__cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.content-marketing__cta .cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.content-marketing__cta .cta__content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.content-marketing__cta .cta__content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.content-marketing__cta .cta__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.content-marketing__cta .cta__features .feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

.content-marketing__cta .cta__features .feature i {
    color: white;
}

.content-marketing__cta .cta__features .feature span {
    color: white;
    font-weight: var(--font-weight-medium);
}

.content-marketing__cta .cta__buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.content-marketing__cta .btn--primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.content-marketing__cta .btn--primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

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

.content-marketing__cta .btn--secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Content Marketing Service Icons - Individual Colors */
.content-marketing-page .service__icon {
    background: #f8fafc;
}

.content-marketing-page .service__icon i {
    color: var(--primary-color);
}

/* Content Strategy - Yellow */
.content-marketing-page .service__card:nth-child(1) .service__icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
}

.content-marketing-page .service__card:nth-child(1) .service__icon i {
    color: #d97706;
}

/* Article & Blog Writing - Blue */
.content-marketing-page .service__card:nth-child(2) .service__icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
}

.content-marketing-page .service__card:nth-child(2) .service__icon i {
    color: #1d4ed8;
}

/* Social Media - Pink */
.content-marketing-page .service__card:nth-child(3) .service__icon {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    border-color: #ec4899;
}

.content-marketing-page .service__card:nth-child(3) .service__icon i {
    color: #be185d;
}

/* Content Marketing Page - Colored Separator Lines to Match Service Icons */
.content-marketing-page .service__card:nth-child(1) .service__features li {
    border-bottom-color: #f59e0b;
}

.content-marketing-page .service__card:nth-child(2) .service__features li {
    border-bottom-color: #3b82f6;
}

.content-marketing-page .service__card:nth-child(3) .service__features li {
    border-bottom-color: #ec4899;
}

/* Mobile adjustments for Content Marketing page */
@media (max-width: 768px) {
    .content-marketing__hero .hero__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .content-marketing__hero .hero__text h1 {
        font-size: var(--font-size-2xl);
    }
    
    .content-marketing__hero .hero__cta {
        justify-content: center;
    }
    
    .funnel__stages {
        gap: var(--spacing-sm);
    }
    
    .content-marketing__cta .cta__features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .content-marketing__cta .cta__content h2 {
        font-size: var(--font-size-2xl);
    }
}

/* Web Development Page Styles */
.web-development-page {
    background: #ffffff;
}

.web-development-page main {
    padding-top: 0;
}

.web-development-page .page-content {
    padding-top: 0;
    padding-bottom: 0;
}

.web-development-page .page__content {
    padding-top: 0;
    padding-bottom: 0;
}

.web-development__hero {
    padding: 120px 0 var(--spacing-3xl);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.web-development__hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 195, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.web-development__hero .hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.web-development__hero .hero__text h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    line-height: 1.1;
}

.web-development__hero .hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.web-development__hero .hero__cta {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.web-development__hero .hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Website Development Showcase */
.website__showcase {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-large);
    padding: var(--spacing-xl);
    width: 100%;
    max-width: 400px;
}

.showcase__container {
    text-align: center;
}

.showcase__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.website__devices {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: flex-end;
}

.device {
    background: #1e293b;
    border-radius: var(--border-radius);
    padding: 4px;
    border: 2px solid #334155;
}

.device--desktop {
    width: 140px;
    height: 90px;
}

.device--mobile {
    width: 70px;
    height: 120px;
    border-radius: 12px;
}

.device__screen {
    background: white;
    border-radius: 4px;
    height: 100%;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
}

.device--mobile .device__screen {
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}

.screen__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.device--mobile .screen__content {
    gap: 1px;
}

.content__header {
    background: #f8fafc;
    height: 8px;
    border-radius: 1px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 2px;
    gap: 1px;
}

.content__header::before {
    content: '';
    width: 12px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1px;
}

.content__header::after {
    content: '';
    width: 8px;
    height: 2px;
    background: #64748b;
    border-radius: 1px;
    margin-left: auto;
}

.device--mobile .content__header {
    height: 6px;
    padding: 0 1px;
}

.device--mobile .content__header::before {
    width: 8px;
    height: 2px;
}

.device--mobile .content__header::after {
    width: 6px;
    height: 1px;
}

.content__hero {
    background: linear-gradient(135deg, var(--primary-color), #22c55e);
    height: 18px;
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content__hero::before {
    content: '';
    width: 20px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1px;
}

.content__hero::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 10px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1px;
}

.device--mobile .content__hero {
    height: 14px;
}

.device--mobile .content__hero::before {
    width: 16px;
    height: 2px;
}

.device--mobile .content__hero::after {
    width: 8px;
    height: 1px;
}

.content__sections {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 1px;
}

.device--mobile .content__sections {
    gap: 1px;
    padding: 0;
}

.section__block {
    height: 8px;
    border-radius: 1px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 2px;
}

.section__block:nth-child(1) {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.section__block:nth-child(1)::before {
    content: '';
    width: 16px;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
}

.section__block:nth-child(1)::after {
    content: '';
    width: 12px;
    height: 2px;
    background: #64748b;
    border-radius: 1px;
    margin-left: 2px;
}

.section__block:nth-child(2) {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.section__block:nth-child(2)::before {
    content: '';
    width: 14px;
    height: 2px;
    background: #1e293b;
    border-radius: 1px;
}

.section__block:nth-child(2)::after {
    content: '';
    width: 10px;
    height: 2px;
    background: #64748b;
    border-radius: 1px;
    margin-left: 2px;
}

.device--mobile .section__block {
    height: 6px;
    padding: 0 1px;
}

.device--mobile .section__block::before {
    width: 10px;
    height: 1px;
}

.device--mobile .section__block::after {
    width: 8px;
    height: 1px;
    margin-left: 1px;
}

.device__label {
    display: none;
}

/* Web Development Benefits Section */
.web-development-benefits {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.web-development__services {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

.web-development__process {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.web-development__faq {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

.web-development__cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.web-development__cta .cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.web-development__cta .cta__content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.web-development__cta .cta__content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.web-development__cta .cta__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.web-development__cta .cta__features .feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

.web-development__cta .cta__features .feature i {
    color: white;
}

.web-development__cta .cta__features .feature span {
    color: white;
    font-weight: var(--font-weight-medium);
}

.web-development__cta .cta__buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.web-development__cta .btn--primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.web-development__cta .btn--primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

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

.web-development__cta .btn--secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Web Development Service Icons - Individual Colors */
.web-development-page .service__icon {
    background: #f8fafc;
}

.web-development-page .service__icon i {
    color: var(--primary-color);
}

/* Custom Website Design - Purple */
.web-development-page .service__card:nth-child(1) .service__icon {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-color: #8b5cf6;
}

.web-development-page .service__card:nth-child(1) .service__icon i {
    color: #6d28d9;
}

/* Responsive Development - Blue */
.web-development-page .service__card:nth-child(2) .service__icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
}

.web-development-page .service__card:nth-child(2) .service__icon i {
    color: #1d4ed8;
}

/* Custom Functionality - Green */
.web-development-page .service__card:nth-child(3) .service__icon {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #10b981;
}

.web-development-page .service__card:nth-child(3) .service__icon i {
    color: #047857;
}

/* E-commerce Development - Orange */
.web-development-page .service__card:nth-child(4) .service__icon {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border-color: #f97316;
}

.web-development-page .service__card:nth-child(4) .service__icon i {
    color: #c2410c;
}

/* Performance Optimization - Red */
.web-development-page .service__card:nth-child(5) .service__icon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #ef4444;
}

.web-development-page .service__card:nth-child(5) .service__icon i {
    color: #dc2626;
}

/* Maintenance & Support - Teal */
.web-development-page .service__card:nth-child(6) .service__icon {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    border-color: #14b8a6;
}

.web-development-page .service__card:nth-child(6) .service__icon i {
    color: #0f766e;
}

/* Web Development Page - Colored Borders to Match Service Icons */

/* Web Development Service Features - Colored Borders */
.web-development-page .service__card:nth-child(1) .service__features li {
    border-bottom-color: #8b5cf6; /* Purple - Custom Website Design */
}

.web-development-page .service__card:nth-child(2) .service__features li {
    border-bottom-color: #3b82f6; /* Blue - Responsive Development */
}

.web-development-page .service__card:nth-child(3) .service__features li {
    border-bottom-color: #10b981; /* Green - Custom Functionality */
}

.web-development-page .service__card:nth-child(4) .service__features li {
    border-bottom-color: #f97316; /* Orange - E-commerce Development */
}

.web-development-page .service__card:nth-child(5) .service__features li {
    border-bottom-color: #ef4444; /* Red - Performance Optimization */
}

.web-development-page .service__card:nth-child(6) .service__features li {
    border-bottom-color: #14b8a6; /* Teal - Maintenance & Support */
}






/* Mobile adjustments for Web Development page */
@media (max-width: 768px) {
    .web-development__hero .hero__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .web-development__hero .hero__text h1 {
        font-size: var(--font-size-2xl);
    }
    
    .web-development__hero .hero__cta {
        justify-content: center;
    }
    
    .website__devices {
        gap: var(--spacing-md);
    }
    
    .device--desktop {
        width: 120px;
        height: 75px;
    }
    
    .device--mobile {
        width: 60px;
        height: 100px;
    }
    
    .web-development__cta .cta__features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .web-development__cta .cta__content h2 {
        font-size: var(--font-size-2xl);
    }
}

/* WordPress Development Page Styles */
.wordpress-development-page {
    /* Page-specific styles */
}

.wordpress-development-page main {
    background: #f8fafc;
}

.wordpress-development-page .page-content {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.wordpress-development-page .page__content {
    background: white;
    margin-top: 0;
}

/* WordPress Hero */
.wordpress-development__hero {
    padding: 120px 0 var(--spacing-3xl);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.wordpress-development__hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 195, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.wordpress-development__hero .hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.wordpress-development__hero .hero__text h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    line-height: 1.1;
}

.wordpress-development__hero .hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.wordpress-development__hero .hero__cta {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.wordpress-development__hero .hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WordPress Showcase */
.wordpress__showcase {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-large);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 400px;
}

.wp__container {
    text-align: center;
}

.wp__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.wp__icon {
    width: 60px;
    height: 60px;
    background: #21759b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.wp__text {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
}

.wp__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.wp__feature {
    background: #f8fafc;
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.wp__feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.wp__feature .feature__icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xs);
    font-size: 16px;
    color: #1d4ed8;
}

.wp__feature .feature__text {
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-xs);
}

/* WordPress Benefits */
.wordpress-development-benefits {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

/* WordPress Services */
.wordpress-development__services {
    padding: var(--spacing-3xl) 0;
}

/* WordPress Process */
.wordpress-development__process {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

/* WordPress FAQ */
.wordpress-development__faq {
    padding: var(--spacing-3xl) 0;
}

/* WordPress CTA */
.wordpress-development__cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.wordpress-development__cta .cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wordpress-development__cta .cta__content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.wordpress-development__cta .cta__content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.wordpress-development__cta .cta__actions {
    display: flex;
    justify-content: center;
}

.wordpress-development__cta .btn--primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.wordpress-development__cta .btn--primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* WordPress Service Icons - Individual Colors */
.wordpress-development-page .service__icon {
    background: #f8fafc;
}

.wordpress-development-page .service__icon i {
    color: var(--primary-color);
}

/* Custom WordPress Themes - Purple */
.wordpress-development-page .service__card:nth-child(1) .service__icon {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-color: #8b5cf6;
}

.wordpress-development-page .service__card:nth-child(1) .service__icon i {
    color: #6d28d9;
}

/* Plugin Development - Blue */
.wordpress-development-page .service__card:nth-child(2) .service__icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
}

.wordpress-development-page .service__card:nth-child(2) .service__icon i {
    color: #1d4ed8;
}

/* WooCommerce Development - Green */
.wordpress-development-page .service__card:nth-child(3) .service__icon {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #10b981;
}

.wordpress-development-page .service__card:nth-child(3) .service__icon i {
    color: #047857;
}

/* Performance Optimization - Orange */
.wordpress-development-page .service__card:nth-child(4) .service__icon {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border-color: #f97316;
}

.wordpress-development-page .service__card:nth-child(4) .service__icon i {
    color: #c2410c;
}

/* Security & Maintenance - Red */
.wordpress-development-page .service__card:nth-child(5) .service__icon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #ef4444;
}

.wordpress-development-page .service__card:nth-child(5) .service__icon i {
    color: #dc2626;
}

/* SEO & Analytics - Teal */
.wordpress-development-page .service__card:nth-child(6) .service__icon {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    border-color: #14b8a6;
}

.wordpress-development-page .service__card:nth-child(6) .service__icon i {
    color: #0f766e;
}

/* WordPress Service Features - Colored Borders */
.wordpress-development-page .service__card:nth-child(1) .service__features li {
    border-bottom-color: #8b5cf6; /* Purple - Custom WordPress Themes */
}

.wordpress-development-page .service__card:nth-child(2) .service__features li {
    border-bottom-color: #3b82f6; /* Blue - Plugin Development */
}

.wordpress-development-page .service__card:nth-child(3) .service__features li {
    border-bottom-color: #10b981; /* Green - WooCommerce Development */
}

.wordpress-development-page .service__card:nth-child(4) .service__features li {
    border-bottom-color: #f97316; /* Orange - Performance Optimization */
}

.wordpress-development-page .service__card:nth-child(5) .service__features li {
    border-bottom-color: #ef4444; /* Red - Security & Maintenance */
}

.wordpress-development-page .service__card:nth-child(6) .service__features li {
    border-bottom-color: #14b8a6; /* Teal - SEO & Analytics */
}






/* Mobile Responsive */
@media (max-width: 768px) {
    .wordpress-development__hero .hero__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .wordpress-development__hero .hero__text h1 {
        font-size: var(--font-size-2xl);
    }
    
    .wordpress-development__hero .hero__cta {
        justify-content: center;
    }
    
    .wp__features {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .wordpress__showcase {
        padding: var(--spacing-lg);
        max-width: 100%;
    }
    
    .wp__icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .wp__text {
        font-size: var(--font-size-xl);
    }
    
    .wp__feature .feature__icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .wordpress-development__cta .cta__content h2 {
        font-size: var(--font-size-2xl);
    }
}

/* =====================================================
   SHOPIFY DEVELOPMENT PAGE STYLES
   ===================================================== */

.shopify-development-page {
    background: white;
}

.shopify-development-page main {
    padding-top: 0;
}

.shopify-development-page .page-content {
    padding: 0;
}

.shopify-development-page .page__content {
    max-width: none;
    padding: 0;
}

/* Shopify Hero */
.shopify-development__hero {
    padding: 120px 0 var(--spacing-3xl);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.shopify-development__hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 195, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.shopify-development__hero .hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.shopify-development__hero .hero__text h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    line-height: 1.1;
}

.shopify-development__hero .hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.shopify-development__hero .hero__cta {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.shopify-development__hero .hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Shopify Showcase */
.shopify__showcase {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-large);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 400px;
}

.shopify__container {
    text-align: center;
}

.shopify__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.shopify__icon {
    width: 60px;
    height: 60px;
    background: #96bf47;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.shopify__text {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
}

.shopify__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.shopify__feature {
    background: #f8fafc;
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.shopify__feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.shopify__feature .feature__icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xs);
    font-size: 16px;
    color: #047857;
}

.shopify__feature .feature__text {
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-xs);
}

/* Shopify Benefits */
.shopify-development-benefits {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

/* Shopify Services */
.shopify-development__services {
    padding: var(--spacing-3xl) 0;
}

/* Shopify Process */
.shopify-development__process {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

/* Shopify FAQ */
.shopify-development__faq {
    padding: var(--spacing-3xl) 0;
}

/* Shopify CTA */
.shopify-development__cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.shopify-development__cta .cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.shopify-development__cta .cta__content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.shopify-development__cta .cta__content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.shopify-development__cta .cta__actions {
    display: flex;
    justify-content: center;
}

.shopify-development__cta .btn--primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.shopify-development__cta .btn--primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Shopify Service Icons - Individual Colors */
.shopify-development-page .service__icon {
    background: #f8fafc;
}

.shopify-development-page .service__icon i {
    color: var(--primary-color);
}

/* Custom Shopify Themes - Purple */
.shopify-development-page .service__card:nth-child(1) .service__icon {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-color: #8b5cf6;
}

.shopify-development-page .service__card:nth-child(1) .service__icon i {
    color: #6d28d9;
}

/* App Integration - Blue */
.shopify-development-page .service__card:nth-child(2) .service__icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
}

.shopify-development-page .service__card:nth-child(2) .service__icon i {
    color: #1d4ed8;
}

/* Store Optimization - Orange */
.shopify-development-page .service__card:nth-child(3) .service__icon {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border-color: #f97316;
}

.shopify-development-page .service__card:nth-child(3) .service__icon i {
    color: #c2410c;
}

/* Migration & Setup - Green */
.shopify-development-page .service__card:nth-child(4) .service__icon {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #10b981;
}

.shopify-development-page .service__card:nth-child(4) .service__icon i {
    color: #047857;
}

/* E-commerce Strategy - Pink */
.shopify-development-page .service__card:nth-child(5) .service__icon {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    border-color: #ec4899;
}

.shopify-development-page .service__card:nth-child(5) .service__icon i {
    color: #be185d;
}

/* Support & Maintenance - Teal */
.shopify-development-page .service__card:nth-child(6) .service__icon {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    border-color: #14b8a6;
}

.shopify-development-page .service__card:nth-child(6) .service__icon i {
    color: #0f766e;
}

/* Shopify Service Features - Colored Borders */
.shopify-development-page .service__card:nth-child(1) .service__features li {
    border-bottom-color: #8b5cf6; /* Purple - Custom Shopify Themes */
}

.shopify-development-page .service__card:nth-child(2) .service__features li {
    border-bottom-color: #3b82f6; /* Blue - App Integration */
}

.shopify-development-page .service__card:nth-child(3) .service__features li {
    border-bottom-color: #f97316; /* Orange - Store Optimization */
}

.shopify-development-page .service__card:nth-child(4) .service__features li {
    border-bottom-color: #10b981; /* Green - Migration & Setup */
}

.shopify-development-page .service__card:nth-child(5) .service__features li {
    border-bottom-color: #ec4899; /* Pink - E-commerce Strategy */
}

.shopify-development-page .service__card:nth-child(6) .service__features li {
    border-bottom-color: #14b8a6; /* Teal - Support & Maintenance */
}






/* Mobile Responsive */
@media (max-width: 768px) {
    .shopify-development__hero .hero__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .shopify-development__hero .hero__text h1 {
        font-size: var(--font-size-2xl);
    }
    
    .shopify-development__hero .hero__cta {
        justify-content: center;
    }
    
    .shopify__features {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .shopify__showcase {
        padding: var(--spacing-lg);
        max-width: 100%;
    }
    
    .shopify__icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .shopify__text {
        font-size: var(--font-size-xl);
    }
    
    .shopify__feature .feature__icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .shopify-development__cta .cta__content h2 {
        font-size: var(--font-size-2xl);
    }
}

/* =====================================================
   PROJECTS PAGE STYLES
   ===================================================== */

.projects-page {
    background: white;
}

.projects-page main {
    padding-top: 0;
}

.projects-page .page-content {
    padding: 0;
}

/* Projects Hero */
.projects__hero {
    padding: 120px 0 var(--spacing-3xl);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.projects__hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 195, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.projects__hero .hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.projects__hero .hero__text h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    line-height: 1.1;
}

.projects__hero .hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.projects__hero .hero__cta {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.projects__hero .hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Browser Window Preview */
.browser__window {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.browser__header {
    background: #f8fafc;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
}

.browser__dots {
    display: flex;
    gap: 6px;
}

.browser__dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser__dots span:first-child {
    background: #ff5f57;
}

.browser__dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser__dots span:nth-child(3) {
    background: #28ca42;
}

.browser__content {
    padding: var(--spacing-md);
    min-height: 200px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.content__header {
    height: 32px;
    background: #f8fafc;
    border-radius: var(--border-radius-sm);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 var(--spacing-md);
    position: relative;
}

.content__header::before {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.content__header::after {
    content: '';
    position: absolute;
    right: var(--spacing-md);
    width: 20px;
    height: 3px;
    background: #64748b;
    border-radius: 2px;
}

.content__hero {
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #22c55e);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content__hero::before {
    content: '';
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
}

.content__hero::after {
    content: '';
    position: absolute;
    bottom: var(--spacing-sm);
    left: var(--spacing-md);
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.content__sections {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.section__block {
    height: 16px;
    background: #f1f5f9;
    border-radius: var(--border-radius-sm);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 var(--spacing-sm);
    position: relative;
}

.section__block::before {
    content: '';
    width: 70%;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
}

.section__block::after {
    content: '';
    position: absolute;
    right: var(--spacing-sm);
    width: 25%;
    height: 3px;
    background: #64748b;
    border-radius: 2px;
}

.section__block:nth-child(2)::before {
    width: 85%;
    background: #1e293b;
}

.section__block:nth-child(2)::after {
    width: 15%;
}

.section__block:nth-child(3)::before {
    width: 60%;
    background: var(--primary-color);
}

.section__block:nth-child(3)::after {
    width: 30%;
}

/* Projects Showcase */
.projects__showcase {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-2xl);
}

.project__card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-300);
}

/* Project Image */
.project__image {
    height: 200px;
    overflow: hidden;
}

.project__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Project Info */
.project__info {
    padding: var(--spacing-xl);
}

.project__info h3 {
    font-size: var(--font-size-xl);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-bold);
}

.project__info > p {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

/* Project URL */
.project__url {
    margin-bottom: var(--spacing-lg);
}

.project__url a {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

.project__url a:hover {
    color: var(--primary-dark);
}

/* Project Results */
.project__results {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.result {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

/* Project Tags */
.project__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.tag {
    background: var(--gray-100);
    color: var(--text-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

/* Projects CTA */
.projects__cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: var(--spacing-3xl) 0;
}

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

.projects__cta h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.projects__cta p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
}

.cta__features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-md);
}

.feature i {
    color: white;
    font-size: var(--font-size-lg);
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.projects__cta .btn {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
}

.projects__cta .btn--primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.projects__cta .btn--primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

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

.projects__cta .btn--secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects__hero {
        padding: 100px 0 var(--spacing-2xl);
    }
    
    .projects__hero .hero__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .projects__hero .hero__text h1 {
        font-size: var(--font-size-3xl);
    }
    
    .projects__hero .hero__cta {
        justify-content: center;
    }
    
    .portfolio__stack {
        height: 240px;
    }
    
    .portfolio__card {
        height: 160px;
    }
    
    .portfolio__card--2 {
        top: 15px;
        left: 8px;
    }
    
    .portfolio__card--3 {
        top: 30px;
        left: 16px;
    }
    
    .projects__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .cta__features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .projects__cta .btn {
        min-width: 250px;
        justify-content: center;
    }
}

/* About Page Specific Styles */
.about-page {
    padding-top: 0;
}

.about-page main {
    padding-top: 0;
}

.about-page .page-content {
    padding-top: 0;
    padding-bottom: 0;
}

/* About Hero */
.about__hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 var(--spacing-3xl);
    position: relative;
}

.about__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 195, 0, 0.02), rgba(0, 163, 0, 0.05));
    pointer-events: none;
}

.about__hero .hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about__hero .hero__text h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.about__hero .hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.about__hero .hero__cta {
    display: flex;
    gap: var(--spacing-lg);
}

.about__hero .hero__visual {
    display: flex;
    justify-content: center;
}

/* About Experience Visual */
.about__experience {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-2xl);
    border: 1px solid var(--gray-200);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.experience__years {
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.experience__label {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
}

.experience__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.experience__stats .stat__item {
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.experience__stats .stat__number {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.experience__stats .stat__label {
    font-size: var(--font-size-sm);
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

/* About Mission */
.about__mission {
    padding: var(--spacing-3xl) 0;
}

.mission__content {
    max-width: 800px;
    margin: 0 auto;
}

.mission__text {
    font-size: var(--font-size-lg);
    line-height: 1.7;
}

.mission__text p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

/* About Values */
.about__values {
    background: var(--bg-secondary);
    padding: var(--spacing-3xl) 0;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
}

.value__card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* border: 1px solid var(--gray-200); */
    text-align: center;
}

.value__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.value__icon i {
    font-size: var(--font-size-2xl);
    color: white;
}

.value__card h3 {
    font-size: var(--font-size-xl);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-semibold);
}

.value__card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* About Team */
.about__team {
    padding: var(--spacing-3xl) 0;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
}

.team__card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
}

.team__info h3 {
    font-size: var(--font-size-xl);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-semibold);
}

.team__info h4 {
    font-size: var(--font-size-md);
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-medium);
}

.team__info p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* About Expertise */
.about__expertise {
    padding: var(--spacing-3xl) 0;
}

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

.expertise__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.expertise__header h3 {
    font-size: var(--font-size-2xl);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-semibold);
}

.expertise__header p {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.expertise__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-xl);
}

.expertise__card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.expertise__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.expertise__icon i {
    font-size: var(--font-size-xl);
    color: white;
}

.expertise__card h4 {
    font-size: var(--font-size-lg);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-semibold);
}

.expertise__card p {
    color: var(--text-dark);
    line-height: 1.5;
    font-size: var(--font-size-base);
}

/* About CTA */
.about__cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: var(--spacing-3xl) 0;
}

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

.about__cta h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.about__cta p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
}

.about__cta .cta__features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.about__cta .feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-md);
}

.about__cta .feature i {
    color: white;
    font-size: var(--font-size-lg);
}

.about__cta .cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.about__cta .btn {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
}

.about__cta .btn--primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.about__cta .btn--primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

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

.about__cta .btn--secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* About Responsive Design */
@media (max-width: 768px) {
    .about__hero {
        padding: 100px 0 var(--spacing-2xl);
    }
    
    .about__hero .hero__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .about__hero .hero__text h1 {
        font-size: var(--font-size-3xl);
    }
    
    .about__hero .hero__cta {
        justify-content: center;
    }
    
    .experience__years {
        font-size: 3rem;
    }
    
    .values__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .value__card {
        padding: var(--spacing-xl);
    }
    
    .team__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .team__card {
        padding: var(--spacing-xl);
    }
    

    
    .expertise__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-lg);
    }
    
    .expertise__card {
        padding: var(--spacing-lg);
    }
    
    .about__cta .cta__features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .about__cta .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about__cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.contact-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.contact-hero__text h1 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.contact-hero__text p {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.contact-hero__features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-hero__feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.contact-hero__feature i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.contact-hero__feature span {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
}

.contact-visual {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    position: relative;
}

.contact-visual__card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.contact-visual__card--primary {
    transform: translateX(-10px);
}

.contact-visual__card--secondary {
    transform: translateX(10px);
}

.contact-visual__card--accent {
    transform: translateX(-5px);
}

.contact-visual__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.contact-visual__icon i {
    color: white;
    font-size: var(--font-size-xl);
}

.contact-visual__card h4 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-visual__card p {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.contact-form-section__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-form-section__form h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.contact-form-section__form > p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-xl);
}

.form-message--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.form-message--success i {
    color: #16a34a;
    font-size: var(--font-size-lg);
    margin-top: 2px;
}

.form-message--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.form-message--error i {
    color: #dc2626;
    font-size: var(--font-size-lg);
    margin-top: 2px;
}

.form-message h4 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    margin: 0 0 var(--spacing-xs);
}

.form-message p {
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-form .btn {
    align-self: flex-start;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form__group label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-md);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 195, 0, 0.1);
}

.form__group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.btn--large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
}

/* Contact Info */
.contact-info h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.contact-info > p {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.contact-info__items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.contact-info__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__icon i {
    color: white;
    font-size: var(--font-size-md);
}

.contact-info__content h4 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs);
}

.contact-info__content p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.contact-info__content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info__content a:hover {
    color: var(--primary-dark);
}

.contact-info__benefits h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.contact-info__benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-info__benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.contact-info__benefits li i {
    color: var(--primary-color);
    font-size: var(--font-size-xs);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.contact-cta__content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: var(--spacing-md);
}

.contact-cta__content > p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta__features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.contact-cta__feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.contact-cta__feature i {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-lg);
}

.contact-cta__feature span {
    color: white;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
}

.contact-cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
}

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

.btn--outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .contact-hero__text h1 {
        font-size: var(--font-size-3xl);
    }
    
    .contact-form-section__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .contact-form__row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-cta__features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .contact-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta__buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== PRIVACY PAGE STYLES ===== */

.privacy-content {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.privacy-content__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content__header {
    margin-bottom: var(--spacing-3xl);
    text-align: center;
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border-color);
}

.privacy-content__updated {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.privacy-content__intro {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.privacy-content__sections {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.privacy-section {
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--gray-200);
}

.privacy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.privacy-section h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.privacy-section h4 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: var(--spacing-md) 0 var(--spacing-xs);
}

.privacy-section p {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.privacy-section ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-xl);
}

.privacy-section li {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.privacy-section strong {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.privacy-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
}

.privacy-contact__method h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.privacy-contact__method p {
    margin: 0;
}

.privacy-contact__method a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

.privacy-contact__method a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Privacy Page Responsive Design */
@media (max-width: 768px) {
    .privacy-content__wrapper {
        padding: 0 var(--spacing-md);
    }
    
    .privacy-section h2 {
        font-size: var(--font-size-xl);
    }
    
    .privacy-section ul {
        padding-left: var(--spacing-lg);
    }
    
    .privacy-contact {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Page Hero Override */
.contact-page .hero__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page .hero__title {
    margin: 0 auto;
}

/* Privacy Page Hero Override */
.privacy-page .hero__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-page .hero__title {
    margin: 0 auto;
}

/* FAQ Page Hero Override */
.faq-page .hero__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-page .hero__title {
    margin: 0 auto;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

/* ===================================
   INDUSTRY PAGES STYLES
   =================================== */

/* Industry Benefits Section */
.industry-benefits {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.benefit__card {
    text-align: center;
    padding: var(--spacing-xl);
    background: #f8fafc;
    border-radius: var(--border-radius-lg);
    /* border: 1px solid var(--gray-200); */
}

.benefit__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-lg);
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit__icon i {
    font-size: var(--font-size-lg);
    color: white;
}

.benefit__card h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.benefit__card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Industry Services Section */
.industry-services {
    padding: var(--spacing-3xl) 0;
    background: #f8fafc;
}

/* Industry Specialties Section */
.industry-specialties {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.specialty__item {
    background: #f8fafc;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
}

.specialty__item h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    text-align: center;
}

.specialty__item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialty__item li {
    padding: var(--spacing-sm) 0;
    color: var(--text-dark);
    border-bottom: 1px solid #e2e8f0;
}

.specialty__item li:last-child {
    border-bottom: none;
}

/* Industry CTA Section */
.industry-cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.industry-cta .cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.industry-cta .cta__content h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.industry-cta .cta__content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.industry-cta .cta__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.industry-cta .cta__features .feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

.industry-cta .cta__features .feature i {
    color: white;
}

.industry-cta .cta__features .feature span {
    color: white;
    font-weight: var(--font-weight-medium);
}

.industry-cta .cta__buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.industry-cta .btn--primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.industry-cta .btn--primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

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

.industry-cta .btn--secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Industry Page Hero Styling */
.healthcare-seo-page .hero__content,
.legal-seo-page .hero__content,
.real-estate-seo-page .hero__content,
.home-services-seo-page .hero__content,
.restaurant-seo-page .hero__content,
.beauty-wellness-seo-page .hero__content,
.ecommerce-seo-page .hero__content,
.saas-technology-seo-page .hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.healthcare-seo-page .hero__title,
.legal-seo-page .hero__title,
.real-estate-seo-page .hero__title,
.home-services-seo-page .hero__title,
.restaurant-seo-page .hero__title,
.beauty-wellness-seo-page .hero__title,
.ecommerce-seo-page .hero__title,
.saas-technology-seo-page .hero__title {
    margin: 0 auto;
}

/* Industry Service Icons - Colorful Icons */
/* Healthcare & Dental SEO */
.healthcare-seo-page .service__card:nth-child(1) .service__icon {
    background: #e8f5e8;
    border-color: #4caf50;
}

.healthcare-seo-page .service__card:nth-child(1) .service__icon i {
    color: #4caf50;
}

.healthcare-seo-page .service__card:nth-child(2) .service__icon {
    background: #e3f2fd;
    border-color: #2196f3;
}

.healthcare-seo-page .service__card:nth-child(2) .service__icon i {
    color: #2196f3;
}

.healthcare-seo-page .service__card:nth-child(3) .service__icon {
    background: #fff3e0;
    border-color: #ff9800;
}

.healthcare-seo-page .service__card:nth-child(3) .service__icon i {
    color: #ff9800;
}

.healthcare-seo-page .service__card:nth-child(4) .service__icon {
    background: #f3e5f5;
    border-color: #9c27b0;
}

.healthcare-seo-page .service__card:nth-child(4) .service__icon i {
    color: #9c27b0;
}

.healthcare-seo-page .service__card:nth-child(5) .service__icon {
    background: #ffebee;
    border-color: #f44336;
}

.healthcare-seo-page .service__card:nth-child(5) .service__icon i {
    color: #f44336;
}

.healthcare-seo-page .service__card:nth-child(6) .service__icon {
    background: #e0f2f1;
    border-color: #009688;
}

.healthcare-seo-page .service__card:nth-child(6) .service__icon i {
    color: #009688;
}

/* Legal Services SEO */
.legal-seo-page .service__card:nth-child(1) .service__icon {
    background: #e8f5e8;
    border-color: #4caf50;
}

.legal-seo-page .service__card:nth-child(1) .service__icon i {
    color: #4caf50;
}

.legal-seo-page .service__card:nth-child(2) .service__icon {
    background: #e3f2fd;
    border-color: #2196f3;
}

.legal-seo-page .service__card:nth-child(2) .service__icon i {
    color: #2196f3;
}

.legal-seo-page .service__card:nth-child(3) .service__icon {
    background: #fff3e0;
    border-color: #ff9800;
}

.legal-seo-page .service__card:nth-child(3) .service__icon i {
    color: #ff9800;
}

.legal-seo-page .service__card:nth-child(4) .service__icon {
    background: #f3e5f5;
    border-color: #9c27b0;
}

.legal-seo-page .service__card:nth-child(4) .service__icon i {
    color: #9c27b0;
}

.legal-seo-page .service__card:nth-child(5) .service__icon {
    background: #ffebee;
    border-color: #f44336;
}

.legal-seo-page .service__card:nth-child(5) .service__icon i {
    color: #f44336;
}

.legal-seo-page .service__card:nth-child(6) .service__icon {
    background: #e0f2f1;
    border-color: #009688;
}

.legal-seo-page .service__card:nth-child(6) .service__icon i {
    color: #009688;
}

/* Real Estate SEO */
.real-estate-seo-page .service__card:nth-child(1) .service__icon {
    background: #e8f5e8;
    border-color: #4caf50;
}

.real-estate-seo-page .service__card:nth-child(1) .service__icon i {
    color: #4caf50;
}

.real-estate-seo-page .service__card:nth-child(2) .service__icon {
    background: #e3f2fd;
    border-color: #2196f3;
}

.real-estate-seo-page .service__card:nth-child(2) .service__icon i {
    color: #2196f3;
}

.real-estate-seo-page .service__card:nth-child(3) .service__icon {
    background: #fff3e0;
    border-color: #ff9800;
}

.real-estate-seo-page .service__card:nth-child(3) .service__icon i {
    color: #ff9800;
}

.real-estate-seo-page .service__card:nth-child(4) .service__icon {
    background: #f3e5f5;
    border-color: #9c27b0;
}

.real-estate-seo-page .service__card:nth-child(4) .service__icon i {
    color: #9c27b0;
}

.real-estate-seo-page .service__card:nth-child(5) .service__icon {
    background: #ffebee;
    border-color: #f44336;
}

.real-estate-seo-page .service__card:nth-child(5) .service__icon i {
    color: #f44336;
}

.real-estate-seo-page .service__card:nth-child(6) .service__icon {
    background: #e0f2f1;
    border-color: #009688;
}

.real-estate-seo-page .service__card:nth-child(6) .service__icon i {
    color: #009688;
}

/* Home Services SEO */
.home-services-seo-page .service__card:nth-child(1) .service__icon {
    background: #e8f5e8;
    border-color: #4caf50;
}

.home-services-seo-page .service__card:nth-child(1) .service__icon i {
    color: #4caf50;
}

.home-services-seo-page .service__card:nth-child(2) .service__icon {
    background: #e3f2fd;
    border-color: #2196f3;
}

.home-services-seo-page .service__card:nth-child(2) .service__icon i {
    color: #2196f3;
}

.home-services-seo-page .service__card:nth-child(3) .service__icon {
    background: #fff3e0;
    border-color: #ff9800;
}

.home-services-seo-page .service__card:nth-child(3) .service__icon i {
    color: #ff9800;
}

.home-services-seo-page .service__card:nth-child(4) .service__icon {
    background: #f3e5f5;
    border-color: #9c27b0;
}

.home-services-seo-page .service__card:nth-child(4) .service__icon i {
    color: #9c27b0;
}

.home-services-seo-page .service__card:nth-child(5) .service__icon {
    background: #ffebee;
    border-color: #f44336;
}

.home-services-seo-page .service__card:nth-child(5) .service__icon i {
    color: #f44336;
}

.home-services-seo-page .service__card:nth-child(6) .service__icon {
    background: #e0f2f1;
    border-color: #009688;
}

.home-services-seo-page .service__card:nth-child(6) .service__icon i {
    color: #009688;
}

/* Restaurants & Food SEO */
.restaurant-seo-page .service__card:nth-child(1) .service__icon {
    background: #e8f5e8;
    border-color: #4caf50;
}

.restaurant-seo-page .service__card:nth-child(1) .service__icon i {
    color: #4caf50;
}

.restaurant-seo-page .service__card:nth-child(2) .service__icon {
    background: #e3f2fd;
    border-color: #2196f3;
}

.restaurant-seo-page .service__card:nth-child(2) .service__icon i {
    color: #2196f3;
}

.restaurant-seo-page .service__card:nth-child(3) .service__icon {
    background: #fff3e0;
    border-color: #ff9800;
}

.restaurant-seo-page .service__card:nth-child(3) .service__icon i {
    color: #ff9800;
}

.restaurant-seo-page .service__card:nth-child(4) .service__icon {
    background: #f3e5f5;
    border-color: #9c27b0;
}

.restaurant-seo-page .service__card:nth-child(4) .service__icon i {
    color: #9c27b0;
}

.restaurant-seo-page .service__card:nth-child(5) .service__icon {
    background: #ffebee;
    border-color: #f44336;
}

.restaurant-seo-page .service__card:nth-child(5) .service__icon i {
    color: #f44336;
}

.restaurant-seo-page .service__card:nth-child(6) .service__icon {
    background: #e0f2f1;
    border-color: #009688;
}

.restaurant-seo-page .service__card:nth-child(6) .service__icon i {
    color: #009688;
}

/* Beauty & Wellness SEO */
.beauty-wellness-seo-page .service__card:nth-child(1) .service__icon {
    background: #e8f5e8;
    border-color: #4caf50;
}

.beauty-wellness-seo-page .service__card:nth-child(1) .service__icon i {
    color: #4caf50;
}

.beauty-wellness-seo-page .service__card:nth-child(2) .service__icon {
    background: #e3f2fd;
    border-color: #2196f3;
}

.beauty-wellness-seo-page .service__card:nth-child(2) .service__icon i {
    color: #2196f3;
}

.beauty-wellness-seo-page .service__card:nth-child(3) .service__icon {
    background: #fff3e0;
    border-color: #ff9800;
}

.beauty-wellness-seo-page .service__card:nth-child(3) .service__icon i {
    color: #ff9800;
}

.beauty-wellness-seo-page .service__card:nth-child(4) .service__icon {
    background: #f3e5f5;
    border-color: #9c27b0;
}

.beauty-wellness-seo-page .service__card:nth-child(4) .service__icon i {
    color: #9c27b0;
}

.beauty-wellness-seo-page .service__card:nth-child(5) .service__icon {
    background: #ffebee;
    border-color: #f44336;
}

.beauty-wellness-seo-page .service__card:nth-child(5) .service__icon i {
    color: #f44336;
}

.beauty-wellness-seo-page .service__card:nth-child(6) .service__icon {
    background: #e0f2f1;
    border-color: #009688;
}

.beauty-wellness-seo-page .service__card:nth-child(6) .service__icon i {
    color: #009688;
}

/* E-commerce SEO */
.ecommerce-seo-page .service__card:nth-child(1) .service__icon {
    background: #e8f5e8;
    border-color: #4caf50;
}

.ecommerce-seo-page .service__card:nth-child(1) .service__icon i {
    color: #4caf50;
}

.ecommerce-seo-page .service__card:nth-child(2) .service__icon {
    background: #e3f2fd;
    border-color: #2196f3;
}

.ecommerce-seo-page .service__card:nth-child(2) .service__icon i {
    color: #2196f3;
}

.ecommerce-seo-page .service__card:nth-child(3) .service__icon {
    background: #fff3e0;
    border-color: #ff9800;
}

.ecommerce-seo-page .service__card:nth-child(3) .service__icon i {
    color: #ff9800;
}

.ecommerce-seo-page .service__card:nth-child(4) .service__icon {
    background: #f3e5f5;
    border-color: #9c27b0;
}

.ecommerce-seo-page .service__card:nth-child(4) .service__icon i {
    color: #9c27b0;
}

.ecommerce-seo-page .service__card:nth-child(5) .service__icon {
    background: #ffebee;
    border-color: #f44336;
}

.ecommerce-seo-page .service__card:nth-child(5) .service__icon i {
    color: #f44336;
}

.ecommerce-seo-page .service__card:nth-child(6) .service__icon {
    background: #e0f2f1;
    border-color: #009688;
}

.ecommerce-seo-page .service__card:nth-child(6) .service__icon i {
    color: #009688;
}

/* SaaS & Technology SEO */
.saas-technology-seo-page .service__card:nth-child(1) .service__icon {
    background: #e8f5e8;
    border-color: #4caf50;
}

.saas-technology-seo-page .service__card:nth-child(1) .service__icon i {
    color: #4caf50;
}

.saas-technology-seo-page .service__card:nth-child(2) .service__icon {
    background: #e3f2fd;
    border-color: #2196f3;
}

.saas-technology-seo-page .service__card:nth-child(2) .service__icon i {
    color: #2196f3;
}

.saas-technology-seo-page .service__card:nth-child(3) .service__icon {
    background: #fff3e0;
    border-color: #ff9800;
}

.saas-technology-seo-page .service__card:nth-child(3) .service__icon i {
    color: #ff9800;
}

.saas-technology-seo-page .service__card:nth-child(4) .service__icon {
    background: #f3e5f5;
    border-color: #9c27b0;
}

.saas-technology-seo-page .service__card:nth-child(4) .service__icon i {
    color: #9c27b0;
}

.saas-technology-seo-page .service__card:nth-child(5) .service__icon {
    background: #ffebee;
    border-color: #f44336;
}

.saas-technology-seo-page .service__card:nth-child(5) .service__icon i {
    color: #f44336;
}

.saas-technology-seo-page .service__card:nth-child(6) .service__icon {
    background: #e0f2f1;
    border-color: #009688;
}

.saas-technology-seo-page .service__card:nth-child(6) .service__icon i {
    color: #009688;
}

/* Industry Page Responsive Design */
@media (max-width: 768px) {
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .benefit__card {
        padding: var(--spacing-lg);
    }
    
    .specialties__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .specialty__item {
        padding: var(--spacing-lg);
    }
    
    .industry-cta .cta__features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .industry-cta .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .industry-cta .cta__content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .healthcare-seo-page .hero__content,
    .legal-seo-page .hero__content,
    .real-estate-seo-page .hero__content,
    .home-services-seo-page .hero__content,
    .restaurant-seo-page .hero__content,
    .beauty-wellness-seo-page .hero__content,
    .ecommerce-seo-page .hero__content,
    .saas-technology-seo-page .hero__content {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
}

 
/* Contact Form Loading Button Styles */
.btn .btn-content,
.btn .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn .btn-loading {
    display: none;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn .fa-spinner {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
