/* ============================================
   SERVICE DETAIL PAGE STYLES - Mobile First
   ============================================ */

/* ============================================
   SERVICE HERO SECTION
   ============================================ */
.service-hero {
    min-height: 70vh;
    min-height: 70svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
    padding-top: clamp(4rem, 10vh, 6.25rem);
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(0, 212, 170, 0.15) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    position: relative;
    z-index: 10;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    /* Minimum touch target */
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span:last-child {
    color: var(--white);
    font-weight: 500;
}

.service-hero .hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: center;
    padding: clamp(2rem, 5vh, 3.75rem) 0 clamp(2.5rem, 6vh, 5rem);
    text-align: center;
}

.service-hero .hero-text {
    width: 100%;
}

.service-hero .hero-text h1 {
    color: var(--white);
    margin-bottom: clamp(1rem, 2vw, 1.75rem);
    font-size: clamp(2rem, 5vw, 4rem);
}

.service-hero .hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1.05rem, 2vw + 0.2rem, 1.3rem);
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    line-height: 1.7;
    max-width: 100%;
}

/* Hero Icon Card */
.hero-icon-card {
    background: var(--glass);
    backdrop-filter: blur(1.25rem);
    border: 0.0625rem solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 5vw, 3.75rem);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 18.75rem;
}

.hero-icon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 170, 0.2), transparent 70%);
}

.icon-wrapper {
    width: clamp(6rem, 15vw, 11.25rem);
    height: clamp(6rem, 15vw, 11.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-wrapper svg {
    width: 80%;
    height: 80%;
    color: var(--accent);
    filter: drop-shadow(0 0.25rem 1.25rem rgba(0, 212, 170, 0.4));
    transition: var(--transition);
}

.hero-icon-card:hover .icon-wrapper svg {
    transform: scale(1.1) rotate(5deg);
}

/* ============================================
   SERVICE DESCRIPTION SECTION
   ============================================ */
.service-description {
    padding: clamp(3rem, 8vw, 7.5rem) 0;
    background: var(--white);
}

.description-content {
    max-width: 56.25rem;
    margin: 0 auto;
}

.description-content .section-tag {
    display: inline-flex;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.description-content h2 {
    color: var(--primary-dark);
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
    font-size: clamp(1.75rem, 4vw, 3rem);
}

.description-content p {
    color: var(--text);
    font-size: clamp(1rem, 1.5vw + 0.1rem, 1.15rem);
    line-height: 1.9;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.description-content p:last-of-type {
    margin-bottom: 0;
}

/* ============================================
   SERVICE ADVANTAGES SECTION
   ============================================ */
.service-advantages {
    padding: clamp(3rem, 8vw, 7.5rem) 0;
    background: var(--off-white);
    position: relative;
}

.service-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.0625rem;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.3), transparent);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    margin-top: clamp(2.5rem, 4vw, 3.75rem);
}

.advantage-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 0.0625rem solid transparent;
    text-decoration: none;
    display: block;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.1875rem;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 170, 0.2);
}

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

.advantage-icon {
    width: clamp(3.5rem, 8vw, 4rem);
    height: clamp(3.5rem, 8vw, 4rem);
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    transition: var(--transition);
    box-shadow: 0 0.5rem 1.5625rem rgba(0, 212, 170, 0.25);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-icon svg {
    width: 50%;
    height: 50%;
    color: var(--white);
}

.advantage-card h3 {
    color: var(--primary-dark);
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    line-height: 1.7;
}

/* ============================================
   SERVICE PROCESS SECTION
   ============================================ */
.service-process {
    padding: clamp(3rem, 8vw, 7.5rem) 0;
    background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.service-process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(0, 212, 170, 0.1), transparent 70%);
}

.service-process .section-header {
    position: relative;
    z-index: 1;
}

.service-process .section-header h2 {
    color: var(--white);
}

.process-timeline {
    position: relative;
    z-index: 1;
    margin-top: clamp(2.5rem, 5vw, 5rem);
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: clamp(4rem, 12vw, 7.5rem) 1fr;
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: start;
    margin-bottom: clamp(2rem, 4vw, 3.75rem);
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 100%;
    aspect-ratio: 1;
    background: var(--glass);
    backdrop-filter: blur(1.25rem);
    border: 0.125rem solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--accent);
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0.5rem 1.875rem rgba(0, 212, 170, 0.2);
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    border-color: var(--accent);
    box-shadow: 0 0.75rem 2.5rem rgba(0, 212, 170, 0.4);
}

.step-connector {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 0.125rem;
    height: clamp(2rem, 4vw, 3.75rem);
    background: linear-gradient(180deg, var(--accent), transparent);
    opacity: 0.3;
}

.step-content {
    background: var(--glass);
    backdrop-filter: blur(1.25rem);
    border: 0.0625rem solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 3vw, 2.5rem);
    transition: var(--transition);
}

.process-step:hover .step-content {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 170, 0.3);
}

.step-content h3 {
    color: var(--white);
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.step-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.service-cta {
    padding: clamp(2.5rem, 5vw, 5rem) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 4vw, 3.75rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.5rem, 3vw, 3.75rem);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15), transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    line-height: 1.3;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 1.5vw + 0.1rem, 1.1rem);
    line-height: 1.7;
}

.btn-large {
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.75rem);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 18.75rem;
}

/* ============================================
   OTHER SERVICES SECTION
   ============================================ */
.other-services {
    padding: clamp(3rem, 8vw, 7.5rem) 0;
    background: var(--white);
}

.other-services .services-grid {
    margin-top: clamp(2.5rem, 4vw, 3.75rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
}

.other-services .service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 0.0625rem solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
    display: block;
    color: inherit;
}

.other-services .service-card:hover {
    transform: translateY(-0.75rem);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 170, 0.2);
}

.other-services .service-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.other-services .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.other-services .service-card:hover .service-image img {
    transform: scale(1.1);
}

.other-services .service-card h3 {
    color: var(--primary-dark);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    margin: clamp(1rem, 2vw, 1.75rem) clamp(1.25rem, 2.5vw, 2rem) clamp(0.5rem, 1.5vw, 0.75rem);
    transition: var(--transition);
}

.other-services .service-card:hover h3 {
    color: var(--primary-light);
}

.other-services .service-card p {
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    line-height: 1.7;
    margin: 0 clamp(1.25rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.75rem);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--primary);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    margin: 0 clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 2.5vw, 2rem);
    transition: var(--transition);
    /* Minimum touch target */
    min-height: 2.75rem;
    padding: 0.5rem 0;
}

.service-link svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: var(--transition);
}

.other-services .service-card:hover .service-link {
    color: var(--accent);
}

.other-services .service-card:hover .service-link svg {
    transform: translateX(0.375rem);
}

/* Link styling for service cards */
a.service-card {
    cursor: pointer;
}

a.service-card * {
    pointer-events: none;
}

/* ============================================
   TABLET BREAKPOINT (481px - 768px)
   ============================================ */
@media (min-width: 30.0625em) { /* 481px */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   TABLET LANDSCAPE (769px - 1024px)
   ============================================ */
@media (min-width: 48.0625em) { /* 769px */
    .process-step {
        grid-template-columns: clamp(5rem, 12vw, 7.5rem) 1fr;
    }
}

/* ============================================
   DESKTOP BREAKPOINT (≥ 1025px)
   ============================================ */
@media (min-width: 64.0625em) { /* 1025px */
    .service-hero .hero-content {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: clamp(3rem, 5vw, 5rem);
        align-items: center;
        text-align: left;
    }
    
    .service-hero .hero-text {
        order: 1;
    }
    
    .hero-icon-card {
        order: 2;
        max-width: 18.75rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-card {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .btn-large {
        width: auto;
    }
    
    .other-services .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   LARGE DESKTOP (≥ 1200px)
   ============================================ */
@media (min-width: 75em) { /* 1200px */
    .hero-icon-card {
        max-width: 21.875rem;
        padding: clamp(3rem, 5vw, 3.75rem);
    }
    
    .icon-wrapper {
        width: 11.25rem;
        height: 11.25rem;
    }
}

/* ============================================
   ANIMATION FOR SCROLL REVEAL
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.advantage-card,
.process-step,
.other-services .service-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.advantage-card:nth-child(1) { animation-delay: 0.1s; }
.advantage-card:nth-child(2) { animation-delay: 0.2s; }
.advantage-card:nth-child(3) { animation-delay: 0.3s; }
.advantage-card:nth-child(4) { animation-delay: 0.4s; }
.advantage-card:nth-child(5) { animation-delay: 0.5s; }
.advantage-card:nth-child(6) { animation-delay: 0.6s; }

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .advantage-card,
    .process-step,
    .other-services .service-card {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .advantage-card,
    .step-content,
    .other-services .service-card {
        border-width: 0.125rem;
    }
}

/* ============================================
   BLOG DETAIL STYLES
   ============================================ */

/* Blog Hero Modifications */
.blog-hero .service-hero-content {
    max-width: 50rem;
}

.blog-category-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-meta .blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.blog-meta svg {
    opacity: 0.8;
}

/* Blog Content Section */
.blog-content-section {
    padding: clamp(3rem, 6vw, 6rem) 0;
    background: var(--off-white);
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 64em) {
    .blog-content-wrapper {
        grid-template-columns: 1fr 20rem;
        gap: 4rem;
    }
}

/* Blog Article */
.blog-article {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-featured-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-text {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.blog-text .lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.blog-text h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.blog-text p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.blog-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-text ul li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.blog-text ul li strong {
    color: var(--text);
}

.blog-text blockquote {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius);
    margin: 2rem 0;
    position: relative;
}

.blog-text blockquote::before {
    content: '"';
    font-size: 4rem;
    font-family: 'Syne', sans-serif;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    opacity: 0.3;
    line-height: 1;
}

.blog-text blockquote p {
    color: var(--white);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.blog-text blockquote cite {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: normal;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.sidebar-widget p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.related-post:hover {
    background: var(--off-white);
}

.related-post img {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.related-post div {
    flex: 1;
    min-width: 0;
}

.related-post h4 {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Blog Navigation */
.blog-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.back-to-blog:hover {
    background: var(--primary);
    color: var(--white);
}

.back-to-blog svg {
    transition: var(--transition);
}

.back-to-blog:hover svg {
    transform: translateX(-0.25rem);
}

/* Small Button Variant */
.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Mini Service Cards for Other Services */
.services-grid.mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 30em) {
    .services-grid.mini {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 64em) {
    .services-grid.mini {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card-mini {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card-mini:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.service-card-mini h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-card-mini p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Mobile Navigation Fix */
@media (max-width: 48em) {
    .service-hero,
    .blog-hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .service-hero-content {
        padding-top: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    .service-desc-grid {
        grid-template-columns: 1fr;
    }
    
    .service-desc-image {
        order: -1;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card {
        padding: 1.25rem;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .step-number {
        font-size: 1.5rem;
        padding: 0.75rem 1.25rem;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: 2;
    }
}

/* Tablet Improvements */
@media (min-width: 48.0625em) and (max-width: 64em) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        grid-template-columns: 5rem 1fr;
    }
}

/* Prevent horizontal scroll */
.service-hero,
.service-description,
.service-advantages,
.service-process,
.service-cta,
.other-services,
.blog-content-section {
    overflow-x: hidden;
}

/* Image responsive */
img {
    max-width: 100%;
    height: auto;
}