/* =====================================================
   NSPA Global Consultant - Service Pages Styles
   ===================================================== */

/* ===== Service Hero Section ===== */
.service-hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.service-hero-bg .hero-gradient {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
}

.service-hero-bg .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(124, 58, 237, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
}

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

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

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

.breadcrumb i {
    font-size: 0.7em;
}

.breadcrumb span {
    color: var(--primary-purple);
    font-weight: 500;
}

.service-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-purple-lg);
}

.service-hero-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-hero-title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.service-hero-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Service Overview Section ===== */
.service-overview {
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.overview-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.overview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--primary-purple);
    font-size: var(--text-base);
}

/* Visual Cards */
.overview-visual {
    position: relative;
}

.visual-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--light-gray);
    border-radius: var(--radius-2xl);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Browser Mockup */
.browser-mockup {
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.browser-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.browser-dots span:first-child {
    background: #ff5f56;
}

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

.browser-dots span:last-child {
    background: #27c93f;
}

.browser-url {
    flex: 1;
    background: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.browser-content {
    padding: var(--space-lg);
}

.mockup-header {
    height: 30px;
    background: var(--gradient-subtle);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.mockup-hero {
    margin-bottom: var(--space-lg);
}

.mockup-text {
    height: 12px;
    background: var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.mockup-text.short {
    width: 60%;
}

.mockup-button {
    width: 100px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.mockup-card {
    height: 60px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--accent);
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    top: 40%;
    right: -5%;
    animation-delay: 1.5s;
}

.badge-3 {
    bottom: 15%;
    left: 5%;
    animation-delay: 3s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* App Mockup */
.app-visual .app-mockup {
    width: 100%;
    max-width: 380px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: flex;
}

.app-sidebar {
    width: 60px;
    background: var(--gradient-dark);
    padding: var(--space-md) var(--space-sm);
}

.sidebar-item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.sidebar-item.active {
    background: rgba(255, 255, 255, 0.25);
}

.app-main {
    flex: 1;
    padding: var(--space-md);
}

.app-header-bar {
    height: 35px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.app-content-area {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.app-chart {
    height: 100px;
    background: var(--gradient-subtle);
    border-radius: var(--radius-md);
}

.app-data-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.data-row {
    height: 25px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

/* Marketing Visual */
.marketing-visual .marketing-mockup {
    width: 100%;
    max-width: 350px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-xl);
}

.analytics-chart {
    position: relative;
    height: 150px;
    margin-bottom: var(--space-lg);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-sm);
}

.chart-bars .bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    animation: growBar 1.5s ease-out forwards;
}

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    text-align: center;
}

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

.metric-value {
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-purple);
}

.metric-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Salesforce Visual */
.salesforce-visual .sf-mockup {
    width: 100%;
    max-width: 350px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.sf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: #00a1e0;
}

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

.sf-nav-items {
    display: flex;
    gap: var(--space-sm);
}

.sf-nav-items span {
    width: 40px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
}

.sf-content {
    padding: var(--space-lg);
}

.sf-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.sf-card {
    background: var(--light-gray);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.sf-card-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xs);
}

.sf-card-icon i {
    color: var(--primary-purple);
    font-size: var(--text-sm);
}

.sf-card span {
    font-size: var(--text-xs);
    color: var(--text-muted);
    display: block;
}

.sf-card strong {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--text-primary);
}

.sf-pipeline {
    display: flex;
    gap: 2px;
    height: 25px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pipeline-stage {
    background: var(--gradient-primary);
    opacity: 0.3;
}

.pipeline-stage:first-child {
    opacity: 1;
}

.pipeline-stage:nth-child(2) {
    opacity: 0.7;
}

.pipeline-stage:nth-child(3) {
    opacity: 0.5;
}

/* AI Visual */
.ai-visual .ai-mockup {
    position: relative;
    width: 280px;
    height: 280px;
}

.neural-network {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.node-layer {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.node {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.node-layer:nth-child(2) .node {
    animation-delay: 0.3s;
}

.node-layer:nth-child(3) .node {
    animation-delay: 0.6s;
}

.node-layer:nth-child(4) .node {
    animation-delay: 0.9s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

.ai-brain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-purple-lg);
    z-index: 2;
}

.ai-brain i {
    font-size: 2.5rem;
    color: var(--white);
}

.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary-purple-light);
    border-radius: 50%;
    animation: aiPulse 2s ease-out infinite;
}

@keyframes aiPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

/* Support Visual */
.support-visual .support-mockup {
    width: 100%;
    max-width: 350px;
}

.video-call-ui {
    background: var(--gray-800);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-md);
}

.video-main {
    height: 180px;
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.person-avatar {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-avatar i {
    font-size: 2rem;
    color: var(--white);
}

.expert-label {
    position: absolute;
    bottom: var(--space-sm);
    left: var(--space-sm);
    background: var(--primary-purple);
    color: var(--white);
    font-size: var(--text-xs);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.video-self {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 60px;
    height: 45px;
    background: var(--gray-600);
    border-radius: var(--radius-md);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-self i {
    color: var(--gray-300);
}

.call-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.control-btn {
    width: 40px;
    height: 40px;
    background: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-sm);
}

.control-btn.share {
    background: var(--primary-purple);
}

.control-btn.end {
    background: #ef4444;
}

.code-snippet {
    background: var(--gray-800);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.code-line {
    height: 10px;
    background: var(--gray-600);
    border-radius: 2px;
    margin-bottom: var(--space-xs);
}

.code-line.short {
    width: 60%;
}

/* ===== Services Detail Grid ===== */
.services-offered {
    background: var(--light-gray);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-detail-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(72, 202, 228, 0.1) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: all var(--transition-base);
}

.service-detail-card:hover .service-detail-icon {
    background: var(--gradient-accent);
}

.service-detail-icon i {
    font-size: var(--text-2xl);
    color: var(--accent);
    transition: color var(--transition-base);
}

.service-detail-card:hover .service-detail-icon i {
    color: var(--white);
}

.service-detail-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.service-detail-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Technologies Section ===== */
.service-technologies {
    background: var(--white);
}

.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.tech-category-large {
    background: var(--light-gray);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
}

.tech-category-large h3 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.tech-category-large h3 i {
    color: var(--primary-purple);
}

.tech-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.tech-item-large {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.tech-item-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tech-icon-box {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.tech-item-large:hover .tech-icon-box {
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.15);
}

.tech-icon-box i {
    font-size: 2.5rem;
}

/* Devicon colored icons maintain their brand colors */
.tech-icon-box i.colored {
    /* Keep original colors */
}

/* Non-colored icons get accent color */
.tech-icon-box i:not(.colored) {
    color: var(--primary-purple);
}

.tech-item-large h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.tech-item-large p {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== Process Section ===== */
.service-process {
    background: var(--light-gray);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    position: relative;
}

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

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-purple);
    position: relative;
    z-index: 1;
}

.step-number i {
    font-size: var(--text-xl);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.service-cta {
    background: var(--white);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3xl);
    box-shadow: var(--shadow-purple-lg);
    overflow: hidden;
    position: relative;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

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

.cta-content h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

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

.cta-icon {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cta-icon i {
    font-size: 4rem;
    color: var(--white);
}

/* ===== Other Services Section ===== */
.other-services {
    background: var(--light-gray);
}

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

.other-service-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: block;
}

.other-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.other-service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-subtle);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    transition: all var(--transition-base);
}

.other-service-card:hover .other-service-icon {
    background: var(--gradient-accent);
}

.other-service-icon i {
    font-size: var(--text-xl);
    color: var(--accent);
    transition: color var(--transition-base);
}

.other-service-card:hover .other-service-icon i {
    color: var(--white);
}

.other-service-card h3 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.explore-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.explore-link i {
    font-size: 0.8em;
    transition: transform var(--transition-base);
}

.other-service-card:hover .explore-link i {
    transform: translateX(4px);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .tech-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .other-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .overview-visual {
        order: -1;
    }
    
    .visual-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 140px 0 80px;
    }
    
    .service-hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-hero-icon i {
        font-size: 2rem;
    }
    
    .overview-features {
        grid-template-columns: 1fr;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: var(--text-lg);
    }
    
    .other-services-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .service-hero-cta {
        flex-direction: column;
    }
    
    .service-hero-cta .btn {
        width: 100%;
    }
    
    .breadcrumb {
        font-size: var(--text-xs);
    }
    
    .tech-items-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
    }
    
    .cta-card {
        padding: var(--space-2xl);
    }
    
    .cta-content h2 {
        font-size: var(--text-2xl);
    }
    
    .cta-icon {
        width: 100px;
        height: 100px;
    }
    
    .cta-icon i {
        font-size: 2.5rem;
    }
}
